Benedict
Benedict
SSolidJS
Created by Benedict on 3/18/2025 in #support
Making a custom graph reactive
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!
8 replies
SSolidJS
Created by binajmen on 3/18/2025 in #support
Spooky behaviour while deploying in production
I also had problems getting bun to run in docker when I was using nextjs
21 replies
SSolidJS
Created by Benedict on 3/18/2025 in #support
Making a custom graph reactive
Thanks, after some massaging I ended up with this working code!
subscribe(fn: (v: typeof this) => void) {
this.#subscribers.add(fn);
return () => {
this.#subscribers.delete(fn);
}
}
/** Convenience method that wraps from() */
signal() {
return from(this, this);
}
subscribe(fn: (v: typeof this) => void) {
this.#subscribers.add(fn);
return () => {
this.#subscribers.delete(fn);
}
}
/** Convenience method that wraps from() */
signal() {
return from(this, this);
}
8 replies