How do you refresh a non-solid children?
I'm using lexical editor inside one SolidJS component. It is initialised using ref={ref} + onMount(). It works correctly, mounts, unmount cleanups, etc. everything is fine.
Now I need to programmatically clear it's content from a global store.
I see two solutions:
1. register the editor instance (created inside onMount) into the store, and unregister it on unmount, so that I can call a
.clear()
command on it.
2. somehow trigger a component re-render from the global store. In React, it'd do this by putting a random number inside a key, like this:
But in Solid this key of course doesn't exist. How can I achieve the same behaviour? I mean I want <UserInput> to be discarded and recreated, with all the cleanups / onMounts run.
Solution 1. is probably workable, but I think it's very bug prone, with all the registering / unregistering / synching of editor instances to global state. I'd rather choose 2. and discard and and recreate the component altogether.
One idea between 1 and 2 seems to be to use a random number but use it in a createEffect, to call the clear function:
How do I make this run only on the 2nd, etc. subsequent updates and not at the same time as onMount?10 Replies
An alternative idea seems to toggle a show boolean quickly, like:
Then I use
This seems to work
<Show/>
has a keyed
-prop that will cause its children to be unmounted/remounted whenever it changes:
OK, great, so it's the same as
Having said it, this loses focus, so
actually has an advantage. There, I'd just need to make sure the createEffect doesn't run with onMount, but only on 2nd, 3rd, etc. updates. Do you know how to do this?
My only idea is to make a signal originalRefreshID and then compare it inside createEffect. But is there no built-in way to do this? I mean, to skip the first run of an onMount?
something like:
you can also do
or
and only set userInputRefreshID when u want to reset it
+ tangentially related: if u don't want to increment a counter you can also do
thanks! What does this listen-trigger do?
I've just found the following in the docs:
In addition, on provides a defer option that allows the computation not to execute immediately and only run on first change.Do you think it might be exactly what I need?
just a way how you can trigger effects without having to increment some random number
neat!
sounds exactly what u need!
great!
For this, I just don't understand the
(null!, { equals: false })
part.{ equals: true }
will compare the new value with the old value and only call all the effects/memos/... when it changed, { equals: false }
will always update, and call all the effects/memos/...
null!
is just to add some initial valueI see!
Thanks!
ur welcome!!