V1 Web PWA · Surface walkthrough

Studio · Yemaya · Studio Desktop

A per-surface walkthrough of the V1 Web PWA studio surface: layout, states, interactions, data, and cross-references.

walked
8sections2 minread

On this page

Context. surface studio · domain yemaya · route /studio/yemaya/studio-desktop · auth signed-in + studio entitlement · source apps/oshun/web/src/app/studio/yemaya/studio-desktop/page.tsx

Last walked. 2026-05-29 automated runtime walk (Playwright headless) — render, /v1 data (2xx), console/page-errors, expected content, screenshot verified; live screen-reader, touch, offline, and telemetry-delivery checks pending a manual AT pass. Evidence: WALKTHROUGH/results/runtime-sweep-2026-05-29.md; body re-derived 2026-06-03 from current source (lane-console architecture)

Purpose#

Aggregator workspace that composes three sibling Yemaya lanes — Project Workspaces, Team Collaboration, and Voice/Video Communication — under one shell, with a Capability Summary heading the page. The page performs no /v1 fetch; each embedded lane runs its own admin-scoped console.

Entry points#

  • Studio index quick-actions.
  • Breadcrumb chain on this page: Studio › Yemaya Project Workspaces › Studio Desktop.
  • Direct URL / bookmark (signed-in + studio entitlement).

Layout regions#

page.tsx renders ShellLayout active="studio" and:

  • Breadcrumbs panel (data-yemaya-studio-desktop-breadcrumbs): Studio › Yemaya Project Workspaces › Studio Desktop (current aria-current="page").
  • Workspace panel (StudioYemayaStudioDesktopWorkspace, data-yemaya-studio-desktop-workspace):
    • <h1> "Yemaya Studio Desktop Workspace".
    • Summary <p data-yemaya-studio-desktop-summary>.
    • Capability Summary (data-yemaya-studio-desktop-capability-summary, <h2>): four data-yemaya-studio-desktop-capability cards — Desktop Workspace Orchestration, Desktop Collaboration Runtime, Desktop Communication Controls, Security and Parity.
    • Project Workspaces Lane (data-yemaya-studio-desktop-project-workspaces-lane, <h2>) — embeds StudioYemayaProjectWorkspacesWorkspace.
    • Team Collaboration Lane (data-yemaya-studio-desktop-team-collaboration-lane, <h2>) — embeds StudioYemayaTeamCollaborationWorkspace.
    • Voice/Video Communication Lane (data-yemaya-studio-desktop-voice-video-lane, <h2>) — embeds StudioYemayaVoiceVideoCommunicationWorkspace.
  • Route Map panel (data-yemaya-studio-desktop-route-map): <h2> "Route Map" with six entries.
  • Quick-action panel: four quickAction links.

States#

The aggregator renders unconditionally; each embedded lane owns its own states:

Interactions#

Capability cards (non-interactive)#

  • Desktop Workspace Orchestration / Desktop Collaboration Runtime / Desktop Communication Controls / Security and Parity (data-yemaya-studio-desktop-capability articles).

Embedded lanes#

  • Project Workspaces Lane / Team Collaboration Lane / Voice/Video Communication Lane — see their per-view walkthroughs.

Route map#

data-yemaya-studio-desktop-route-map — six entries:

  • /studio/yemaya/studio-desktop
  • /studio/yemaya/studio-desktop/workspaces/[workspaceId]
  • /studio/yemaya/studio-desktop/collaboration/[sessionId]
  • /studio/yemaya/studio-desktop/communication/[channelId]
  • /studio/yemaya/studio-desktop/parity/[parityId]
  • /studio/yemaya/studio-desktop/governance/[policyId]

Quick actions#

  • "Open Yemaya Project Workspaces workspace"/studio/yemaya/project-workspaces.
  • "Open Yemaya Team Collaboration workspace"/studio/yemaya/team-collaboration.
  • "Open Yemaya Voice/Video Communication workspace"/studio/yemaya/voice-video-communication.
  • "Back to Studio workspace index"/studio.

Data & contracts#

  • Reads: none at the page boundary; reads happen inside each embedded lane.
  • Writes: none at the page boundary; the embedded lanes own their POSTs.
  • Realtime: None.
  • Caching: aggregator delegates to embedded lanes.
  • Auth/role check: admin-scoped, fail-closed inside each lane; route additionally signed-in + studio via the proxy gate.

Cross-references#

  • Workspace source: apps/oshun/web/src/components/studio/StudioYemayaStudioDesktopWorkspace.tsx
  • Route map source: apps/oshun/web/src/components/studio/StudioYemayaStudioDesktopRouteMap.ts
  • Page source: apps/oshun/web/src/app/studio/yemaya/studio-desktop/page.tsx
  • Embedded lanes:
    • apps/oshun/web/src/components/studio/StudioYemayaProjectWorkspacesWorkspace.tsx
    • apps/oshun/web/src/components/studio/StudioYemayaTeamCollaborationWorkspace.tsx
    • apps/oshun/web/src/components/studio/StudioYemayaVoiceVideoCommunicationWorkspace.tsx
  • Embedded in: studio-yemaya-ui.md
  • Studio overview: studio-overview.md
  • Feature spec: V1/features.md

Open questions / known gaps#

  • Route-map children (workspaces/collaboration/communication/parity/ governance) are a sitemap contract; confirm which dynamic pages exist.