-
Hi, I'm really impressed by how great this library is! I would say the keystone (and mobx) makes me more _fun_ to code than other libraries.
Now, I'm wondering what is the right way to go if you wa…
-
I've discovered a problem when the [sandbox](https://mobx-keystone.netlify.com/sandboxes) copy of a node contains a reaction. When the reaction in the original node fires and triggers an action, the s…
-
Can **asyncAction** from **mobx-utils** be used just instead **modelFlow**?? =) or **modelFlow** still has something specific for the **mobx-keystone**?
swayf updated
4 years ago
-
MST model definitions aren't using ES6 class syntax. But they could be! Check this out:
```TypeScript
const TodoData = shim(T.model({
title: T.string,
done: false
}))
class TodoCode extend…
-
subj =)
I am asking second time, because I liked much more then current with typescript workarounds =)
The code will be much nicer, I think with async/await without type conversion to and from gen…
swayf updated
4 years ago
-
Related to #96, I'm wondering whether there is any argument against executing reactions _inside_ the `onPatches` listener, i.e. when an action inside an `onPatches` listener triggers a reaction the re…
-
Either on this respository, or on https://mobx-keystone.js.org/, I don't see an obvious method of contributing funds for development.
-
I have strange example
```typescript
import {Model, model, modelAction, prop} from 'mobx-keystone';
import {computed, autorun, action} from 'mobx';
@model('P')
export class P extends Model({
…
swayf updated
4 years ago
-
When using models with a lot of attributes in forms it can become kind of tedious to create all the setters for each attribute. It would be nice if there were a generic setter method, that would allow…
-
Thanks for this great library which we are digging into as a more typescript-first approach to Mobx State Tree.
One extremely useful detail in the Mobx State Tree documentation is this page https:…