zulu
zulu
SSolidJS
Created by McBrincie212 on 4/2/2025 in #support
Updating a signal depending on if an element is focused or not
unrelated, why do you focus in the onfocus
event.currentTarget.focus()
event.currentTarget.focus()
66 replies
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
https://playground.solidjs.com/anonymous/f6a46d01-c21d-4fd1-9fa7-42f67e60af0b this fixes the type issue I think. one more thing to keep in mind is that when you use the non silent setter it will always trigger. not a big deal, but it will allow you to trigger with the value that was set last silently.
16 replies
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
not really. if your use case need an unreactive signal update, that is one way to do that. it will just shift the control to you, when you might want to trigger the change
16 replies
SSolidJS
Created by nut on 3/30/2025 in #support
any way to update a signal without it causing a reactive update?
16 replies
SSolidJS
Created by ken_binta on 3/30/2025 in #support
Best approach to having protected routes in SolidJs?
7 replies
SSolidJS
Created by ken_binta on 3/30/2025 in #support
Best approach to having protected routes in SolidJs?
No description
7 replies
SSolidJS
Created by ken_binta on 3/30/2025 in #support
Best approach to having protected routes in SolidJs?
7 replies
SSolidJS
Created by slim (jamesc) on 3/30/2025 in #support
Special characters in server function error may crash app
open an issue in github so they can properly handle unicode
5 replies
SSolidJS
Created by slim (jamesc) on 3/30/2025 in #support
Special characters in server function error may crash app
its is probably again unicode in the headers problem
5 replies
SSolidJS
Created by hyperknot on 3/29/2025 in #support
How to trigger focus and scroll across the app?
yes you can use the createEffect to then apply a focus on the html Element
function createTrigger(){
let [t, setT] = createSignal(0, {equals:false});
return [t, ()=>setT(0)];
}

let [signal,trigger] = createTrigger()

createEffect(()=>{
signal()
// do something
});

trigger()
function createTrigger(){
let [t, setT] = createSignal(0, {equals:false});
return [t, ()=>setT(0)];
}

let [signal,trigger] = createTrigger()

createEffect(()=>{
signal()
// do something
});

trigger()
10 replies
SSolidJS
Created by hyperknot on 3/29/2025 in #support
How to trigger focus and scroll across the app?
you can try subscribing using the effect on the signal, or you can look into events if it make sense to your use case
10 replies
SSolidJS
Created by hyperknot on 3/29/2025 in #support
How to trigger focus and scroll across the app?
it is the 2nd argument {equals:false}
10 replies
SSolidJS
Created by hyperknot on 3/29/2025 in #support
How to trigger focus and scroll across the app?
ok, first you don't need random numbers. you can use the equals of the signal, then you can set it to the same value and it will still trigger. docs are broken for me https://docs.solidjs.com/reference/basic-reactivity/create-signal
10 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
yes, I understand query is actually a memoization but I need to understand the relation as to why createResource does not work with it
31 replies
SSolidJS
Created by hyperknot on 3/29/2025 in #support
How to trigger focus and scroll across the app?
who changes the random integer
10 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
thanks, now I will need to understand why createResource is not good for caching
31 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
I need explicit yellow warning saying this is going to be deprecated and is not recommended otherwise these words mean nothing to me because i don't know what query is , and if it applies to me.
31 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
but anyway, I will take you opinion under consideration
31 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
I am not favouring either, just use which ever works best for you https://docs.solidjs.com/reference/basic-reactivity/create-resource until the docs are not saying warning about using this, I think it is fair to recommend using it
31 replies
SSolidJS
Created by sean on 3/28/2025 in #support
Clarification on createAsync and Suspense behavior
with createResource you mostly don't have those limits
31 replies