milomg
milomg
SSolidJS
Created by manan on 10/12/2023 in #support
Issue with playground console errors on firefox
Interesting, this sounds like it might be a bug in https://github.com/liriliri/chobitsu or in Chrome Devtools itself. I'll check it out
2 replies
SSolidJS
Created by robert_ on 8/28/2023 in #support
SolidJS: Manually using SSR with v8?
It's doing more than just generating state, it is creating a string representation of the client dom
15 replies
SSolidJS
Created by robert_ on 8/28/2023 in #support
SolidJS: Manually using SSR with v8?
I believe the most reasonable approach (and what solid-start does) is Use a build step to generate two bundles: ssr bundle client bundle with hydration then, call the ssr bundle from phpv8, and also have php serve the client bundle
15 replies
SSolidJS
Created by cerealklr on 8/16/2023 in #support
Resource chaining and other promise-like composition
This is definitely something lacking with resources today, and I'm working on making them work better for 2.0
2 replies
SSolidJS
Created by psygo on 8/17/2023 in #support
D3 Force Graph in SolidJS with TypeScript
Doing it "in solid" can be as simple as just putting it in onMount with a ref (in solid is in quotes because you could use a function dom element as a solid component). Here's a d3 tree I wrote in solid a while ago: https://github.com/CM-Tech/solid-debugger/blob/main/src/graph.tsx a force directed graph is in the commit history of that project too
10 replies
SSolidJS
Created by psygo on 8/17/2023 in #support
D3 Force Graph in SolidJS with TypeScript
Maybe try creating an example of what you want in the solid playground?
10 replies
SSolidJS
Created by fragerdaz on 7/9/2023 in #support
refetch() from child component
You can pass different functions using component props in SolidJS, perhaps by passing in refetchData={refetch} and then calling props.refetchData()
3 replies
SSolidJS
Created by jesseb34r on 12/28/2022 in #support
Solid Playground error in style tags
Yep, csstype isn't installed in the playground, that is a bug
6 replies
SSolidJS
Created by Max on 12/5/2022 in #support
Conditional rendering approach
It seems like you've discovered the consequences of keyed: the entire show component rerenders when your variable changes (which is likely not what you want). I'd recommend using something like option 1 with a few exclamation marks to help fix ts. In a future version we're hoping to make a non keyed show component for ts
6 replies
SSolidJS
Created by musiclover on 12/3/2022 in #support
Where are real word example using SolidJS?
Also the "RealWorld" solid app: https://github.com/solidjs/solid-realworld 😉
6 replies
SSolidJS
Created by Aspy on 12/2/2022 in #support
Template seems to have an issue.
@someaspy pnpm serve is for serving the final bundled application, in development try pnpm start or pnpm dev
4 replies