BUG?: clientOnly inside Suspense boundary is not shown

Is this a correct implementation? :)
pnpm and ffmpeg-static
ffmpeg-static
and fluent-ffmpeg
to do audio conversion with the SolidStart framework. When building my application with vinxi build, it seem to copy my root node_modules inside .output/server/node_modules
, with everything, excepted the ffmpeg binary that I downloaded through the pnpm install
command.
Is there any workaround in order to get the ffmpeg copoied into it ? Or to get the actual path of ffmpeg binary ? Because the relative path I get from the ffmpeg-static
module once ran contains the .output/server
part, which is false.
I could just remove that section from the path, but it looks like a dirty hack to get around this issue.
Any thoughts ?...How to Implement Page Caching
Css modules not getting nonce attribute
createHandler
work as expected for all assets in the header.
But I don't get the nonce attribute on <style />
elements that solid and/or vite injects into the body for a route's css module.
does anyone maybe know how to solve this? or otherwise point me to the code in solid's repo where css modules are handled...Nested Stores not tracking with `trackDeep`/`trackStore`
mutate & refetch not causing a re render
Matching Error State with createAsync
createResource
one has access to resource.error
to handle the case when we get an error from our remote calls.
```tsx
<Switch>
<Match when={user.error}>...SolidStart layout shifts using createAsync
pRPC - redirect not working in callers
redirect$
function from prcp or the redirect
function from solid-router it just does not redirect.
```ts
export const redirectAction = createAction(async () => {
throw redirect$("/hello");...How to make setStore treat a class/interface as an opaque value instead of a partiable one?
Reactive array transformation
Display HTML entity
<div>{props.text}</div>
displays the source code version of the entity.
Thanks....Re: Reset a store to its initial value, doesn't react
exporting css from solid-lib-starter
CreateEffect and store properties
xyz
that is of type undefined | { a: number, b: number}
and I ran into something I don't quite understand with createEffect
. I pass store.xyz
to a component as a prop and
on changing the value, this triggers:
```
createEffect(() => {...How to make use of <Suspense>
OsFolderCard
async as the get_os_folders
function returns all of them at once. If someone could explain how I could do that, or if it's even beneficial or not bcz of the way I fetch my data
```tsx
export default function Dashboard() {...`classList` does not seem to apply the classes on render
present
should be underline. only when you click on past
then present
, then the classList is correctly applied
...Reactivity with shadcn-solid textfield
NumberInput
using https://shadcn-solid.com/docs/components/textfield. I see they have a number field, but I wanted the more typical html number input.
My implementation has 4 number inputs that are clamped based on min/max values. I'm testing by manually typing -1
in the field. Technically a 1
and then I'm adding a -
to it since it won't input otherwise.
The clamp works for 2 of the inputs, but fails for the other 2. It seems to be losing the reactivity somehow. I've tried adding createMemo
around the value to ensure the reactivity is present although I don't believe that shouldn't be necessary since I'm passing the accessor. I might see about creating a minimal example for this, but for now here's the code for the NumberInput and the implementation using is. ...Bootstrap event handlers using on:* directive