Files
wehub-resource-sync d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

52 lines
2.1 KiB
TypeScript

import type { QueryClient } from '@tanstack/react-query'
import type { FolderApi } from '@/lib/api/contracts'
import type { ListWorkspaceFilesResponse } from '@/lib/api/contracts/workspace-files'
import { prefetchInternalJson } from '@/app/workspace/[workspaceId]/lib/prefetch-internal-fetch'
import { FOLDER_LIST_STALE_TIME, mapFolder } from '@/hooks/queries/folders'
import { folderKeys } from '@/hooks/queries/utils/folder-keys'
import {
WORKSPACE_FILES_LIST_STALE_TIME,
workspaceFilesKeys,
} from '@/hooks/queries/workspace-files'
/**
* Prefetches the home page's secondary lists — folders and workspace files —
* under the same query keys their client hooks (`useFolders`,
* `useWorkspaceFiles`) use, so the home view paints populated on first render.
*
* The workflow list (`workflowKeys.list(ws, 'active')`) is already hydrated by
* the workspace sidebar prefetch and is intentionally not repeated here.
*
* Folders are fetched through the route and mapped with the same `mapFolder`
* the hook applies, matching its cached shape (string dates → `Date`). Files
* carry `Date` fields, so they go through the route and cache the serialized
* wire shape — see {@link prefetchInternalJson}.
*/
export async function prefetchHomeLists(
queryClient: QueryClient,
workspaceId: string
): Promise<void> {
await Promise.all([
queryClient.prefetchQuery({
queryKey: folderKeys.list(workspaceId, 'active'),
queryFn: async () => {
const { folders } = await prefetchInternalJson<{ folders?: FolderApi[] }>(
`/api/folders?workspaceId=${workspaceId}&scope=active`
)
return (folders ?? []).map(mapFolder)
},
staleTime: FOLDER_LIST_STALE_TIME,
}),
queryClient.prefetchQuery({
queryKey: workspaceFilesKeys.list(workspaceId, 'active'),
queryFn: async () => {
const data = await prefetchInternalJson<ListWorkspaceFilesResponse>(
`/api/workspaces/${workspaceId}/files?scope=active`
)
return data.success ? data.files : []
},
staleTime: WORKSPACE_FILES_LIST_STALE_TIME,
}),
])
}