chore: import upstream snapshot with attribution
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
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
This commit is contained in:
@@ -0,0 +1,413 @@
|
||||
import type { QueryClient } from '@tanstack/react-query'
|
||||
import { keepPreviousData, useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
|
||||
import { ApiClientError } from '@/lib/api/client/errors'
|
||||
import { requestJson } from '@/lib/api/client/request'
|
||||
import type { ContractBodyInput } from '@/lib/api/contracts'
|
||||
import {
|
||||
createWorkspaceContract,
|
||||
deleteWorkspaceContract,
|
||||
getWorkspaceContract,
|
||||
getWorkspaceMembersContract,
|
||||
getWorkspaceOwnerBillingContract,
|
||||
getWorkspacePermissionsContract,
|
||||
listWorkspacesContract,
|
||||
updateWorkspaceContract,
|
||||
type Workspace,
|
||||
type WorkspaceCreationPolicy,
|
||||
type WorkspaceMember,
|
||||
type WorkspaceOwnerBilling,
|
||||
type WorkspacePermissions,
|
||||
type WorkspaceQueryScope,
|
||||
type WorkspacesResponse,
|
||||
} from '@/lib/api/contracts'
|
||||
|
||||
/**
|
||||
* Query key factory for workspace-related queries.
|
||||
* Provides hierarchical cache keys for workspaces, settings, and permissions.
|
||||
*/
|
||||
export const workspaceKeys = {
|
||||
all: ['workspace'] as const,
|
||||
lists: () => [...workspaceKeys.all, 'list'] as const,
|
||||
list: (scope: WorkspaceQueryScope = 'active') =>
|
||||
[...workspaceKeys.lists(), 'user', scope] as const,
|
||||
details: () => [...workspaceKeys.all, 'detail'] as const,
|
||||
detail: (id: string) => [...workspaceKeys.details(), id] as const,
|
||||
settings: (id: string) => [...workspaceKeys.detail(id), 'settings'] as const,
|
||||
permissions: (id: string) => [...workspaceKeys.detail(id), 'permissions'] as const,
|
||||
members: (id: string) => [...workspaceKeys.detail(id), 'members'] as const,
|
||||
ownerBilling: (id: string) => [...workspaceKeys.detail(id), 'ownerBilling'] as const,
|
||||
adminLists: () => [...workspaceKeys.all, 'adminList'] as const,
|
||||
adminList: (userId: string | undefined) => [...workspaceKeys.adminLists(), userId ?? ''] as const,
|
||||
}
|
||||
|
||||
export type { Workspace, WorkspaceCreationPolicy, WorkspaceMember, WorkspacePermissions }
|
||||
|
||||
export const WORKSPACE_PERMISSIONS_STALE_TIME = 30 * 1000
|
||||
export const WORKSPACE_LIST_STALE_TIME = 30 * 1000
|
||||
export const WORKSPACE_SETTINGS_STALE_TIME = 30 * 1000
|
||||
export const WORKSPACE_MEMBERS_STALE_TIME = 5 * 60 * 1000
|
||||
export const WORKSPACE_ADMIN_LIST_STALE_TIME = 60 * 1000
|
||||
|
||||
async function fetchWorkspaces(
|
||||
scope: WorkspaceQueryScope = 'active',
|
||||
signal?: AbortSignal
|
||||
): Promise<WorkspacesResponse> {
|
||||
const data = await requestJson(listWorkspacesContract, { query: { scope }, signal })
|
||||
return {
|
||||
workspaces:
|
||||
data.workspaces?.map((workspace: Workspace) => ({
|
||||
...workspace,
|
||||
organizationId: workspace.organizationId ?? null,
|
||||
workspaceMode: workspace.workspaceMode ?? 'grandfathered_shared',
|
||||
inviteMembersEnabled: workspace.inviteMembersEnabled ?? false,
|
||||
inviteDisabledReason: workspace.inviteDisabledReason ?? null,
|
||||
inviteUpgradeRequired: workspace.inviteUpgradeRequired ?? false,
|
||||
})) || [],
|
||||
lastActiveWorkspaceId:
|
||||
typeof data.lastActiveWorkspaceId === 'string' ? data.lastActiveWorkspaceId : null,
|
||||
creationPolicy: data.creationPolicy
|
||||
? {
|
||||
...data.creationPolicy,
|
||||
organizationId: data.creationPolicy.organizationId ?? null,
|
||||
reason: data.creationPolicy.reason ?? null,
|
||||
workspaceMode: data.creationPolicy.workspaceMode ?? 'personal',
|
||||
}
|
||||
: null,
|
||||
}
|
||||
}
|
||||
|
||||
const selectWorkspaces = (data: WorkspacesResponse): Workspace[] => data.workspaces
|
||||
|
||||
/**
|
||||
* Fetches the current user's workspaces.
|
||||
* Returns only the workspace array. Use `useWorkspacesWithMetadata` when
|
||||
* you also need `lastActiveWorkspaceId`.
|
||||
*/
|
||||
export function useWorkspacesQuery(enabled = true, scope: WorkspaceQueryScope = 'active') {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.list(scope),
|
||||
queryFn: ({ signal }) => fetchWorkspaces(scope, signal),
|
||||
select: selectWorkspaces,
|
||||
enabled,
|
||||
staleTime: WORKSPACE_LIST_STALE_TIME,
|
||||
placeholderData: keepPreviousData,
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetches workspaces with the user's last active workspace ID.
|
||||
* Used by the redirect page to determine which workspace to open.
|
||||
*/
|
||||
export function useWorkspacesWithMetadata(enabled = true) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.list('active'),
|
||||
queryFn: ({ signal }) => fetchWorkspaces('active', signal),
|
||||
enabled,
|
||||
staleTime: WORKSPACE_LIST_STALE_TIME,
|
||||
})
|
||||
}
|
||||
|
||||
export function useWorkspaceCreationPolicy(enabled = true) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.list('active'),
|
||||
queryFn: ({ signal }) => fetchWorkspaces('active', signal),
|
||||
select: (data) => data.creationPolicy,
|
||||
enabled,
|
||||
staleTime: WORKSPACE_LIST_STALE_TIME,
|
||||
})
|
||||
}
|
||||
|
||||
async function fetchWorkspaceOwnerBilling(
|
||||
workspaceId: string,
|
||||
signal?: AbortSignal
|
||||
): Promise<WorkspaceOwnerBilling> {
|
||||
return requestJson(getWorkspaceOwnerBillingContract, {
|
||||
params: { id: workspaceId },
|
||||
signal,
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscription access state of the workspace's billed account (its owner's
|
||||
* rolled-up plan) — the workspace-scoped counterpart to `useSubscriptionData`.
|
||||
* Feed the result to `getSubscriptionAccessState` to gate workspace features on
|
||||
* the owner's plan rather than the viewer's, so a free member of a paid workspace
|
||||
* isn't gated.
|
||||
*
|
||||
* `staleTime: 0` so consumers (e.g. the deploy modal) refetch on mount: a plan
|
||||
* change happens outside this query's invalidation graph, and the cached value is
|
||||
* shown during the background refetch (no flash), so gates self-heal on reopen.
|
||||
*/
|
||||
export function useWorkspaceOwnerBilling(workspaceId?: string) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.ownerBilling(workspaceId ?? ''),
|
||||
queryFn: ({ signal }) => fetchWorkspaceOwnerBilling(workspaceId as string, signal),
|
||||
enabled: Boolean(workspaceId),
|
||||
staleTime: 0,
|
||||
})
|
||||
}
|
||||
|
||||
type CreateWorkspaceParams = Pick<ContractBodyInput<typeof createWorkspaceContract>, 'name'>
|
||||
|
||||
/**
|
||||
* Creates a new workspace.
|
||||
* Merges the created row into the active list cache before invalidation so navigation
|
||||
* cannot race a stale list (see workspace validation fallback in use-workspace-management).
|
||||
*/
|
||||
export function useCreateWorkspace() {
|
||||
const queryClient = useQueryClient()
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async ({ name }: CreateWorkspaceParams) => {
|
||||
const data = await requestJson(createWorkspaceContract, { body: { name } })
|
||||
return data.workspace
|
||||
},
|
||||
onSuccess: (newWorkspace) => {
|
||||
queryClient.setQueryData<WorkspacesResponse>(workspaceKeys.list('active'), (previous) => {
|
||||
if (!previous) {
|
||||
return { workspaces: [newWorkspace], lastActiveWorkspaceId: null, creationPolicy: null }
|
||||
}
|
||||
if (previous.workspaces.some((w) => w.id === newWorkspace.id)) {
|
||||
return previous
|
||||
}
|
||||
return { ...previous, workspaces: [newWorkspace, ...previous.workspaces] }
|
||||
})
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.lists() })
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.adminLists() })
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
interface DeleteWorkspaceParams {
|
||||
workspaceId: string
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes a workspace.
|
||||
* Automatically invalidates the workspace list cache on success.
|
||||
*/
|
||||
export function useDeleteWorkspace() {
|
||||
const queryClient = useQueryClient()
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async ({ workspaceId }: DeleteWorkspaceParams) => {
|
||||
return requestJson(deleteWorkspaceContract, {
|
||||
params: { id: workspaceId },
|
||||
body: {},
|
||||
})
|
||||
},
|
||||
onSettled: (_data, _error, variables) => {
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.lists() })
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.detail(variables.workspaceId) })
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
type UpdateWorkspaceParams = { workspaceId: string } & Pick<
|
||||
ContractBodyInput<typeof updateWorkspaceContract>,
|
||||
'name' | 'color' | 'logoUrl'
|
||||
>
|
||||
|
||||
/**
|
||||
* Updates a workspace's properties (name, logo, etc.).
|
||||
* Invalidates both the workspace list and the specific workspace detail cache.
|
||||
*/
|
||||
export function useUpdateWorkspace() {
|
||||
const queryClient = useQueryClient()
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async ({ workspaceId, ...updates }: UpdateWorkspaceParams) => {
|
||||
const body = updates.name !== undefined ? { ...updates, name: updates.name.trim() } : updates
|
||||
return requestJson(updateWorkspaceContract, { params: { id: workspaceId }, body })
|
||||
},
|
||||
onSettled: (_data, _error, variables) => {
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.lists() })
|
||||
queryClient.invalidateQueries({ queryKey: workspaceKeys.detail(variables.workspaceId) })
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
async function fetchWorkspacePermissions(
|
||||
workspaceId: string,
|
||||
signal?: AbortSignal
|
||||
): Promise<WorkspacePermissions> {
|
||||
try {
|
||||
return await requestJson(getWorkspacePermissionsContract, {
|
||||
params: { id: workspaceId },
|
||||
signal,
|
||||
})
|
||||
} catch (error) {
|
||||
if (error instanceof ApiClientError && error.status === 404) {
|
||||
throw new Error('Workspace not found or access denied', { cause: error })
|
||||
}
|
||||
if (error instanceof ApiClientError && error.status === 401) {
|
||||
throw new Error('Authentication required', { cause: error })
|
||||
}
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetches permissions for a specific workspace.
|
||||
* @param workspaceId - The workspace ID to fetch permissions for
|
||||
*/
|
||||
export function useWorkspacePermissionsQuery(workspaceId: string | null | undefined) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.permissions(workspaceId ?? ''),
|
||||
queryFn: ({ signal }) => fetchWorkspacePermissions(workspaceId as string, signal),
|
||||
enabled: Boolean(workspaceId),
|
||||
staleTime: WORKSPACE_PERMISSIONS_STALE_TIME,
|
||||
placeholderData: keepPreviousData,
|
||||
})
|
||||
}
|
||||
|
||||
async function fetchWorkspaceMembers(
|
||||
workspaceId: string,
|
||||
signal?: AbortSignal
|
||||
): Promise<WorkspaceMember[]> {
|
||||
const data = await requestJson(getWorkspaceMembersContract, {
|
||||
params: { id: workspaceId },
|
||||
signal,
|
||||
})
|
||||
return data.members
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetches lightweight member profiles (id, name, image) for a workspace.
|
||||
* Use this for display purposes (avatars, owner cells) instead of the heavier permissions query.
|
||||
*/
|
||||
export function useWorkspaceMembersQuery(workspaceId: string | null | undefined) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.members(workspaceId ?? ''),
|
||||
queryFn: ({ signal }) => fetchWorkspaceMembers(workspaceId as string, signal),
|
||||
enabled: Boolean(workspaceId),
|
||||
staleTime: WORKSPACE_MEMBERS_STALE_TIME,
|
||||
})
|
||||
}
|
||||
|
||||
async function fetchWorkspaceSettings(workspaceId: string, signal?: AbortSignal) {
|
||||
const [settings, permissions] = await Promise.all([
|
||||
requestJson(getWorkspaceContract, { params: { id: workspaceId }, signal }),
|
||||
requestJson(getWorkspacePermissionsContract, { params: { id: workspaceId }, signal }),
|
||||
])
|
||||
|
||||
return {
|
||||
settings,
|
||||
permissions,
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Prefetch a workspace's settings (and permissions) into the cache. Use on
|
||||
* hover to warm data before navigating to a settings-style route.
|
||||
* @param queryClient - The active QueryClient
|
||||
* @param workspaceId - The workspace ID to prefetch settings for
|
||||
*/
|
||||
export function prefetchWorkspaceSettings(queryClient: QueryClient, workspaceId: string) {
|
||||
if (!workspaceId) return
|
||||
queryClient.prefetchQuery({
|
||||
queryKey: workspaceKeys.settings(workspaceId),
|
||||
queryFn: ({ signal }) => fetchWorkspaceSettings(workspaceId, signal),
|
||||
staleTime: WORKSPACE_SETTINGS_STALE_TIME,
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetches workspace settings including permissions.
|
||||
* @param workspaceId - The workspace ID to fetch settings for
|
||||
*/
|
||||
export function useWorkspaceSettings(workspaceId: string) {
|
||||
return useQuery({
|
||||
queryKey: workspaceKeys.settings(workspaceId),
|
||||
queryFn: ({ signal }) => fetchWorkspaceSettings(workspaceId, signal),
|
||||
enabled: !!workspaceId,
|
||||
staleTime: WORKSPACE_SETTINGS_STALE_TIME,
|
||||
placeholderData: keepPreviousData,
|
||||
})
|
||||
}
|
||||
|
||||
type UpdateWorkspaceSettingsParams = { workspaceId: string } & Pick<
|
||||
ContractBodyInput<typeof updateWorkspaceContract>,
|
||||
'billedAccountUserId'
|
||||
>
|
||||
|
||||
/**
|
||||
* Updates workspace settings (e.g., billing configuration).
|
||||
* Invalidates the workspace settings cache on success.
|
||||
*/
|
||||
export function useUpdateWorkspaceSettings() {
|
||||
const queryClient = useQueryClient()
|
||||
|
||||
return useMutation({
|
||||
mutationFn: async ({ workspaceId, ...updates }: UpdateWorkspaceSettingsParams) => {
|
||||
return requestJson(updateWorkspaceContract, { params: { id: workspaceId }, body: updates })
|
||||
},
|
||||
onSettled: (_data, _error, variables) => {
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: workspaceKeys.settings(variables.workspaceId),
|
||||
})
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
/** Workspace with admin access metadata. */
|
||||
export interface AdminWorkspace {
|
||||
id: string
|
||||
name: string
|
||||
isOwner: boolean
|
||||
ownerId?: string
|
||||
canInvite: boolean
|
||||
organizationId: string | null
|
||||
workspaceMode: Workspace['workspaceMode']
|
||||
}
|
||||
|
||||
async function fetchAdminWorkspaces(
|
||||
userId: string | undefined,
|
||||
organizationId: string | undefined,
|
||||
signal?: AbortSignal
|
||||
): Promise<AdminWorkspace[]> {
|
||||
if (!userId) {
|
||||
return []
|
||||
}
|
||||
|
||||
const workspacesData = await requestJson(listWorkspacesContract, { query: {}, signal })
|
||||
const allUserWorkspaces = (workspacesData.workspaces || []).map((workspace: Workspace) => ({
|
||||
...workspace,
|
||||
organizationId: workspace.organizationId ?? null,
|
||||
workspaceMode: workspace.workspaceMode ?? 'grandfathered_shared',
|
||||
inviteMembersEnabled: workspace.inviteMembersEnabled ?? false,
|
||||
inviteDisabledReason: workspace.inviteDisabledReason ?? null,
|
||||
inviteUpgradeRequired: workspace.inviteUpgradeRequired ?? false,
|
||||
}))
|
||||
|
||||
return allUserWorkspaces
|
||||
.filter((workspace: Workspace) => workspace.permissions === 'admin')
|
||||
.filter((workspace: Workspace) =>
|
||||
organizationId
|
||||
? workspace.organizationId === organizationId && workspace.workspaceMode === 'organization'
|
||||
: true
|
||||
)
|
||||
.map((workspace: Workspace) => ({
|
||||
id: workspace.id,
|
||||
name: workspace.name,
|
||||
isOwner: workspace.ownerId === userId,
|
||||
ownerId: workspace.ownerId,
|
||||
canInvite: workspace.inviteMembersEnabled ?? false,
|
||||
organizationId: workspace.organizationId,
|
||||
workspaceMode: workspace.workspaceMode,
|
||||
}))
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetches workspaces where the user has admin access.
|
||||
* @param userId - The user ID to check admin access for
|
||||
*/
|
||||
export function useAdminWorkspaces(userId: string | undefined, organizationId?: string) {
|
||||
return useQuery({
|
||||
queryKey: [...workspaceKeys.adminList(userId), organizationId ?? ''] as const,
|
||||
queryFn: ({ signal }) => fetchAdminWorkspaces(userId, organizationId, signal),
|
||||
enabled: Boolean(userId),
|
||||
staleTime: WORKSPACE_ADMIN_LIST_STALE_TIME,
|
||||
placeholderData: keepPreviousData,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user