Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

oneliners.py did not work as expected #626

Closed
ScottHuangZL opened this issue Mar 5, 2020 · 3 comments
Closed

oneliners.py did not work as expected #626

ScottHuangZL opened this issue Mar 5, 2020 · 3 comments

Comments

@ScottHuangZL
Copy link
Contributor

ScottHuangZL commented Mar 5, 2020

https://flexx.readthedocs.io/en/stable/examples/oneliners_src.html#oneliners-py

oneliners.py did not work as expected

The message still empty.

I try to replace event to flx, also not work. Thanks.

This example demonstrates how a property can be set to follow other properties
by setting the property to be a function, which is converted to a reaction by
Flexx.

This feature makes basic plumbing very easy, like e.g. showing values
of properties in a label widget.
"""

# todo: also a one-liner to invoke actions from emitters (issue #425)

from flexx import flx


class Person(flx.Component):

    first_name = flx.StringProp('Jane', settable=True)
    last_name = flx.StringProp('Doe', settable=True)


class Greeter(flx.Component):

    message = flx.StringProp('', settable=True)

    @flx.reaction
    def show_message(self):
        print('Message:', self.message)

p = Person()

# This is the line that this is about
g = Greeter(message=lambda: p.first_name + ' ' + p.last_name)

print(p.first_name,p.last_name,g.message)
p.set_first_name('Alice')
print(p.first_name,p.last_name,g.message)
flx.loop.iter()
print(p.first_name,p.last_name,g.message)
@almarklein
Copy link
Member

I see you're trying to use Markdown formatting :) Use three backquotes before and after the code. You can specify the language too:

```
bla bla
# comment
code
```

```py
# comment
def foo():
   pass
```

@almarklein
Copy link
Member

Seems to work fine here. What output do you get? Mine is:

[I 10:59:48 flexx.app] Asset store collected 2 new modules.
Jane Doe
Jane Doe
Message:
Alice Doe

@ScottHuangZL
Copy link
Contributor Author

Same as you.

I original think

    @flx.reaction
    def show_message(self):
        print('Message:', self.message)

would direct print message after flx.loop.iter()

Now I understanding that you just want to demo the lambda function in one line.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants