d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
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
83 lines
3.2 KiB
TypeScript
83 lines
3.2 KiB
TypeScript
import type { QueryClient } from '@tanstack/react-query'
|
|
import { listMothershipChats } from '@/lib/copilot/chat/list-mothership-chats'
|
|
import { listFoldersForWorkspace } from '@/lib/folders/queries'
|
|
import { listWorkflowsForUser } from '@/lib/workflows/queries'
|
|
import {
|
|
checkWorkspaceAccess,
|
|
getWorkspacePermissionsForViewer,
|
|
} from '@/lib/workspaces/permissions/utils'
|
|
import { FOLDER_LIST_STALE_TIME, mapFolder } from '@/hooks/queries/folders'
|
|
import {
|
|
MOTHERSHIP_CHAT_LIST_STALE_TIME,
|
|
mapChat,
|
|
mothershipChatKeys,
|
|
} from '@/hooks/queries/mothership-chats'
|
|
import { folderKeys } from '@/hooks/queries/utils/folder-keys'
|
|
import { workflowKeys } from '@/hooks/queries/utils/workflow-keys'
|
|
import { mapWorkflow, WORKFLOW_LIST_STALE_TIME } from '@/hooks/queries/utils/workflow-list-query'
|
|
import { WORKSPACE_PERMISSIONS_STALE_TIME, workspaceKeys } from '@/hooks/queries/workspace'
|
|
|
|
/** Resolves whether the user may access the workspace, swallowing errors to a `false`. */
|
|
async function userCanAccessWorkspace(workspaceId: string, userId: string): Promise<boolean> {
|
|
try {
|
|
const access = await checkWorkspaceAccess(workspaceId, userId)
|
|
return access.exists && access.hasAccess
|
|
} catch {
|
|
return false
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Prefetches the sidebar's workflow, chat, folder, and workspace-permissions lists for
|
|
* a workspace and stores them under the same query keys + mappers the client hooks use,
|
|
* so the persistent sidebar paints populated on the first server render instead of
|
|
* flashing skeletons on a cold load (e.g. after the browser discards an idle tab). Calls
|
|
* the data layer directly — the same functions the API routes use — with no internal
|
|
* HTTP hop.
|
|
*
|
|
* Skips silently when the user can't access the workspace, leaving the client to
|
|
* fetch and surface the real error instead of caching an empty list.
|
|
*/
|
|
export async function prefetchWorkspaceSidebar(
|
|
queryClient: QueryClient,
|
|
workspaceId: string,
|
|
userId: string
|
|
): Promise<void> {
|
|
if (!(await userCanAccessWorkspace(workspaceId, userId))) return
|
|
await Promise.all([
|
|
queryClient.prefetchQuery({
|
|
queryKey: workflowKeys.list(workspaceId, 'active'),
|
|
queryFn: async () => {
|
|
const rows = await listWorkflowsForUser({ userId, workspaceId, scope: 'active' })
|
|
return rows.map(mapWorkflow)
|
|
},
|
|
staleTime: WORKFLOW_LIST_STALE_TIME,
|
|
}),
|
|
queryClient.prefetchQuery({
|
|
queryKey: mothershipChatKeys.list(workspaceId),
|
|
queryFn: async () => {
|
|
const data = await listMothershipChats(userId, workspaceId)
|
|
return data.map(mapChat)
|
|
},
|
|
staleTime: MOTHERSHIP_CHAT_LIST_STALE_TIME,
|
|
}),
|
|
queryClient.prefetchQuery({
|
|
queryKey: folderKeys.list(workspaceId, 'active'),
|
|
queryFn: async () => {
|
|
const rows = await listFoldersForWorkspace(workspaceId, 'active')
|
|
return rows.map(mapFolder)
|
|
},
|
|
staleTime: FOLDER_LIST_STALE_TIME,
|
|
}),
|
|
queryClient.prefetchQuery({
|
|
queryKey: workspaceKeys.permissions(workspaceId),
|
|
queryFn: async () => {
|
|
const result = await getWorkspacePermissionsForViewer(workspaceId, userId)
|
|
if (!result) throw new Error('Workspace not found or access denied')
|
|
return result
|
|
},
|
|
staleTime: WORKSPACE_PERMISSIONS_STALE_TIME,
|
|
}),
|
|
])
|
|
}
|