SolidJS: Manually using SSR with v8?
renderToString to extract the HTML, but I also need to generate and render the javascript which accompanies my page, in order to allow it to be interactive....How to save canvas state to backend and load it later?
Is this really the most ergonomic way to preserve searchParams with <A>?
/locations/123/leads/456?leadsCategory=3. For the anchor tags on the left, I've got the following JSX (searchParams is destructured from useSearchParams()):
``
<A
href={/locations/${...How to instruct a component to reset a state it holds?
reactiveMap does not work with size/delete
reactiveMap does not trigger update on delete or when we "subscribe" using size or forEach method.
Most confusing for me is delete since if i use has i expect that update will trigger signal, but this is not the case.
Is it expected behaviour ?...[SPA Routing]: How to not call data function for the protected routes
Why is this store still reactive?
createRoot block. I call dispose() right after creating the store.
As seen in the demo, the store is still reactive even though I called dispose. Anyone knows why the store didn't lose reactivity even though it was created under a disposed root? What did dispose do?...Bundling Component SSR Compatible library - sharedConfig is undefined
ssr:true option of vite solidPlugin, but I'm facing an issue,
This is my vitejs config : ...Is it possible to create a resource of type HTMLImageElement with SSR?
solid-trpc and infiniteQuery
solid-infinite-scroll and solid-trpc (solid-start), there is little to no documentation on solid-trpcitself, as it uses different methods from the original, but using the original as the base
The following code is what im doing, this returns undefined and keeps loading the same data:
```ts
const query = trpc.eep.infiniteFeed.useInfiniteQuery(...How to handle requests that need to be fetched later?
createResource to fetch data from the server and make it a reactive store.
But on one page I have tabs. Say Users, Articles, Organizations tabs.
For now, when a user navigates to this page, I send 3 requests to the server, and create 3 resources (create or get if already created previously).
```js...Solid Start: CSR Only Page
<ClientOnly> but that still comes out in the SSR content.
Part of this is based on my bringing over the component from SolidJS and various browser only APIs are used....Remove element from store not working
Protected route dynamic route that has to match certain parameter
Default values in props with Merge Giving me a weird interface
arrOfStrings:
``` tsx
interface ComponentProps {
arrOfStrings?: string[]...Solidjs site metadata (title, description, meta image etc.) in Javascript
@solidjs/meta and publish the site, the metadata all appears to be null as seen here: https://www.heymeta.com/url/solidjs-bizcard.pages.dev/
I have been able to get successful metadata in the past by hardcoding it into the index.html file in the root folder. Such as with this page: https://www.heymeta.com/url/removeyoutube.pages.dev/. This is not ideal, I would like to be able to encode these in the jsx files so that I can populate them from a javascript object as a single source of truth from which other components draw.
Is this currently possible with Solidjs?...Panda CSS and Solid-Start = FOUC
Is there something like a replacePathParameters method?
SolidStart with the static adapter and hynrid routing?
What should I use if I want features of both Resources and Stores?
createResource in a RouteDataFunc, which fetches a JSON tree asynchrconously. I love using a Resource here because I get access to its state (to show loading etc). However, I want to be able to mutate said data using the amazing API that Store has, such as function addChild(thingId) { myData.update('things', (t) => t.id === thingId, 'child', { foo: 'bar' }); }. Sadly, that mutation API is only available on Store, not Resource -- and state is only available on `Resourc...