Maciek50322
Solid router, suspense and navigate
I avoided doing this
Protected
template, because I use vite-plugin-pages
and because there is no unnamed route group, this would look like /protected/home
. Tho I think this can be configured there with dirs
setting, but still, having routes represented in folder / file names with exceptions written out in different settings file would make it more confusing. So I think I'll switch to component routes and use this.20 replies
Solid router, suspense and navigate
Yeah so
Show
doesn't actually change anything...
unless I do so
This code above achieves what I want. It doesn't even fetches /home
, so just shows /login
when it loads. I like this, I can prefetch /home
on my own. Without setTimeout
it doesn't work. I don't like that I have to do this with setTimeout
, because I'm not sure if this behavior will be consistent.
Your solution with createAsync
probably will work too, because getting account can take some time. But going back: authorization is not point of this question. What I mean is to force suspense to resolve when latest route is loaded, not all previously requested.
To visualize:
We have suspense on props.children
, which is current route component.
User first clicks button to go to /about
, this page is big, it takes 10s before it loads. So in first second of waiting, user gets bored by waiting and clicks button that navigates to /home
, which is very small, it takes 1s before it's loaded OR maybe it's even prefetched, so it takes no time to load it.
What actually happens is user is waiting for 9 more seconds, until he is redirected to /home
, even though it's been loaded this whole time. User changed his mind and doesn't want to go to /about
, he wants to go to /home
, but has to wait until/about
is loaded.20 replies
How to reduce undefined judgments
I mean in every context that executes after
onMount
(in which you set the engine
) you are guarenteed to have not null engine()
, so you can write engine()!.dispose()
Also if you don't like the !
you can do
19 replies
How to reduce undefined judgments
Well when you want to use the
engine
inside jsx, then Show
can do it the way I used it above.
Inside onMount
and createEffect
it's guaranteed that refs will not be nulls (if they are actually used / mounted).19 replies
How to reduce undefined judgments
You can do something like that with
<Show>
https://playground.solidjs.com/anonymous/759ff1d4-b587-4a1c-b14f-375556f39642
when you pass the function to <Show>
's children, you get the argument of accessor to truthy when
value19 replies
`createContext`, What's the point?
You can pass the component state to children, without knowing which ones will need / use this state, I used it like here:
Global state for this
DraggableNodesArea
doesn't really make sense here. I use the zoom to properly change nodes' x and y. If I were to retrieve the zoom
(which is controlled by DraggableNodesArea
) outside to App
just to pass them as props to DraggableNode
is just more mess, and the DraggableNodesArea
is reusable - you can have multiple "tree" states instead of one global5 replies
Proxy error
If you want to pass control to the function caller, you can do something like that:
I added
...configNextSetterArgs: any[]
,
(setState as any)
,
because typescript can't match the types for SetStoreFunction
, probably because it's quite complex5 replies
memo is rerun but any side effects subscribed are'nt reran
as suggested https://discord.com/channels/722131463138705510/958428791124951050/1269900932259381290 maybe these two sandboxes take different priorities in packages if duplication of dependencies is the case
61 replies
memo is rerun but any side effects subscribed are'nt reran
So
createWritableMemo
just doesn't work at all in playground
https://playground.solidjs.com/anonymous/ccb67468-0581-4d36-a7c9-0ee5cbac4e4a61 replies