feat(operator): design system port + persistent shell (O.4)
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 <NuxtLayout /> 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.
This commit is contained in:
@@ -0,0 +1,236 @@
|
||||
<script setup lang="ts">
|
||||
import type { IconName } from './UiIcon.vue'
|
||||
|
||||
interface NavItem {
|
||||
id: string
|
||||
label: string
|
||||
icon: IconName
|
||||
badge?: number | string
|
||||
href: string
|
||||
}
|
||||
interface NavSection { sec: string }
|
||||
type NavRow = NavItem | NavSection
|
||||
|
||||
defineProps<{ current: string }>()
|
||||
const emit = defineEmits<{ navigate: [string] }>()
|
||||
|
||||
const { collapsed, toggle } = useSidebar()
|
||||
const { user } = useOidcAuth()
|
||||
|
||||
// Layout mirrors operator-app.jsx OP_NAV.
|
||||
const NAV: NavRow[] = [
|
||||
{ id: 'overview', label: 'Overview', icon: 'home', href: '/' },
|
||||
{ id: 'tenants', label: 'Tenants', icon: 'building', href: '/tenants' },
|
||||
{ id: 'partners', label: 'Partners', icon: 'briefcase', href: '/partners' },
|
||||
{ id: 'users', label: 'Users (global)', icon: 'users', href: '/users' },
|
||||
{ id: 'support', label: 'Support', icon: 'help', href: '/support' },
|
||||
{ sec: 'Commercial' },
|
||||
{ id: 'billing', label: 'Platform billing', icon: 'card', href: '/billing' },
|
||||
{ id: 'reports', label: 'Reports', icon: 'database', href: '/reports' },
|
||||
{ sec: 'Operations' },
|
||||
{ id: 'infra', label: 'Infrastructure', icon: 'plug', href: '/infrastructure' },
|
||||
{ id: 'flags', label: 'Feature flags', icon: 'shield', href: '/flags' },
|
||||
{ id: 'audit', label: 'Audit log', icon: 'file', href: '/audit' },
|
||||
{ sec: 'Platform' },
|
||||
{ id: 'team', label: 'Operator team', icon: 'users', href: '/operator-team' },
|
||||
{ id: 'settings', label: 'Platform settings',icon: 'shield', href: '/settings' },
|
||||
]
|
||||
|
||||
const isSection = (r: NavRow): r is NavSection => 'sec' in r
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<aside :class="['sidebar', { collapsed }]">
|
||||
<div class="brand">
|
||||
<span class="tile"><NodeMark :size="22" fg="#F4F3EE" accent="#D4FF3A" /></span>
|
||||
<div v-if="!collapsed" class="brand-meta">
|
||||
<div class="brand-name">dezky · ops</div>
|
||||
<div class="brand-host">operator.dezky.local</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<template v-for="(item, i) in NAV" :key="i">
|
||||
<div v-if="isSection(item) && !collapsed" class="section">{{ item.sec }}</div>
|
||||
<div v-else-if="isSection(item)" class="divider" />
|
||||
<NuxtLink
|
||||
v-else
|
||||
:to="item.href"
|
||||
:class="['row', { active: current === item.id }]"
|
||||
:title="collapsed ? item.label : undefined"
|
||||
@click="emit('navigate', item.id)"
|
||||
>
|
||||
<UiIcon :name="item.icon" :size="14" />
|
||||
<span v-if="!collapsed" class="label">{{ item.label }}</span>
|
||||
<span
|
||||
v-if="!collapsed && item.badge !== undefined && item.badge !== 0"
|
||||
class="badge"
|
||||
:class="{ alert: item.badge === '!' }"
|
||||
>{{ item.badge }}</span>
|
||||
<span v-else-if="collapsed && item.badge === '!'" class="badge-dot" />
|
||||
</NuxtLink>
|
||||
</template>
|
||||
</nav>
|
||||
|
||||
<div class="foot">
|
||||
<button class="toggle" @click="toggle">
|
||||
<UiIcon :name="collapsed ? 'chevRight' : 'chevLeft'" :size="12" />
|
||||
<span v-if="!collapsed">collapse · ⌘[</span>
|
||||
</button>
|
||||
|
||||
<div class="me-wrap">
|
||||
<button class="me">
|
||||
<Avatar :name="user?.userInfo?.name || user?.userName || '?'" :size="24" />
|
||||
<div v-if="!collapsed" class="me-meta">
|
||||
<div class="me-name">{{ user?.userInfo?.name || user?.userName }}</div>
|
||||
<div class="me-role">PLATFORM ADMIN</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.sidebar {
|
||||
width: 232px;
|
||||
flex-shrink: 0;
|
||||
background: var(--side-bg);
|
||||
color: var(--side-text);
|
||||
border-right: 1px solid var(--side-border);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
transition: width 180ms ease;
|
||||
}
|
||||
|
||||
.sidebar.collapsed { width: 56px; }
|
||||
|
||||
.brand {
|
||||
padding: 14px 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
min-height: 56px;
|
||||
border-bottom: 1px solid var(--side-border);
|
||||
}
|
||||
|
||||
.tile {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 7px;
|
||||
background: #F4F3EE;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.brand-meta { flex: 1; min-width: 0; }
|
||||
.brand-name { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
|
||||
.brand-host { font-family: var(--font-mono); font-size: 10px; color: var(--side-mute); margin-top: 2px; }
|
||||
|
||||
nav { flex: 1; padding: 8px 6px; overflow-y: auto; }
|
||||
|
||||
.section {
|
||||
padding: 12px 10px 4px 10px;
|
||||
font-family: var(--font-mono);
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.16em;
|
||||
text-transform: uppercase;
|
||||
color: var(--side-mute);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.divider { height: 1px; background: var(--side-border); margin: 10px 8px; }
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 6px 10px;
|
||||
background: transparent;
|
||||
color: var(--side-dim);
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
text-decoration: none;
|
||||
font-family: inherit;
|
||||
font-size: 12.5px;
|
||||
margin-bottom: 1px;
|
||||
transition: background 120ms;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.sidebar.collapsed .row { padding: 8px 0; justify-content: center; }
|
||||
|
||||
.row:hover { background: var(--side-hover); color: var(--side-text); }
|
||||
.row.active { background: var(--side-active); color: var(--side-text); font-weight: 500; }
|
||||
|
||||
.label { flex: 1; }
|
||||
|
||||
.badge {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 10px;
|
||||
padding: 0 6px;
|
||||
min-width: 18px;
|
||||
height: 16px;
|
||||
border-radius: 3px;
|
||||
background: var(--side-hover);
|
||||
color: var(--side-dim);
|
||||
font-weight: 600;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
.badge.alert { background: var(--bad); color: #fff; }
|
||||
|
||||
.badge-dot {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 6px;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
border-radius: 999px;
|
||||
background: var(--bad);
|
||||
}
|
||||
|
||||
.foot { border-top: 1px solid var(--side-border); }
|
||||
|
||||
.toggle {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
padding: 10px 16px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--side-mute);
|
||||
font-family: var(--font-mono);
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.06em;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sidebar.collapsed .toggle { justify-content: center; padding: 10px 0; }
|
||||
|
||||
.me-wrap { padding: 8px 12px 12px 12px; }
|
||||
.sidebar.collapsed .me-wrap { padding: 8px 0; }
|
||||
|
||||
.me {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
padding: 6px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
color: var(--side-dim);
|
||||
font-family: inherit;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
}
|
||||
.sidebar.collapsed .me { padding: 0; justify-content: center; }
|
||||
|
||||
.me-meta { flex: 1; min-width: 0; }
|
||||
.me-name { font-size: 11px; color: var(--side-text); font-weight: 500; }
|
||||
.me-role { font-size: 9px; color: var(--side-mute); font-family: var(--font-mono); margin-top: 1px; letter-spacing: 0.04em; }
|
||||
</style>
|
||||
Reference in New Issue
Block a user