Luka
Luka
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Thanks for help It works fine I have SSR now on initial load and then observer fetches on scroll.
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Alright I'll update you soon, I think I will try having SSR as well just for performance purposes
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Thanks for responses I think just having hasMore should help.
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Well if I'll have hasMore I will change notifcations to object instead of array and have const [notifications, setNotifications] = createSignal({hasMore: true|false, notifications: []}) The observer will probably be stopped from fetching on page refresh since I already have onMount doing initial request so here I would have smth like createEffect(() => { if (!notifications() || notifications().length === 0 && !loading() && !notifications().hasMore) return; My question is when we try to have SSR how do I keep track of 2 different signals basically to then render would this be correct approach? <For each={[...notifs, ...otherNotifications()]}>{renderLogic}</For>
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Yeah another one I want to ask if you don't mind so how would you approach SSR here? I thought I would have say: const notifs = createAsync(fetch) const [otherNotifications, setOtherNotifications] = createSignal([]) after this initial request I would add "createEffect" and track the last id/created_at for "notifs" But right after user scrolls and makes request with "createEffect" I will render it using <For each={[...notifs, ...otherNotifications()]}>{renderLogic}</For> Would this be any faster?
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Exactly that was my first thought
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
I use cursor based pagination by tracking created_at and id of last notification then I compare (created_at, id) <|> (last_element_created_at, last_element_id)
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
Well now I think I won't really have that much rows in notifications table so the cost of counting rows won't be that demanding, well I am concerned of performance mostly
18 replies
SSolidJS
Created by Luka on 3/1/2025 in #support
Infinite scroll
First time doing infinite scrolling so I am kind of lost here
18 replies
SSolidJS
Created by Luka on 2/24/2025 in #support
Routes and fetch requests
I found the issue I checked the code inside (AllServices).jsx and noticed that createAsync was throwing a JSON unexpected error. After reviewing server function, I realized that it was making the same request to external server as the createAsync function in xelosani(details)/[id].jsx, but with different parameters. Thanks for response.
3 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
I think I should upload the map data to postgresql and then make fetch request to my nodejs server which will return images/tiles. I tried other ways but I have limits all the time.
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
So I am meaning if 10-20 user concurently fetches the map will it work for all of them? because openstreetmap was also open source but later i found they had 1 request per second limit so I want to avoind any api limits
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
is there any api limit?
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
or I have to do vanilla way?
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
ahh cool I will start implementing and experience it myself. Is there any library which will make implementing maplibre with solid easier?
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
Basically I want to be able to display roads and terrain normally, I want 2 user to be able to share their current location which will update per some seconds, also I want to add icons on the map and I want o have only one country. will MapLibre be helpful in this case?
23 replies
SSolidJS
Created by Luka on 12/28/2024 in #support
How to make a map?
I will consider it
23 replies
SSolidJS
Created by Luka on 12/11/2024 in #support
[h3] [unhandled] H3Error: Client-only API called on the server side. Run client-only code in onMount
I did fix the error but I got different error now: Error when evaluating SSR module /home/lukachikvaidze/projects/sheuketee/src/routes/(Landing).jsx?pick=default&pick=$css: |- Error: undefined does not match field "params": [Pattern] of type FunctionExpression This I think should be either configs or the way I am fetching data I haven't been looking in docs for some time just saw that cache function has been deprecated and some other functions are keep coming. createAsync that I had written was working perfectly around 2 days ago so here is what I got for now "use server" import { query } from "@solidjs/router"; import { verify_user } from "./session_management"; import { getRequestEvent } from "solid-js/web"; export const header = query(async () => { try { const event = getRequestEvent(); const session = await verify_user(event); if (session === 401) { throw new Error(401); } return { profId: session.profId, role: session.role, }; } catch (error) { if (error.message === "401") { return 401; } console.log("GET USER", error); } }, "user-ident"); import { header } from "~/routes/api/header"; const user = createAsync(() => header()); I might not be using best practices here but I just want to know if fetching is correct
23 replies
SSolidJS
Created by Md. Golam Kibria Raihan on 12/11/2024 in #support
Can't start solid start project
What worked?
8 replies
SSolidJS
Created by Md. Golam Kibria Raihan on 12/11/2024 in #support
Can't start solid start project
I have the same problem did you find a solution?
8 replies