UNPKG

scrivito

Version:

Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.

33 lines (24 loc) 865 B
import { WorkspaceObjSpaceId } from 'scrivito_sdk/client'; import { onReset } from 'scrivito_sdk/common'; import { publishedSpace } from 'scrivito_sdk/models'; import { objSpaceFor } from 'scrivito_sdk/models/obj_space_for'; let objSpaceId: WorkspaceObjSpaceId | undefined; export function currentObjSpaceId(): WorkspaceObjSpaceId { return objSpaceId ?? publishedSpace(); } export function isCurrentWorkspacePublished(): boolean { const [type, id] = currentObjSpaceId(); return type === 'workspace' && id === 'published'; } /** @public */ export function currentWorkspaceId(): string { return currentObjSpaceId()[1]; } export function setCurrentWorkspaceId(id: string): void { objSpaceId = objSpaceFor(id); } // For test purpose only export function resetCurrentWorkspaceId() { objSpaceId = publishedSpace(); } onReset(resetCurrentWorkspaceId);