-
I'm trying to setup a new project with React Native v. 0.64.1 and typescript 3.8.3.
Installation of mobx-keystone using npm or yarn is going well but I'm facing a warning when trying to start a Metr…
-
Thanks for this fantastic library.
I've been experimenting with UndoMiddleware,
https://mobx-keystone.js.org/actionMiddlewares/undoMiddleware
Which is working quite well, but I'm struggling wi…
-
Reproducible test case here:
- https://github.com/mindreframer/mobx-keystone-draft-issue
Code:
```ts
import { toJS } from "mobx";
import { Draft, draft, model, Model, modelAction, prop } fr…
-
Hey @xaviergonz, first: thank you for providing Mobx Keystone, I'm using it in my app and liking it much better than Mobx State Tree!
Currently I'm trying to figure out a possibility to extend gen…
-
I created a repo with the simplest way to reproduce the error: https://github.com/jeloagnasin/mobx-keystone-issue.
When I was using `mobx-keystone@0.57.0` on expo, I receive the following error:
…
-
```ts
@model("Root")
class Root extends Model({ todos: prop(() => objectMap()) }) {
onAttachedToRootStore() {
RemoteDatabase.onSnapshot((snapshot: { todos: { [id in string]: { id: string, ti…
-
When starting with mobx-keystone I was looking for means to chat with people that already set it up before me. What about opening/joining a [gitter channel](https://gitter.im/xaviergonz/mobx-keystone/…
-
Hi! I feel like this used to work before:
```tsx
import { model, prop, Model } from "mobx-keystone";
@model("app/MyModel")
export class MyModel extends Model({
child: prop()
}) {}
```
no…
dodas updated
3 years ago
-
First of all, thank you, for very interesting library. It looks awesome! =) (MST is very nice too =))
Have you done some performance tests and comparison with MST?
swayf updated
3 years ago
-
Hi! Many thanks for this wonderful library again 🙏
I have a base model that customizes the id prop to `id`:
```ts
@model("BaseModel")
class BaseModel extends Model({
id: idProp,
}) {}
```
…
dodas updated
3 years ago