Making a custom graph reactive
I am building a custom rendering graph which then gets serialized and rebuilt in a web worker. I would like to keep the graph logic as decoupled from Solid as possible so I could easily reuse it outside of SolidJS.
The graph is composed of nodes which have some options that can be changed. I'm using SolidJS for rendering a UI for these options so that they can be passed to the rendering graph later. The graph itself already has an internal update function that can be bubbled up. Basically what I want to achieve is that whenever a graph node is changed (usually through the solid component), the component triggers a full rerender of the control component. I know I'm losing fine grained reactivity here, but that's fine for my usecase.
Does anyone have any ideas on how to achieve that? Here's some pseudocode to make it clearer (don't worry about any errors here)
Maybe I'm also overcomplicating this and there is a much easier way to do this?
6 Replies
you could have a
const signal = toSignal(() => props.node)
utility maybe?there is also a built-in utility called from
from - SolidDocs
Documentation for SolidJS, the signals-powered UI framework
it's for signalifying
Observables
and your Node
sounds pretty Observably
Thanks, after some massaging I ended up with this working code!
There really is no need to couple the class interface to Solid for the infinitesimal gain in convenience. Just make it a helper function
Also unless absolutely performance critical listeners are often managed with
Set
s:
or
Thanks for the advice, I'll try to replicate that code.
Also about the set, I was using that internally already but didn't include it in the pseudocode above for ease of writing. Good advice though!