Vlad Balin

Results 71 comments of Vlad Balin

Models takes sync from the store they belong to (or from the global one), so you could just override sync in LazyStore. About promises - am I getting you right...

Implemented in Type-R f/promise-io branch. Soon it will be there.

Alternative proposals. 1) Use `store` declaration instead of `state`. It should define the model extending `Store`, which is integrated into dynamic store lookup chain across the UI components tree. In...

To be done in new Type-R reactive data core.

You forgot `@define` decorator. Must be imported either from nestedreact or nestedtypes. Must precede the class definition of the Component and the Model. `@define` is the place where all the...

.createClass and .extend work without @define, of course. I will check your example locally.

Your last example works perfectly in Chrome. Try to take any of the examples from examples folder (except flux_comparison) as starting boilerplate for your test.

At the Type-R level, it makes sense to stream "change" event for the Record and "changes" for the Collection, respectively. Both of them have the semantic that something inside was...

Given the fact that you're most interested in change events, it should look like `most.from( record )` in the majority of places if record has `Symbol.observable` method. Right? The situation...