Multi-line element truncation
TruncateMarkup, removing certain elements, and testing if the content fits with those elements removed, repeating the process until it succeeds.
...
does createResource with multiple signals trigger when onMount
Is there a better way of doing this sub and unsub? I fell like I am just translating React code xD
Is solids SEO friendly ?
Is there a better way to make authenticated routes ?
Show and if true, then redirect to a fallback page using Navigate)
I say "better way" because I honestly don't know if there's anything else better than that
No Solid-Start, no SSR, only SPA (vite + vite-plugin-solid) and @solidjs/router...
accessing store multiple time, in batch() causes infinite loop
[Solid-Start] [Meta] Encoding Issue
createresource signal return undifined
const fetchUser = async (id) =>
(await fetch(`https://swapi.dev/api/people/${id}/`)).json();
const fetchUser = async (id) =>
(await fetch(`https://swapi.dev/api/people/${id}/`)).json();
Pass every child in props.children a context of their index
official website createresource
createresource why is this error even on a basic example

Reanimation
How can I set a style based on reactive state with fallback to props?
What is JSX's hoisting behavior?
Inputs losing focus on sort
"Outlet" is not exported by router anymore. How to use 0.10.x of router
How to pipe/stream file into API Response object?
fs.createReadStream and pipe it into a Response object which is returned by the API function. I was unable to find a proper solution for this, is it possible at all and how?How to implement a webcam component gracefully and correctly?
Suspending or creating a resource from a Signal
from. My issue is that there is a (very short) period between when the signal is defined and when it actually has a value. After that, it's guaranteed to have a value, and the signal fires repeatedly thereafter whenever the db content updates.
This means that I have to litter my code with <Show> tags to check if each Dexie query I make actually has content. If only there was a way I could wait for all my signals to have content before I render anything....Unable to edit data in store ( Solved )
collection within an array of collections.
I am trying to update the properties using the Object.assign method:
```ts
let collection = { title: "original title", color: "yellow" } // assume > original object...