ryansolid
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
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
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
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
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
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