Why is this store change doesn't trigger a reactive computation
It looks like this:
Why this setCurrent, doesn't log anything except the first one?
https://playground.solidjs.com/anonymous/7671caaa-1e05-40b2-bc52-a79140047484
Solid Playground
Quickly discover what the solid compiler will generate from your JSX template
9 Replies
because store's update fine-grained,
on
does not track deeply, so it will only update when the reference to current
is updatedSolid Playground
Quickly discover what the solid compiler will generate from your JSX template
I don't understand, this set state call
changes the state.current reference to a new object.
no, it doesn't, it shallow-merges it.
oh because of optimizations, i see
ye, by default it shallow merges stuff
i think
set(() => ({ state: 'select-next' }));
might work to change the reference?ok thank you i will restructure based on that new insight.
you are welcome!
Solid Playground
Quickly discover what the solid compiler will generate from your JSX template