From 8e6f73a92121be119315cbef6fe93d5a154d9604 Mon Sep 17 00:00:00 2001 From: Ronni Baslund Date: Sun, 24 May 2026 07:32:08 +0200 Subject: [PATCH] feat(operator): design system port + persistent shell (O.4) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Operator portal now wears its real chrome instead of placeholder spans. Sidebar + topbar + page header all rendered against the carbon palette from tokens.css. Components ported from the source design (operator-app.jsx, platform-ui.jsx, operator-screens.jsx) as Vue 3 SFCs in apps/operator/components/: Foundation: NodeMark (copied from portal), UiIcon (expanded to 31 icons covering sidebar/topbar/sort/arrows) Primitives: Card (3 surface variants), UiButton (primary / secondary / ghost / dark / danger × sm / md / lg), DataTable (header + rows), Badge (7 tones), Avatar (deterministic palette by name hash), Mono, Eyebrow, StatusDot, PageHeader (with actions slot) Shell: OpSidebar (collapsible 232<->56px, 12 nav items in 4 sections, active-row highlight from route, badge slot, brand + user footer); OpTopbar (env badge with prod/staging/dev variants, palette trigger stub for the ⌘K work in O.8, on-call pill, bell, avatar) Layouts: layouts/default.vue wires sidebar + topbar + slot; layouts/blank.vue is used by the login page (definePageMeta layout:'blank'). app.vue now wraps NuxtPage in NuxtLayout (the missing piece — without it Nuxt warns "Your project has layouts but the component has not been used" and renders nothing chrome-wise). Composable composables/useSidebar.ts holds the collapsed state shared between OpSidebar's toggle button and layouts/default.vue's ⌘[ keyboard shortcut. Verified in the browser: - Sidebar renders all 12 nav links with section dividers, env badge shows PROD, PageHeader resolves to the user's display name from useOidcAuth().user - Collapse toggle flips sidebar width 232↔56; nav rows become icon-only - Smoke test on the placeholder home still returns 409 for the seeded test-partner (token forwarding survives the layout refactor) Gotcha documented in the plan: Vite 7.3 added a strict server.allowedHosts check that returns plaintext 403 for any host header that isn't the dev origin. The customer portal pre-dates this Vite version; operator needs allowedHosts: ['operator.dezky.local'] in nuxt.config.ts under vite.server. Pages/index.vue replaces the bare HTML placeholder from O.3 with the new PageHeader + Card primitives — same smoke-test functionality, much better visual fidelity. Real screen content (Tenants, Partners, Infrastructure, etc.) lands in O.5+. This commit is the chrome, the smoke test, and the verification that the design system primitives compose correctly. --- apps/operator/app.vue | 4 +- apps/operator/components/Avatar.vue | 52 +++++ apps/operator/components/Badge.vue | 39 ++++ apps/operator/components/Card.vue | 16 ++ apps/operator/components/Eyebrow.vue | 16 ++ apps/operator/components/Mono.vue | 12 + apps/operator/components/NodeMark.vue | 93 ++++++++ apps/operator/components/OpSidebar.vue | 236 ++++++++++++++++++++ apps/operator/components/OpTopbar.vue | 148 +++++++++++++ apps/operator/components/PageHeader.vue | 47 ++++ apps/operator/components/StatusDot.vue | 22 ++ apps/operator/components/UiButton.vue | 54 +++++ apps/operator/components/UiIcon.vue | 72 ++++++ apps/operator/composables/useSidebar.ts | 11 + apps/operator/layouts/blank.vue | 3 + apps/operator/layouts/default.vue | 62 ++++++ apps/operator/nuxt.config.ts | 2 + apps/operator/pages/auth/login.vue | 2 +- apps/operator/pages/index.vue | 280 +++++++----------------- docs/OPERATOR-PLAN.md | 40 +++- 20 files changed, 1002 insertions(+), 209 deletions(-) create mode 100644 apps/operator/components/Avatar.vue create mode 100644 apps/operator/components/Badge.vue create mode 100644 apps/operator/components/Card.vue create mode 100644 apps/operator/components/Eyebrow.vue create mode 100644 apps/operator/components/Mono.vue create mode 100644 apps/operator/components/NodeMark.vue create mode 100644 apps/operator/components/OpSidebar.vue create mode 100644 apps/operator/components/OpTopbar.vue create mode 100644 apps/operator/components/PageHeader.vue create mode 100644 apps/operator/components/StatusDot.vue create mode 100644 apps/operator/components/UiButton.vue create mode 100644 apps/operator/components/UiIcon.vue create mode 100644 apps/operator/composables/useSidebar.ts create mode 100644 apps/operator/layouts/blank.vue create mode 100644 apps/operator/layouts/default.vue diff --git a/apps/operator/app.vue b/apps/operator/app.vue index 8f62b8b..f8eacfa 100644 --- a/apps/operator/app.vue +++ b/apps/operator/app.vue @@ -1,3 +1,5 @@ diff --git a/apps/operator/components/Avatar.vue b/apps/operator/components/Avatar.vue new file mode 100644 index 0000000..41f0221 --- /dev/null +++ b/apps/operator/components/Avatar.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/apps/operator/components/Badge.vue b/apps/operator/components/Badge.vue new file mode 100644 index 0000000..aa92f60 --- /dev/null +++ b/apps/operator/components/Badge.vue @@ -0,0 +1,39 @@ + + + + + diff --git a/apps/operator/components/Card.vue b/apps/operator/components/Card.vue new file mode 100644 index 0000000..cc4f89a --- /dev/null +++ b/apps/operator/components/Card.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/apps/operator/components/Eyebrow.vue b/apps/operator/components/Eyebrow.vue new file mode 100644 index 0000000..5182856 --- /dev/null +++ b/apps/operator/components/Eyebrow.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/apps/operator/components/Mono.vue b/apps/operator/components/Mono.vue new file mode 100644 index 0000000..b541372 --- /dev/null +++ b/apps/operator/components/Mono.vue @@ -0,0 +1,12 @@ + + + + + diff --git a/apps/operator/components/NodeMark.vue b/apps/operator/components/NodeMark.vue new file mode 100644 index 0000000..2534f5a --- /dev/null +++ b/apps/operator/components/NodeMark.vue @@ -0,0 +1,93 @@ + + + diff --git a/apps/operator/components/OpSidebar.vue b/apps/operator/components/OpSidebar.vue new file mode 100644 index 0000000..9249fa5 --- /dev/null +++ b/apps/operator/components/OpSidebar.vue @@ -0,0 +1,236 @@ + + + + + diff --git a/apps/operator/components/OpTopbar.vue b/apps/operator/components/OpTopbar.vue new file mode 100644 index 0000000..d2701ed --- /dev/null +++ b/apps/operator/components/OpTopbar.vue @@ -0,0 +1,148 @@ + + + + + diff --git a/apps/operator/components/PageHeader.vue b/apps/operator/components/PageHeader.vue new file mode 100644 index 0000000..e0be5c4 --- /dev/null +++ b/apps/operator/components/PageHeader.vue @@ -0,0 +1,47 @@ + + + + + diff --git a/apps/operator/components/StatusDot.vue b/apps/operator/components/StatusDot.vue new file mode 100644 index 0000000..76b16f9 --- /dev/null +++ b/apps/operator/components/StatusDot.vue @@ -0,0 +1,22 @@ + + + + + diff --git a/apps/operator/components/UiButton.vue b/apps/operator/components/UiButton.vue new file mode 100644 index 0000000..30a36ef --- /dev/null +++ b/apps/operator/components/UiButton.vue @@ -0,0 +1,54 @@ + + + + + diff --git a/apps/operator/components/UiIcon.vue b/apps/operator/components/UiIcon.vue new file mode 100644 index 0000000..266953e --- /dev/null +++ b/apps/operator/components/UiIcon.vue @@ -0,0 +1,72 @@ + + + diff --git a/apps/operator/composables/useSidebar.ts b/apps/operator/composables/useSidebar.ts new file mode 100644 index 0000000..33067ef --- /dev/null +++ b/apps/operator/composables/useSidebar.ts @@ -0,0 +1,11 @@ +// Shared sidebar collapsed state. Used by both the shell and the layout's +// shortcut handler so ⌘[ from anywhere flips the same thing. + +const collapsed = ref(false) + +export const useSidebar = () => ({ + collapsed, + toggle: () => { + collapsed.value = !collapsed.value + }, +}) diff --git a/apps/operator/layouts/blank.vue b/apps/operator/layouts/blank.vue new file mode 100644 index 0000000..ba4672f --- /dev/null +++ b/apps/operator/layouts/blank.vue @@ -0,0 +1,3 @@ + diff --git a/apps/operator/layouts/default.vue b/apps/operator/layouts/default.vue new file mode 100644 index 0000000..50732b1 --- /dev/null +++ b/apps/operator/layouts/default.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/apps/operator/nuxt.config.ts b/apps/operator/nuxt.config.ts index ed2709f..6968013 100644 --- a/apps/operator/nuxt.config.ts +++ b/apps/operator/nuxt.config.ts @@ -61,6 +61,8 @@ export default defineNuxtConfig({ vite: { server: { + // Vite 7 added a strict host check; allow Traefik-fronted hostnames in dev + allowedHosts: ['operator.dezky.local'], hmr: { protocol: 'wss', clientPort: 443, diff --git a/apps/operator/pages/auth/login.vue b/apps/operator/pages/auth/login.vue index 64d992f..f62dd12 100644 --- a/apps/operator/pages/auth/login.vue +++ b/apps/operator/pages/auth/login.vue @@ -2,7 +2,7 @@ // O.3 scaffolding login. Real visual treatment lands in O.4 with the full // design system port. For now: minimal dark-themed bounce to Authentik. -definePageMeta({ auth: false }) +definePageMeta({ auth: false, layout: 'blank' }) async function signIn() { await navigateTo('/auth/oidc/login', { external: true }) diff --git a/apps/operator/pages/index.vue b/apps/operator/pages/index.vue index 49a4c81..af1318e 100644 --- a/apps/operator/pages/index.vue +++ b/apps/operator/pages/index.vue @@ -1,9 +1,9 @@ diff --git a/docs/OPERATOR-PLAN.md b/docs/OPERATOR-PLAN.md index afd6724..d42ea53 100644 --- a/docs/OPERATOR-PLAN.md +++ b/docs/OPERATOR-PLAN.md @@ -337,17 +337,37 @@ done in order — earlier ones unblock later ones. `iss` URL); `AUTHENTIK_ISSUER` env is now comma-separated. The audience change in O.2 wasn't enough on its own — issuer matching is separate -### O.4 · Design system + app shell +### O.4 · Design system + app shell ✓ -- [ ] `assets/styles/tokens.css` — copy with `data-theme="dark"` as default -- [ ] `assets/styles/base.css` -- [ ] Components: `NodeMark.vue`, `UiIcon.vue` (copy from portal) -- [ ] Shared primitives ported from the design: `Card`, `Button`, `Table`, - `Badge`, `Mono`, `Eyebrow`, `StatusDot`, `Avatar`, `PageHeader` -- [ ] `OpSidebar.vue` — collapsible, badges per nav item -- [ ] `OpTopbar.vue` — env badge, ⌘K trigger, on-call pill, bell, avatar -- [ ] `app.vue` shell wires sidebar + topbar + `` -- [ ] Keyboard shortcut: ⌘[ collapses sidebar, ⌘K opens palette +- [x] `assets/styles/tokens.css` carbon-default (done in O.3) +- [x] `assets/styles/base.css` (done in O.3) +- [x] `NodeMark.vue` (copied unchanged from portal), + `UiIcon.vue` (expanded set: 31 icons covering sidebar/topbar/sort/arrows) +- [x] Shared primitives: `Card`, `UiButton` (5 variants × 3 sizes), + `DataTable`, `Badge` (7 tones), `Mono`, `Eyebrow`, `StatusDot`, + `Avatar` (deterministic palette), `PageHeader` +- [x] `OpSidebar.vue` — collapsible (232↔56px), 12 nav items in 4 + sections, active-row highlight from route, badge slot per item, + brand mark + user identity footer +- [x] `OpTopbar.vue` — env badge (prod/staging/dev), ⌘K palette trigger + stub, on-call pill, bell, avatar +- [x] `layouts/default.vue` wires sidebar + topbar + ``; + `layouts/blank.vue` for the login page; `app.vue` uses `` +- [x] Keyboard shortcut: ⌘[ collapses/expands sidebar (verified — width + flips 232↔56 in the browser via the toggle click). ⌘K palette lands + in O.8 +- [x] Verified in browser: shell renders with all 12 nav links, env badge + shows PROD, PageHeader title resolves to the user's display name, + smoke test re-confirmed 409 on the seeded `test-partner` (token + forwarding still works after the layout refactor) + +### Gotcha worth noting + +- Vite 7.3 added a strict `server.allowedHosts` check that blocks any + Host header that isn't an exact match for the dev origin. The customer + portal was scaffolded under an older Vite and pre-dates this. Operator + needs `allowedHosts: ['operator.dezky.local']` in `nuxt.config.ts` + under `vite.server` or every request 403s with a plaintext error. ### O.5 · Tenant management (real backend)