mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
perf(hooks): normalize query keys and add placeholderData to optimize thread loading
This commit is contained in:
parent
0fa4939a71
commit
8eaa4e618d
2 changed files with 3 additions and 2 deletions
|
|
@ -109,6 +109,7 @@ export function AllPrivateChatsSidebarContent({
|
||||||
queryKey: ["all-threads", searchSpaceId],
|
queryKey: ["all-threads", searchSpaceId],
|
||||||
queryFn: () => fetchThreads(Number(searchSpaceId)),
|
queryFn: () => fetchThreads(Number(searchSpaceId)),
|
||||||
enabled: !!searchSpaceId && !isSearchMode,
|
enabled: !!searchSpaceId && !isSearchMode,
|
||||||
|
placeholderData: () => queryClient.getQueryData(["threads", searchSpaceId, { limit: 40 }]),
|
||||||
});
|
});
|
||||||
|
|
||||||
const {
|
const {
|
||||||
|
|
|
||||||
|
|
@ -439,8 +439,8 @@ export function OnboardingTour() {
|
||||||
|
|
||||||
// Fetch threads data
|
// Fetch threads data
|
||||||
const { data: threadsData } = useQuery({
|
const { data: threadsData } = useQuery({
|
||||||
queryKey: ["threads", searchSpaceId, { limit: 1 }],
|
queryKey: ["threads", searchSpaceId, { limit: 40 }], // Same key as layout
|
||||||
queryFn: () => fetchThreads(Number(searchSpaceId), 1), // Only need to check if any exist
|
queryFn: () => fetchThreads(Number(searchSpaceId), 40),
|
||||||
enabled: !!searchSpaceId,
|
enabled: !!searchSpaceId,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue