SolidJS

S

SolidJS

Solid is a declarative reactive Javascript library for creating user interfaces.

Join

Running BullMQ worker (background process) from a SolidStart project

I have a solidstart project with Redis as its backend. I'm trying to use BullMQ worker: sandboxed processor as the consumer. I'm trying to initialise it during server startup from entry-middleware.js as below: ```js import { createMiddleware } from "@solidjs/start/middleware"; import { authMiddleware } from "~/lib/auth/auth.middleware";...

reconcile within produce

Is it possible to use reconcile within the produce utility? ``` setState( produce(state => {...

SolidStart with Headless CMS content

Hello! I'm looking to port a small 11ty site over to SolidStart. I still want to fetch CMS content and generate some static pages once, at build time. I found this question (and answer): https://github.com/solidjs/solid-start/discussions/1548#discussion-6824754, which will let me achieve SSG with dynamic routes. But I do not understand where to carry out any data fetching. This question (https://github.com/solidjs/solid-start/discussions/920) asks the same thing; how to fetch data at build and not in the client?...

Slightly confused about the entry-client file

Hello, I've been trying to get into SolidStart. However, I'm kind of confused about the client entry file. Why does it not explicitly mention/import app.tsx/jsx? What is its responsibility? And how do I know what to put into app.tsx and what into the entry file?

What to do instead of loading a model with createMemo inside a createResource computation

``` /* solidjs view model */ function BookModel(id: string, name: string): BookModel { const [name, set_name] = createSignal('') const [chapters, set_chapters] = createSignal([])...

Error: Client-only API called on the server side

Hi, I want to add a router to my app and I did it as described on https://docs.solidjs.com/solid-start/building-your-application/routing#creating-new-routes. I'm getting this error: ``` Error: Client-only API called on the server side. Run client-only code in onMount, or conditionally...

How do you get createAsync to refetch or mutate?

I have a webpage where I get a list of items from a database. I want to take advantage of SolidStart's preloading and the other benefits of a createAsync based resource so I used it instead of createResource. Users can click a delete button next to each list item to delete it, and the list should update in response (possibly via an action). Now it occurs to me that the docs don't currently specify when, if or how createAsync based resources refetch data or if the data can be mutated (say by useS...

Version Mismatch?

```sh bun create solid --help (base) ┌
Create-Solid v0.6.1 A CLI for scaffolding new Solid projects (create-solid v0.6.1) 10:56:08 PM...

Component Duplication

Having initialized a new solid/vite project, I can confirm the component duplication issue is still happening (previously thought it was being triggered by tailwind/vite plugin). I have included a link to the bug report including screenshots and explanation of how I've been able to reproduce the issue. Any help in solving this would be greatly appreciated if anyone else has experienced and mitigated this. https://github.com/solidjs/vite-plugin-solid/issues/202#issue-2896396397...

Store update produces error "current is undefined"

I'm creating the example in the doc and getting the error ``` Uncaught TypeError: current is undefined updatePath dev.js:217...

Best practices when interfacing with vanilla JS libraries.

I'm trying to integrate lexical editor with my Solid app. Can you tell me if I'm thinking these integraions correctly? ``` export const UserInput: Component<ColumnProps> = (props) => { let editorInstance: LexicalEditor | undefined...

Middleware around API proxy

Hi all I have this in my app.config.json ```ts...

How to force refetch on createResource trigger with same fetcher id

createResource(() => props.id, fetch_calculation) when props.id triggers twice with the same value like 'abc' and 'abc', createResource doesn't refetch. I want it to refetch to get a fresh clone of the fetch_calculation result. ...

Best LTS / Stable use of Solid for projects & business?

If I have a project I want to be viable and actually ship a product, would something like SolidStart actually be good enough? Obviously it won't be as feature rich as NextJS and be more volatile, but will it suffice? Are there other options? I love Solid way more than React...

How to make controlled <textarea>

I'm trying to make the simplest possible controlled textarea. What I want is to show only and exactly what I set, not what the user types. My problem is that this only works for one single character, after which the user can just type freely. Minimal repro case:...

SolidStart Websocket Proxy

Hello, I've tried to create a proxy to standalone websocket server in SolidStart, for purpose of this showcase I created a simple demo showing the issue I ran into. index.js aka the websocket server...

"use server" file vs "use server" function

Hi all, I just have a question about the behaviour of "use server" for a single function vs "use server" for a whole file.. I have a sign-up component that imports an action from my api: ```ts...
No description

Auth guard

Hey there. I was trying to find a good solution to handle authentication and set up a guard that will redirect users to the authentication page if they are not authenticated. While reading this discussion (https://github.com/solidjs/solid-router/discussions/364), I couldn't help but notice this comment "This has the 2nd most upvotes of all time with no response" ...

Navigation error

I get a weird cleanNode() exception when navigating to another page. The stack trace is useless (see in separate comment). The navigation is performed by a <button>, it is trivial, nothing extra happens there: <button onClick={() => navigate(...)} ... Do you have any recommendation how to find the root of the error? Thanks....

dynamic routes 404?

how can I intentionally throw 404 on a dynamic route (no server action or anything)?