-
Notifications
You must be signed in to change notification settings - Fork 104
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
[Idea] ES6 classes + pure React functions #173
Comments
This could be doable with the current API, the only missing feature is the ability to pass classes to If we add this feature you can do what you described with a slightly different syntax: @store
@view
class Todo extends Component {
// your logic here ...
// 'render' instead of 'view'
render () {}
} In the meantime I think you can do a userland implementation with a bit of work: function reactiveView (Comp) {
return view(new Proxy(Comp, {
construct (target, args, ctx) {
return Reflect.construct(target, args, store(ctx))
}
}))
} I didn't test it, but I think it should work. |
I don't want to use React class components. I want to use ES6 classes for state management and use pure and stateless React functions to define how instances should be rendered.
That's lovely, I'm currently using my own hacked-together thing but I'll try this.
Yes I've seen that, such as #89. But what they propose is using React class components. What I propose is using ES6 classes to do state management. Thanks for having built React Easy State btw., I like its simplicity. |
I got a prototype working:
I'm excited :-) I'm going to try this in production on the web app I'm currently working on. |
@brillout any news on this? How do you manage component lifecycle? Do you use hooks inside the |
Hi @solkimicreb ! No news in particular; the prototype I've been working on works so far. It's not polished (yet) but I'll get back to you if/once I've polished all rough edges. So far I'm happy to be able to use plain simple ES6 classes to do state management. |
As for your questions; the current implementation I'm using is here and it's used like this:
As you can see the The implementation of I'll be further developing the app in the next coming days/weeks and I'll keep you updated. |
Why not using ES6 classes for state management while using a
view
property to define how instances are rendered. Theview
property is a pure and stateless React function which is made reactive by@reactiveView
.EDIT: This is not about using React class components, it's about using ES6 classes to do state management together with pure/stateless React functions.
Thoughts? :-)
cc @lostpebble (I actually wanted to use PullState but for my use case I don't need anything sophisticated and something à la MobX should suffice.)
The text was updated successfully, but these errors were encountered: