mirror of
https://github.com/awizemann/scarf.git
synced 2026-05-08 02:14:37 +00:00
8a2d89654b
Add a typed design-system package (Packages/ScarfDesign) with rust-tone color tokens, type scale, spacing/radius tokens, ScarfPageHeader and component primitives (ScarfCard, ScarfBadge, ScarfTextField, ScarfSectionHeader, ScarfDivider, four button styles). Both Mac and iOS targets `import ScarfDesign`. Sidebar redesigned per design/static-site/ui-kit/Sidebar.jsx — glassy translucent background, 224 px width, app-icon header with server pill, custom tokenized rows with rust accent-tint when active, footer with live Hermes-running indicator (wired to ServerLiveStatusRegistry). 14 mockup-backed feature screens redesigned: Settings, Dashboard, Sessions, Memory, Chat (visual sweep), Activity, Cron, Insights, MCPServers, Health, Logs, Tools (full); Projects light-touch. Non-mockup features inherit rust through AccentColor.colorset repoint. Mac AppIcon.appiconset replaced with the rust set. AccentColor.colorset repointed to BrandRust hex (light + dark variants). Visual sweep: every multi-button page-header / action-bar cluster now wraps in .fixedSize(horizontal: true, vertical: false) so labels can't wrap letter-by-letter at narrow widths (regression seen on the MCP detail pane with 4 buttons). Follow-ups landed: - Sidebar Hermes-running probe wired to per-window ServerLiveStatusRegistry (no more placeholder green). - Sessions: today filter predicate (isDateInToday(startedAt)); pill count reflects real count. Starred stays a no-op pending an upstream pinned/starred field on HermesSession. - Dashboard: Recent activity column rendered alongside Recent sessions in a ViewThatFits 2-col grid. Populated from HermesDataService.fetchRecentToolCalls(limit:) flattened to ActivityEntry. ActivityEntry gains a public memberwise init. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
26 lines
1.3 KiB
HTML
26 lines
1.3 KiB
HTML
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Sidebar</title>
|
|
<link rel="stylesheet" href="_preview.css">
|
|
<style>
|
|
.sb { width:220px; background:var(--bg-quaternary); border-radius:10px; padding:10px 8px; font-size:13px; }
|
|
.sb-title { font-size:10px; color:var(--fg-muted); font-weight:600; text-transform:uppercase; letter-spacing:.06em; padding:6px 8px 4px }
|
|
.sb-item { display:flex; align-items:center; gap:8px; padding:5px 8px; border-radius:6px; color:var(--fg); cursor:pointer }
|
|
.sb-item:hover { background:var(--bg-tertiary) }
|
|
.sb-item.active { background:var(--accent-tint); color:var(--accent-active) }
|
|
.sb-icon { width:14px; opacity:.7 }
|
|
.sb-item.active .sb-icon { opacity:1 }
|
|
</style></head>
|
|
<body>
|
|
<div class="card-root" style="padding:14px">
|
|
<div class="sb">
|
|
<div class="sb-title">Monitor</div>
|
|
<div class="sb-item"><span class="sb-icon">▦</span>Dashboard</div>
|
|
<div class="sb-item active"><span class="sb-icon">📊</span>Insights</div>
|
|
<div class="sb-item"><span class="sb-icon">💬</span>Sessions</div>
|
|
<div class="sb-title">Interact</div>
|
|
<div class="sb-item"><span class="sb-icon">✦</span>Chat</div>
|
|
<div class="sb-item"><span class="sb-icon">◈</span>Memory</div>
|
|
<div class="sb-item"><span class="sb-icon">⚒</span>Skills</div>
|
|
</div>
|
|
</div>
|
|
</body></html>
|