hannus
hannus
SSolidJS
Created by Garrett Floyd on 3/6/2025 in #support
How do you get createAsync to refetch or mutate?
Just use revalidate directly if you don’t need to navigate to another page. Something like return revalidate(query.key).
12 replies
SSolidJS
Created by Garrett Floyd on 3/6/2025 in #support
How do you get createAsync to refetch or mutate?
1. Preload the query and render its data inside a route component using createAsync. 2. Revalidate the key of the query rendered in the route component. This ensures that the query data is refreshed when an action is executed. The query functions like a GET method, while the action functions like a POST method.
12 replies
SSolidJS
Created by Daniel Sousa @TutoDS on 2/27/2025 in #support
Google Analytics
step1: create script with createScriptLoader. asnyc() is must.
const gaTag = createScriptLoader({
src: "https://www.googletagmanager.com/gtag/js?id=`urGtagid`",
async onLoad() {
// @ts-ignore
window.dataLayer = window.dataLayer || [];
function gtag() {
// @ts-ignore
dataLayer.push(arguments);
}
// @ts-ignore
gtag("js", new Date());
// @ts-ignore
gtag("config", "gaid");//change to your gaid
},
});
const gaTag = createScriptLoader({
src: "https://www.googletagmanager.com/gtag/js?id=`urGtagid`",
async onLoad() {
// @ts-ignore
window.dataLayer = window.dataLayer || [];
function gtag() {
// @ts-ignore
dataLayer.push(arguments);
}
// @ts-ignore
gtag("js", new Date());
// @ts-ignore
gtag("config", "gaid");//change to your gaid
},
});
step2: insert {gaTag} into JSX, such as header or footer inside the router component. that will work. Key points: 1. async() 2.insert to JSX where you want to collect statistics
5 replies
SSolidJS
Created by ⱼ ₒ ₑ on 3/5/2025 in #support
Best LTS / Stable use of Solid for projects & business?
the latest version of solid-start is support tailwind 4 and vite 6, what's more, it supports tanstack router officially. Thus, my advice is try the latest version especially you have used tanstack/router in react.
2 replies
SSolidJS
Created by hannus on 2/1/2025 in #support
Duplicate `<link rel="canonical">` in SolidStart
yes, I am using solid-meta. Only Link has data-sm property in the page after rendered. If I removed <Link rel="canonical" href="https://www.example.com/" />, everything goes well.
25 replies
SSolidJS
Created by hannus on 11/8/2024 in #support
can I handle a group of useSubmisson?
useSubmissions returns an array, where each element corresponds to a useSubmission for each action, arranged in the order the actions were initiated. Is that correct?
8 replies
SSolidJS
Created by hannus on 11/8/2024 in #support
can I handle a group of useSubmisson?
thanks. Even if the latest submission status is pending, I can still trigger a new action, right?
8 replies
SSolidJS
Created by Mahmood on 8/28/2024 in #support
solidstart with appwrite auth
In SolidStart, redirecting to a route by throwing an error and redirecting to a route by returning have similar effects.
2 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
thanks, your advice is very useful. I believe this pattern could be used in more scenarios
18 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
cheers
18 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
I have updated my code by your advice, it's clear. Thanks a lot. I am going to try object by createStore later.
18 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
thanks, it is very useful.
18 replies
SSolidJS
Created by hannus on 8/26/2024 in #support
Modifying Signals Returned by createAsync in SolidJS: Best Practices and Alternatives
thanks. My understanding is that the value returned by createAsync is a signal, and if I want to modify it, based on the principle of unidirectional data flow, the best practice is to notify its data source that the data has been updated. Specifically, this can be done by using an Action to modify the data source. Once the data source is updated, the signal value obtained by createAsync will automatically be updated accordingly. Is my understanding correct?
4 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
thanks a lot. I have never used on function, it seems like very useful. I appreciate
18 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
Thanks, it works. You’ve been a great help to me. If I have more than one signal to depend on, such as value() and title(), how should I handle it?
18 replies
SSolidJS
Created by hannus on 8/22/2024 in #support
How can I make createEffect in SolidJS execute only when the dependency variable changes, and not wh
Thanks. However, it doesn’t work. The effect doesn’t execute, not only during the initial run but also when the value is updated afterward.
18 replies
SSolidJS
Created by sh1man on 8/14/2024 in #support
permission and groups
auth check function in the preload() could handle the permission in every route component. when it comes to api/package, it depends on your scenario.
4 replies
SSolidJS
Created by hannus on 7/20/2024 in #support
Confusion about Preload mechanism
got it, thanks a lot
8 replies
SSolidJS
Created by hannus on 7/20/2024 in #support
Confusion about Preload mechanism
thanks, if the function within preload has throw redirect() , is it possible to redirect before the component render?
8 replies
SSolidJS
Created by TripleSmile on 7/23/2024 in #support
How to use a resource in a structure field as a reactive signal?
const productData = {
title: "productTitle", // string attribute
price:productTitlePrice() // singal
}
const productData = {
title: "productTitle", // string attribute
price:productTitlePrice() // singal
}
10 replies