foolswisdom
foolswisdom
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
You probably want an abstraction then, that allows you to control that
16 replies
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
It's certainly not possible to prevent an update when calling the setter (untrack works for the read side, so it doesn't subscribe. But you can't set a setter and expect listeners to not update, excluding batch rules which just defer of course )
16 replies
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
My solution would be to use a regular variable instead, and have the other page actively pull from there when rendering. If you also want to sometimes have reactive updates, then you can write an abstraction that allows controlling whether only the variable gets modified, or if the signal gets updated
16 replies
SSolidJS
Created by WhyTerremotin! on 3/11/2025 in #support
Lazy loading components work with SSR with solidStart?
You can test that in a start project (I've only recently started using #solidstart myself), but I believe that is how it works
4 replies
SSolidJS
Created by WhyTerremotin! on 3/11/2025 in #support
Lazy loading components work with SSR with solidStart?
It's not quite clear how you want it to behave, but I believe the answer is that lazily imported components will be shipped in ssr mode if they are used, and remaining lazy components will be loaded if the client needs and requests them
4 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
Great
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
👍
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
Try moving Router to inside the App component, wrapping the Route directly
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
I think the issue is that the router requires Route components to be direct children
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
This the App file. I'm asking about the Home file
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
Please enclose code blocks in triple back ticks for readability
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
I meant to create a new thread here in #support. It's fine
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
What are the contents of Home.tsx?
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
I will note, that solid-app-router is superseeded by @solidjs/router, there's no reason to have both in the same project
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
You should perhaps open a ticket explaining the issues you are facing
23 replies
SSolidJS
Created by Believe037 on 1/12/2025 in #support
@solidjs/router not working
It appears to you have your editor set to warn you when misspelled / unknown words are words. solidjs may not appear in the dictionary, but that makes it no less a valid package namespace, and @solidjs/router is the correct package name. This does not stop your package manager from installing it, or is simply the vscode extension warning that it doesn't know this word
23 replies
SSolidJS
Created by Leal on 1/5/2025 in #support
Unable to provide context to children
In your example @peerreynders, children are created lazily in the jsx template. If you move the (nominally identical) access up above the jsx, it becomes eager and context will no longer work
13 replies
SSolidJS
Created by Leal on 1/5/2025 in #support
Unable to provide context to children
It isn't clear where props.children was used. If it's in the same place as where the children are accessed / created in the above code, that would result in the same problem. Or to restate the issue: the children helper does not change where the creation of children occurs, it's merely a helper to memoize so they're only created once. And the problem is that creating the children in the body of the component, above the jsx, is above the provider boundary.
13 replies
SSolidJS
Created by Leal on 1/5/2025 in #support
Unable to provide context to children
https://docs.solidjs.com/reference/component-apis/children#children Towards the bottom (though it sadly doesn't call out the implications for context)
An important aspect of the children helper is that it forces the children to be created and resolved, as it accesses props.children immediately.
13 replies
SSolidJS
Created by Leal on 1/5/2025 in #support
Unable to provide context to children
The problem here is that the children are created early. Normally, props.children is a lazy access, so the children are created under the context provider boundary. In this case, you're eagerly accessing it in the solidChildren function (it's a wrapper around memo, which is eager). This means you're freaking the children outside the boundary.
13 replies