feat(desktop): macOS vibrancy for the left sidebar with a toggle

Add native macOS vibrancy behind the left sidebar (the only translucent
surface; header/chat/right sidebar stay opaque), plus a setting to turn it off.

- Window created with vibrancy applied after first show (avoids the cold-launch
  no-composite quirk); minimize/restore suppress the frost during the genie
  animation. Renderer frosts the sidebar via --sidebar-vibrancy-overlay once
  data-oc-vibrancy[-ready] are set; project-actions pill matches when open.
- data-oc-vibrancy-ready defaults are set in cssGenerator (DOM guaranteed),
  not the preload (document-start race left the sidebar un-frosted on launch).
- prefers-reduced-transparency falls back to solid surfaces.
- Appearance settings (macOS desktop only): a checkbox to enable/disable
  vibrancy, persisted to settings.json and applied via a Save & restart button
  (vibrancy is a window-creation option, so it needs a relaunch).
This commit is contained in:
Bohdan Triapitsyn
2026-06-09 18:38:01 +03:00
parent f9acf68c8f
commit 3541bc63f9
19 changed files with 288 additions and 12 deletions
+22
View File
@@ -123,6 +123,9 @@ const sidebarBaseRgb = hexToRgb(theme.colors.surface.muted);
const isDark = theme.metadata.variant === 'dark';
const strongAlpha = isDark ? 0.15 : 0.5;
const softAlpha = isDark ? 0.1 : 0.3;
// Translucent fill painted over the native macOS vibrancy layer for the
// left sidebar — high enough alpha to stay legible, low enough to frost.
const vibrancyAlpha = isDark ? 0.66 : 0.76;
if (sidebarBaseRgb) {
vars.push(
@@ -131,6 +134,9 @@ const sidebarBaseRgb = hexToRgb(theme.colors.surface.muted);
vars.push(
` --sidebar-overlay-soft: rgb(${sidebarBaseRgb} / ${softAlpha}) !important;`,
);
vars.push(
` --sidebar-vibrancy-overlay: rgb(${sidebarBaseRgb} / ${vibrancyAlpha}) !important;`,
);
} else {
const base = theme.colors.surface.muted;
vars.push(
@@ -139,6 +145,9 @@ const sidebarBaseRgb = hexToRgb(theme.colors.surface.muted);
vars.push(
` --sidebar-overlay-soft: ${this.opacity(base, softAlpha)} !important;`,
);
vars.push(
` --sidebar-vibrancy-overlay: ${this.opacity(base, vibrancyAlpha)} !important;`,
);
}
if (theme.colors.charts?.series && Array.isArray(theme.colors.charts.series)) {
@@ -186,6 +195,19 @@ const sidebarBaseRgb = hexToRgb(theme.colors.surface.muted);
document.head.appendChild(style);
document.documentElement.setAttribute('data-theme', theme.metadata.variant);
const hasMacVibrancy = typeof window !== 'undefined'
&& window.__OPENCHAMBER_ELECTRON__?.runtime === 'electron'
&& window.__OPENCHAMBER_ELECTRON__?.macVibrancy === true;
document.documentElement.toggleAttribute('data-oc-vibrancy', hasMacVibrancy);
// Default the "ready" flag here (DOM is guaranteed to exist) rather than
// relying on the preload, which sets it at document-start when
// documentElement may not exist yet — that race left the sidebar stuck
// un-frosted on cold launch until a minimize/restore re-sent ready=true.
// The minimize/restore IPC continues to toggle this afterwards.
if (hasMacVibrancy) {
document.documentElement.toggleAttribute('data-oc-vibrancy-ready', true);
}
}
private generatePrimaryColors(primary: Theme['colors']['primary']): string[] {