Three coordinated package changes addressing Wave 1 cross-repo TODOs from the UI/UX roadmap (learning_ai_uxui_web/docs/ROADMAP_2026.md §10). ═══════════════════════════════════════════════════════════════════════ TODO #2 — @bytelyst/react-auth bump 0.1.8 → 0.2.0 ═══════════════════════════════════════════════════════════════════════ - Changes 'workspace:*' to 'workspace:^' for the @bytelyst/api-client dependency. On pnpm publish this resolves to a caret range (e.g. ^0.1.6) instead of '*', restoring installability for consumers. (The 0.1.6 tarball was published with a literal 'workspace:*' string — newer minor bump unblocks the showcase react-auth demo.) - 21 tests still passing. ═══════════════════════════════════════════════════════════════════════ TODO #3 — @bytelyst/dashboard-shell bump 0.1.7 → 0.2.0 ═══════════════════════════════════════════════════════════════════════ - Adds 'routePrefix?: string' prop to DashboardShellProps, SidebarProps, and TopBarProps. Threads through DashboardShell → Sidebar + TopBar. - Built-in /profile, /billing, /settings links now use the prefix: routePrefix="/app" → /app/profile, /app/billing, /app/settings - Defaults to '' (empty string) — fully back-compat with 0.1.x callers. - 2 new vitest cases covering both prefixed and default behavior; 43 / 43 tests passing (+2 from 41). ═══════════════════════════════════════════════════════════════════════ TODO #1 — @bytelyst/design-tokens bump 0.1.8 → 0.2.0 ═══════════════════════════════════════════════════════════════════════ - Adds a density-aware spacing tier on top of the existing raw --ml-space-* tier: --bl-space-scale: 1 (default :root) --bl-space-1..16: calc(--ml-space-N × --bl-space-scale) - Emits density selectors at the end of tokens.css: [data-density="compact"] { --bl-space-scale: 0.875; } [data-density="comfortable"] { --bl-space-scale: 1; } [data-density="spacious"] { --bl-space-scale: 1.125; } - Generator (scripts/generate.ts) emits both tiers automatically; the auto-generated per-product CSS files (lysnrai, mindlyst, etc.) gain a single blank-line diff from regeneration — no semantic change. - 11 / 11 token tests passing. ═══════════════════════════════════════════════════════════════════════ Decision doc — docs/ROADMAP_2026_DECISIONS.md ═══════════════════════════════════════════════════════════════════════ - Records pragmatic defaults for TODO ledger items #9–#13 so implementation work doesn't block: #9 Storybook hosting → self-hosted on Gitea Pages (free) #10 useChat protocol → adopt Vercel AI SDK shape, abstract transport #11 react-auth fold-in → defer to Wave 7 #12 dashboard-shell merge → defer to Wave 7 #13 mobile-native UI → out of scope (tokens-only sharing) - Each decision is reversible via RFC. ═══════════════════════════════════════════════════════════════════════ Publish flow ═══════════════════════════════════════════════════════════════════════ These three packages now require a release. The existing publish workflow (.gitea/workflows/publish-packages.yml) has PACKAGE_FILTER pinned to @bytelyst/errors and won't pick them up automatically — a manual workflow_dispatch with a broader filter (or the existing publish-all-packages.yml on workflow_dispatch) is needed to ship 0.2.0 to the Gitea npm registry. Refs: learning_ai_uxui_web/docs/ROADMAP_2026.md §10 TODOs #1, #2, #3, #9–#13
77 lines
1.8 KiB
TypeScript
77 lines
1.8 KiB
TypeScript
import { useState, type ReactNode } from 'react';
|
|
import type { DashboardShellProps } from './types.js';
|
|
import { Sidebar } from './Sidebar.js';
|
|
import { TopBar } from './TopBar.js';
|
|
|
|
export function DashboardShell({
|
|
productName,
|
|
logo,
|
|
version,
|
|
nav,
|
|
pathname: externalPathname,
|
|
user,
|
|
features = {},
|
|
onSignOut,
|
|
onNavigate,
|
|
routePrefix = '',
|
|
sidebarFooter,
|
|
topBarActions,
|
|
children,
|
|
}: DashboardShellProps): ReactNode {
|
|
const [sidebarCollapsed, setSidebarCollapsed] = useState(false);
|
|
|
|
// Use external pathname or default to '/'
|
|
const pathname = externalPathname ?? '/';
|
|
|
|
return (
|
|
<div
|
|
data-testid="bl-dashboard-shell"
|
|
style={{
|
|
display: 'flex',
|
|
minHeight: '100vh',
|
|
background: 'var(--bl-shell-bg, var(--color-background, #f9fafb))',
|
|
}}
|
|
>
|
|
{/* Sidebar */}
|
|
<Sidebar
|
|
productName={productName}
|
|
logo={logo}
|
|
version={version}
|
|
nav={nav}
|
|
pathname={pathname}
|
|
features={features}
|
|
onNavigate={onNavigate}
|
|
footer={sidebarFooter}
|
|
collapsed={sidebarCollapsed}
|
|
onToggleCollapse={() => setSidebarCollapsed(!sidebarCollapsed)}
|
|
routePrefix={routePrefix}
|
|
/>
|
|
|
|
{/* Main content area */}
|
|
<div style={{ flex: 1, display: 'flex', flexDirection: 'column', overflow: 'hidden' }}>
|
|
{/* Top bar */}
|
|
<TopBar
|
|
user={user}
|
|
features={features}
|
|
onSignOut={onSignOut}
|
|
onNavigate={onNavigate}
|
|
actions={topBarActions}
|
|
routePrefix={routePrefix}
|
|
/>
|
|
|
|
{/* Page content */}
|
|
<main
|
|
data-testid="bl-shell-main"
|
|
style={{
|
|
flex: 1,
|
|
padding: '24px 32px',
|
|
overflow: 'auto',
|
|
}}
|
|
>
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|