ryansolid
ryansolid
SSolidJS
Created by edard3v 🦀 on 3/24/2025 in #support
tanStackQuery/Solid/Astro
Just clarify I imagine this behavior is not expected.
28 replies
SSolidJS
Created by edard3v 🦀 on 3/24/2025 in #support
tanStackQuery/Solid/Astro
I haven't had a chance to look at that one yet but I wouldn't say this is something I've commonly(ever?) seen in the past 5 years we've been doing SSR.
28 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
Or some other condition.
33 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
It's for.. set all users with loggedIn true.. to false..
setState(user => user.loggedIn, "loggedIn", false)
setState(user => user.loggedIn, "loggedIn", false)
33 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
It is for filtering lists generally.. but since you already set an index I'm not sure that works.. it might still I suppose
33 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
33 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
if you want to do 0 to 2 there is an object form for that
33 replies
SSolidJS
Created by Carl (klequis) on 3/6/2025 in #support
Store update produces error "current is undefined"
[0, 2] should be indexes 0 and 2
33 replies
SSolidJS
Created by ofj3kso on 3/3/2025 in #support
Auth guard
Yeah I mean that is one approach.. I'm interested in what others do.. because checking against server everytime not inside things you were already fetching would cause a waterfall which isn't great (unless you were in constant contact which isn't always an option on serverless).
8 replies
SSolidJS
Created by ofj3kso on 3/3/2025 in #support
Auth guard
Like in one world maybe during SSR you setup some sort of access token in middleware and you pass it into a Context Provider (in a createResource/createAsync that will serialize) at the top of your page and then the client and server both have access to it. But tokens do expire so I imagine there is more logic there. Of course then you need to send the token to server to validate on API calls.. this is a classic client centric model approach. That way it can answer the question synchronously.
8 replies
SSolidJS
Created by ofj3kso on 3/3/2025 in #support
Auth guard
The thing is nothing in preload will stop the page from rendering. So you have to assume on client nav after the case if you go and ask the server if you are authenticated it is still going to start rendering the new page while waiting for that answer.. sure it isn't going to get far and the Suspense/Transitions will not actually show anything to the user, before your redirect takes over. The thing is if we ask first outside of the request it will waterfall.. so you want to ask the question inside each data (API endpoint essentially) if you can't answer the question from the client only. I always ask people what they expect to happen in these scenarios to see how it fits. Because nothing here changes the physics, just where it happens.
8 replies
SSolidJS
Created by ofj3kso on 3/3/2025 in #support
Auth guard
The middleware does run on every request, just not every client navigation will make a request. That's odd wording.
8 replies
SSolidJS
Created by ofj3kso on 3/3/2025 in #support
Auth guard
Yes this is the sort of thinking.. but the "true" probably needs to come from the server to verify. So my thinking is you should hoist the auth check to server middleware and then read from it inside your server functions that can then throw redirects or do the proper handling. That being said for something that isn't too granular I imagine the middleware itself could potentially handle the redirect before you are looking at specific endpoints. I believe the action methods should work even out in middleware.
8 replies
SSolidJS
Created by Amir Hossein Hashemi on 2/27/2025 in #support
When, and what types of errors <ErrorBoundary> catch?
I see red sqiggly
6 replies
SSolidJS
Created by Amir Hossein Hashemi on 2/27/2025 in #support
When, and what types of errors <ErrorBoundary> catch?
Bad usage. You can see it from the types. Doesn't accept a function as children
6 replies
SSolidJS
Created by gerard on 9/15/2024 in #support
crazy bug global store + solid router
I really needs some sort of reproduction on this one. Because looking at the code and what you've written to be the problem we are still missing something. The if the Transition is running then the memo will be added to it so the only places it would miss I'd think is if it isn't running and the memo isn't part of it, but then it should fine?...
10 replies
SSolidJS
Created by ken_binta on 12/25/2024 in #support
useTransition not working
Put the setTimeout outside of the start. Transitions track writes tgat happen synchronously, so doing it the way above means the set isn't part of it.
2 replies
SSolidJS
Created by smr.gg on 12/6/2024 in #support
actions: I can't tell if this is a bug or a feature
An action is only accontable for what it undersands. In theory it could understand a stream but it has no way of understanding a signal in the sense of am I done since Signals have no sense of time.
25 replies
SSolidJS
Created by smr.gg on 12/6/2024 in #support
actions: I can't tell if this is a bug or a feature
I don't think this example is right. It isn't really an action.
25 replies
SSolidJS
Created by smr.gg on 12/6/2024 in #support
actions: I can't tell if this is a bug or a feature
Yeah it's trickier than that because this example doesn't actually wait.. so the action thinks it is done before it is.
25 replies