ATA noob
ATA noob
SSolidJS
Created by ATA noob on 9/18/2024 in #support
solid func for beforeunload
or should I just put the beforeunload listener directly on window
4 replies
SSolidJS
Created by ATA noob on 9/18/2024 in #support
solid func for beforeunload
export const Component = () => {
createEventListener(window, "beforeunload", () => saveData());
onCleanup(() => saveData());
return <></>
}
export const Component = () => {
createEventListener(window, "beforeunload", () => saveData());
onCleanup(() => saveData());
return <></>
}
Is this the recommended way?
4 replies
SSolidJS
Created by ATA noob on 5/12/2024 in #support
Stop infinite recursion when updating state
Thank you, I was using your type of implementation initially. But I also had a few other use cases as well where I needed to access signals without tracking them. untrack helps in those places. Thank you for helping
6 replies
SSolidJS
Created by ATA noob on 5/12/2024 in #support
Stop infinite recursion when updating state
exactly I was looking for. i tried searching for it but I just wasn't getting it. Thank you so much
6 replies
SSolidJS
Created by ATA noob on 4/19/2024 in #support
Is this Firebase Context correct?
Thank you
3 replies
SSolidJS
Created by ATA noob on 4/17/2024 in #support
Configure Background for routes
I'll use this. Thank you so much.
4 replies