Trader101
Trader101
Explore posts from servers
SSolidJS
Created by pilcrow on 8/7/2023 in #support
How to throw errors in `createRouteAction()` and `createServerAction$()`?
also for createRouteAction ?
5 replies
SSolidJS
Created by Seventimes<3 on 7/28/2023 in #support
Converting code to ES5
ok interesting makes sense then. It's just that in 2023 there really is no need to polyfill es6 for normal usage
11 replies
SSolidJS
Created by Seventimes<3 on 7/28/2023 in #support
Converting code to ES5
I mean why do you need to polyfill es6 ?
11 replies
SSolidJS
Created by Seventimes<3 on 7/28/2023 in #support
Converting code to ES5
I'm curious for your use case because tbh I really don't see why you need es5
11 replies
SSolidJS
Created by Trader101 on 7/28/2023 in #support
pass session via `<Outlet />`
and solid-start indeed doesn't accept any params on outlet
5 replies
SSolidJS
Created by Trader101 on 7/28/2023 in #support
pass session via `<Outlet />`
route data is better because I believe when you update the session, it immediately reflects the changes on the page. Also tbh it's hard to maintain that context because you would need to know when oauth session ends so you query at an interval the api route and I think it's pretty ugly to make things work this way
5 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
can I do this with csr
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
like morgan.js
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
Although I would like to have some sort of logging system (which logs who connects, ip, etc and store it to text file)
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
so I don't need the server
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
anyways there is no client data stored since it is all done through web3 wallet
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
well I mean something like etherscan ?
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
also do you advise me to switch back to ssr: false ?
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
in the root.jsx yes
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
@davedbase The whole issue was just tied to the fact I did not use Suspense!!
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
@davedbase hi to toggle between dark/light with solid-primitives, do I still add/remove dark class so it works with tailwindcss?
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
so what is the point ?
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
I mean when there is an error in routes my entire app still crashes
97 replies
SSolidJS
Created by Trader101 on 5/6/2023 in #support
Flickering UI with solidstart
should I wrap errorBoundary only on routes or on entire body ?
<Body>
<Header />
<ErrorBoundary>
<Routes>
<FileRoutes />
</Routes>
</ErrorBoundary>
<Scripts />
</Body>
<Body>
<Header />
<ErrorBoundary>
<Routes>
<FileRoutes />
</Routes>
</ErrorBoundary>
<Scripts />
</Body>
97 replies