- Replace all Tailwind/shadcn classes with inline styles - Use warm beige palette, Outfit/Newsreader fonts, Stackless card pattern - Replace Lucide icons with simple Unicode glyphs - Surface picker and left nav match the sidebar/activity visual language - Controls bar (library tabs, swatches, lock-in) restyled to match Made-with: Cursor
544 lines
25 KiB
TypeScript
544 lines
25 KiB
TypeScript
"use client";
|
|
|
|
import { use, useState, useEffect } from "react";
|
|
import { toast } from "sonner";
|
|
import { SCAFFOLD_REGISTRY, THEME_REGISTRY, type ThemeColor } from "@/components/design-scaffolds";
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Surface definitions
|
|
// ---------------------------------------------------------------------------
|
|
|
|
interface Surface {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
icon: string;
|
|
themes: Theme[];
|
|
}
|
|
|
|
interface Theme {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
tags: string[];
|
|
url: string;
|
|
}
|
|
|
|
const ALL_SURFACES: Surface[] = [
|
|
{
|
|
id: "web-app",
|
|
name: "Web App",
|
|
icon: "⬡",
|
|
description: "The core product users log into — dashboards, features, settings",
|
|
themes: [
|
|
{ id: "shadcn", name: "shadcn/ui", description: "Copy-paste components on Radix primitives. You own the code, fully customisable.", tags: ["Tailwind", "Radix", "Copy-paste"], url: "https://ui.shadcn.com" },
|
|
{ id: "mantine", name: "Mantine", description: "100+ components with hooks, forms, charts. Best for data-heavy apps.", tags: ["React", "Charts", "Forms"], url: "https://mantine.dev" },
|
|
{ id: "hero-ui", name: "HeroUI", description: "Beautiful, accessible components with smooth animations and dark mode.", tags: ["Tailwind", "Animations", "Accessible"], url: "https://heroui.com" },
|
|
{ id: "tremor", name: "Tremor", description: "Dashboard components — charts, KPIs, tables — designed for analytics UIs.", tags: ["Charts", "Dashboard", "Analytics"], url: "https://tremor.so" },
|
|
],
|
|
},
|
|
{
|
|
id: "marketing",
|
|
name: "Marketing Site",
|
|
icon: "◎",
|
|
description: "Public-facing landing page, blog, pricing — brand expression and conversion",
|
|
themes: [
|
|
{ id: "daisy-ui", name: "DaisyUI", description: "Tailwind plugin with 48 built-in themes. Fastest path to a beautiful site.", tags: ["Tailwind", "Themes", "Plugin"], url: "https://daisyui.com" },
|
|
{ id: "hero-ui", name: "HeroUI", description: "Beautiful components with gradients and smooth animations.", tags: ["Tailwind", "Animations", "Modern"], url: "https://heroui.com" },
|
|
{ id: "aceternity", name: "Aceternity UI", description: "Animated, visually striking components for premium landing pages.", tags: ["Animations", "Dark", "Premium"], url: "https://ui.aceternity.com" },
|
|
{ id: "tailwind-only", name: "Tailwind only", description: "No component library — full creative control with pure Tailwind CSS.", tags: ["Custom", "Flexible", "Minimal"], url: "https://tailwindcss.com" },
|
|
],
|
|
},
|
|
{
|
|
id: "admin",
|
|
name: "Admin Panel",
|
|
icon: "◫",
|
|
description: "Internal tool for managing your business — users, support, billing, analytics",
|
|
themes: [
|
|
{ id: "mantine", name: "Mantine", description: "The best choice for admin — comprehensive tables, forms, and data components.", tags: ["Tables", "Forms", "Charts"], url: "https://mantine.dev" },
|
|
{ id: "shadcn", name: "shadcn/ui", description: "Clean, neutral components. Great if you want the admin to match the main app.", tags: ["Tailwind", "Consistent", "Clean"], url: "https://ui.shadcn.com" },
|
|
{ id: "tremor", name: "Tremor", description: "Analytics-first — built for KPI dashboards, charts, and data tables.", tags: ["Analytics", "Charts", "KPIs"], url: "https://tremor.so" },
|
|
],
|
|
},
|
|
{
|
|
id: "mobile",
|
|
name: "Mobile App",
|
|
icon: "▢",
|
|
description: "iOS and Android companion app — touch-first, native feel",
|
|
themes: [
|
|
{ id: "nativewind", name: "NativeWind", description: "Use Tailwind CSS in React Native. Consistent style across web and mobile.", tags: ["Tailwind", "React Native", "Expo"], url: "https://nativewind.dev" },
|
|
{ id: "gluestack", name: "Gluestack UI", description: "Universal components for React Native — accessible, well-tested, comprehensive.", tags: ["Universal", "Accessible", "Expo"], url: "https://gluestack.io" },
|
|
],
|
|
},
|
|
{
|
|
id: "email",
|
|
name: "Email",
|
|
icon: "✉",
|
|
description: "Transactional and marketing emails — welcome, billing, notifications",
|
|
themes: [
|
|
{ id: "react-email", name: "React Email", description: "Build emails with React components. Works with any email provider.", tags: ["React", "Resend", "Cross-client"], url: "https://react.email" },
|
|
],
|
|
},
|
|
{
|
|
id: "docs",
|
|
name: "Docs / Content",
|
|
icon: "☰",
|
|
description: "Documentation, knowledge base, or blog for your product",
|
|
themes: [
|
|
{ id: "nextra", name: "Nextra", description: "Next.js-based docs site. Markdown-first, fast, with great search.", tags: ["Next.js", "Markdown", "Search"], url: "https://nextra.site" },
|
|
{ id: "shadcn", name: "shadcn/ui + custom", description: "Build a fully custom docs site that matches your product exactly.", tags: ["Custom", "Tailwind", "Flexible"], url: "https://ui.shadcn.com" },
|
|
],
|
|
},
|
|
];
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Surface section
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function SurfaceSection({
|
|
surface,
|
|
selectedThemeId,
|
|
lockedThemeId,
|
|
onSelect,
|
|
onLock,
|
|
onUnlock,
|
|
saving,
|
|
}: {
|
|
surface: Surface;
|
|
selectedThemeId: string | null;
|
|
lockedThemeId: string | null;
|
|
onSelect: (themeId: string) => void;
|
|
onLock: () => void;
|
|
onUnlock: () => void;
|
|
saving: boolean;
|
|
}) {
|
|
const previewId = lockedThemeId ?? selectedThemeId ?? surface.themes[0]?.id ?? null;
|
|
const activeTheme = surface.themes.find(t => t.id === previewId);
|
|
const ScaffoldComponent = previewId ? SCAFFOLD_REGISTRY[surface.id]?.[previewId] : null;
|
|
|
|
const availableColorThemes: ThemeColor[] = previewId
|
|
? (THEME_REGISTRY[surface.id]?.[previewId] ?? [])
|
|
: [];
|
|
const [selectedColorTheme, setSelectedColorTheme] = useState<ThemeColor | null>(null);
|
|
const activeColorTheme = selectedColorTheme ?? availableColorThemes[0] ?? null;
|
|
|
|
const isLocked = !!lockedThemeId;
|
|
|
|
return (
|
|
<div style={{ display: "flex", flexDirection: "column", height: "100%", gap: 0 }}>
|
|
|
|
{/* Browser chrome + scaffold */}
|
|
<div style={{
|
|
flex: 1, borderRadius: 10, overflow: "hidden",
|
|
border: "1px solid #e8e4dc",
|
|
boxShadow: "0 1px 4px #1a1a1a06",
|
|
display: "flex", flexDirection: "column",
|
|
minHeight: 460,
|
|
}}>
|
|
{/* Chrome bar */}
|
|
<div style={{
|
|
display: "flex", alignItems: "center", gap: 6,
|
|
padding: "0 14px", height: 34, flexShrink: 0,
|
|
borderBottom: "1px solid #e8e4dc", background: "#faf8f5",
|
|
}}>
|
|
{["#d0ccc4", "#d0ccc4", "#d0ccc4"].map((c, i) => (
|
|
<div key={i} style={{ width: 9, height: 9, borderRadius: "50%", background: c }} />
|
|
))}
|
|
<div style={{
|
|
marginLeft: 12, flex: 1, maxWidth: 280, height: 20, borderRadius: 5,
|
|
background: "#f0ece4", display: "flex", alignItems: "center", padding: "0 10px",
|
|
}}>
|
|
<span style={{ fontSize: "0.65rem", color: "#b5b0a6", fontFamily: "IBM Plex Mono", overflow: "hidden", whiteSpace: "nowrap", textOverflow: "ellipsis" }}>
|
|
{activeTheme ? `/${surface.id} · ${activeTheme.name}${activeColorTheme ? ` · ${activeColorTheme.label}` : ""}` : ""}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Scaffold */}
|
|
<div style={{ flex: 1, overflow: "hidden" }}>
|
|
{ScaffoldComponent
|
|
? <ScaffoldComponent themeColor={activeColorTheme ?? undefined} />
|
|
: (
|
|
<div style={{ height: "100%", display: "flex", alignItems: "center", justifyContent: "center", color: "#b5b0a6", fontSize: "0.82rem", fontFamily: "Outfit" }}>
|
|
Select a library below to preview
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Controls below render */}
|
|
<div style={{ flexShrink: 0, paddingTop: 18, display: "flex", flexDirection: "column", gap: 14 }}>
|
|
|
|
{/* Library tabs */}
|
|
<div style={{ display: "flex", gap: 6, flexWrap: "wrap" }}>
|
|
{surface.themes.map(theme => {
|
|
const isActive = theme.id === previewId;
|
|
const isThisLocked = theme.id === lockedThemeId;
|
|
return (
|
|
<button
|
|
key={theme.id}
|
|
onClick={() => { if (!isLocked) { onSelect(theme.id); setSelectedColorTheme(null); } }}
|
|
disabled={isLocked && !isThisLocked}
|
|
style={{
|
|
display: "flex", alignItems: "center", gap: 5,
|
|
padding: "6px 14px", borderRadius: 6, border: "1px solid",
|
|
fontSize: "0.78rem", fontWeight: isActive ? 600 : 500,
|
|
fontFamily: "Outfit", cursor: isLocked && !isThisLocked ? "not-allowed" : "pointer",
|
|
transition: "all 0.12s",
|
|
borderColor: isActive ? "#1a1a1a" : "#e0dcd4",
|
|
background: isActive ? "#1a1a1a" : "#fff",
|
|
color: isActive ? "#fff" : isLocked && !isThisLocked ? "#c5c0b8" : "#6b6560",
|
|
opacity: isLocked && !isThisLocked ? 0.4 : 1,
|
|
}}
|
|
>
|
|
{isThisLocked && <span style={{ fontSize: "0.65rem" }}>🔒</span>}
|
|
{theme.name}
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
{/* Color swatches */}
|
|
{availableColorThemes.length > 0 && (
|
|
<div style={{ display: "flex", alignItems: "center", gap: 10 }}>
|
|
<span style={{ fontSize: "0.68rem", fontWeight: 600, color: "#a09a90", textTransform: "uppercase", letterSpacing: "0.08em", fontFamily: "Outfit" }}>Theme</span>
|
|
<div style={{ display: "flex", gap: 6, flexWrap: "wrap", alignItems: "center" }}>
|
|
{availableColorThemes.map(ct => (
|
|
<button
|
|
key={ct.id}
|
|
title={ct.label}
|
|
onClick={() => !isLocked && setSelectedColorTheme(ct)}
|
|
disabled={isLocked}
|
|
style={{
|
|
width: 20, height: 20, borderRadius: "50%", border: "none", cursor: isLocked ? "not-allowed" : "pointer",
|
|
background: ct.bg ? `linear-gradient(135deg, ${ct.bg} 50%, ${ct.primary} 50%)` : ct.primary,
|
|
outline: activeColorTheme?.id === ct.id ? `2px solid ${ct.primary}` : "none",
|
|
outlineOffset: 2, transition: "transform 0.12s",
|
|
opacity: isLocked ? 0.4 : 1,
|
|
}}
|
|
onMouseEnter={e => { if (!isLocked) (e.currentTarget as HTMLElement).style.transform = "scale(1.15)"; }}
|
|
onMouseLeave={e => { (e.currentTarget as HTMLElement).style.transform = "scale(1)"; }}
|
|
/>
|
|
))}
|
|
{activeColorTheme && (
|
|
<span style={{ fontSize: "0.72rem", color: "#a09a90", fontFamily: "Outfit" }}>{activeColorTheme.label}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Description + tags + docs + lock-in */}
|
|
<div style={{ display: "flex", alignItems: "center", gap: 12, paddingTop: 4, borderTop: "1px solid #f0ece4" }}>
|
|
{activeTheme && (
|
|
<>
|
|
<p style={{ flex: 1, fontSize: "0.78rem", color: "#8a8478", lineHeight: 1.5, fontFamily: "Outfit" }}>
|
|
{activeTheme.description}
|
|
</p>
|
|
<div style={{ display: "flex", gap: 4 }}>
|
|
{activeTheme.tags.map(t => (
|
|
<span key={t} style={{ padding: "3px 8px", borderRadius: 4, fontSize: "0.65rem", fontWeight: 600, color: "#6b6560", background: "#f0ece4", fontFamily: "Outfit" }}>
|
|
{t}
|
|
</span>
|
|
))}
|
|
</div>
|
|
<a
|
|
href={activeTheme.url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
style={{ fontSize: "0.75rem", color: "#a09a90", textDecoration: "none", fontFamily: "Outfit", flexShrink: 0 }}
|
|
onMouseEnter={e => (e.currentTarget.style.color = "#1a1a1a")}
|
|
onMouseLeave={e => (e.currentTarget.style.color = "#a09a90")}
|
|
>
|
|
Docs ↗
|
|
</a>
|
|
</>
|
|
)}
|
|
{isLocked ? (
|
|
<button
|
|
onClick={onUnlock}
|
|
style={{
|
|
padding: "7px 14px", borderRadius: 7, border: "1px solid #e0dcd4",
|
|
background: "#fff", color: "#1a1a1a", fontSize: "0.76rem", fontWeight: 600,
|
|
fontFamily: "Outfit", cursor: "pointer", flexShrink: 0, transition: "opacity 0.15s",
|
|
}}
|
|
onMouseEnter={e => (e.currentTarget.style.opacity = "0.7")}
|
|
onMouseLeave={e => (e.currentTarget.style.opacity = "1")}
|
|
>
|
|
✎ Change
|
|
</button>
|
|
) : (
|
|
<button
|
|
onClick={onLock}
|
|
disabled={!selectedThemeId || saving}
|
|
style={{
|
|
padding: "7px 14px", borderRadius: 7, border: "1px solid #1a1a1a",
|
|
background: !selectedThemeId || saving ? "#e0dcd4" : "#1a1a1a",
|
|
color: !selectedThemeId || saving ? "#b5b0a6" : "#fff",
|
|
fontSize: "0.76rem", fontWeight: 600, fontFamily: "Outfit",
|
|
cursor: !selectedThemeId || saving ? "not-allowed" : "pointer",
|
|
flexShrink: 0, transition: "opacity 0.15s",
|
|
}}
|
|
onMouseEnter={e => { if (selectedThemeId && !saving) (e.currentTarget.style.opacity = "0.8"); }}
|
|
onMouseLeave={e => { (e.currentTarget.style.opacity = "1"); }}
|
|
>
|
|
{saving ? "Saving…" : "🔒 Lock in"}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Phase 1 — Surface picker
|
|
// ---------------------------------------------------------------------------
|
|
|
|
function SurfacePicker({ onConfirm, saving }: { onConfirm: (ids: string[]) => void; saving: boolean }) {
|
|
const [selected, setSelected] = useState<Set<string>>(new Set());
|
|
|
|
const toggle = (id: string) => {
|
|
setSelected(prev => {
|
|
const next = new Set(prev);
|
|
next.has(id) ? next.delete(id) : next.add(id);
|
|
return next;
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div style={{ padding: "28px 32px", fontFamily: "Outfit, sans-serif", animation: "enter 0.3s ease" }}>
|
|
<h3 style={{ fontFamily: "Newsreader, serif", fontSize: "1.2rem", fontWeight: 400, color: "#1a1a1a", marginBottom: 4 }}>
|
|
Design surfaces
|
|
</h3>
|
|
<p style={{ fontSize: "0.8rem", color: "#a09a90", marginBottom: 24 }}>
|
|
Which surfaces does your product need? Select all that apply.
|
|
</p>
|
|
|
|
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(220px, 1fr))", gap: 8, marginBottom: 24 }}>
|
|
{ALL_SURFACES.map(surface => {
|
|
const isSelected = selected.has(surface.id);
|
|
return (
|
|
<button
|
|
key={surface.id}
|
|
onClick={() => toggle(surface.id)}
|
|
style={{
|
|
display: "flex", alignItems: "flex-start", gap: 14,
|
|
padding: "16px 18px", borderRadius: 10, textAlign: "left",
|
|
border: `1px solid ${isSelected ? "#1a1a1a" : "#e8e4dc"}`,
|
|
background: isSelected ? "#1a1a1a08" : "#fff",
|
|
boxShadow: isSelected ? "0 0 0 1px #1a1a1a" : "0 1px 2px #1a1a1a05",
|
|
cursor: "pointer", transition: "all 0.12s", fontFamily: "Outfit",
|
|
}}
|
|
onMouseEnter={e => { if (!isSelected) (e.currentTarget.style.borderColor = "#d0ccc4"); }}
|
|
onMouseLeave={e => { if (!isSelected) (e.currentTarget.style.borderColor = "#e8e4dc"); }}
|
|
>
|
|
<div style={{
|
|
width: 34, height: 34, borderRadius: 8, flexShrink: 0, marginTop: 1,
|
|
background: isSelected ? "#1a1a1a" : "#f6f4f0",
|
|
display: "flex", alignItems: "center", justifyContent: "center",
|
|
fontSize: "1rem", color: isSelected ? "#fff" : "#8a8478",
|
|
}}>
|
|
{surface.icon}
|
|
</div>
|
|
<div style={{ flex: 1, minWidth: 0 }}>
|
|
<div style={{ fontSize: "0.84rem", fontWeight: 600, color: "#1a1a1a", marginBottom: 3 }}>{surface.name}</div>
|
|
<div style={{ fontSize: "0.74rem", color: "#8a8478", lineHeight: 1.5 }}>{surface.description}</div>
|
|
</div>
|
|
{isSelected && (
|
|
<span style={{ flexShrink: 0, color: "#1a1a1a", fontSize: "0.85rem", marginTop: 2 }}>✓</span>
|
|
)}
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
<button
|
|
onClick={() => onConfirm(Array.from(selected))}
|
|
disabled={selected.size === 0 || saving}
|
|
style={{
|
|
padding: "9px 20px", borderRadius: 7, border: "none",
|
|
background: selected.size === 0 || saving ? "#e0dcd4" : "#1a1a1a",
|
|
color: selected.size === 0 || saving ? "#b5b0a6" : "#fff",
|
|
fontSize: "0.82rem", fontWeight: 600, fontFamily: "Outfit",
|
|
cursor: selected.size === 0 || saving ? "not-allowed" : "pointer",
|
|
transition: "opacity 0.15s",
|
|
}}
|
|
onMouseEnter={e => { if (selected.size > 0 && !saving) (e.currentTarget.style.opacity = "0.8"); }}
|
|
onMouseLeave={e => { (e.currentTarget.style.opacity = "1"); }}
|
|
>
|
|
{saving ? "Saving…" : `Confirm surfaces (${selected.size})`} →
|
|
</button>
|
|
{selected.size === 0 && (
|
|
<p style={{ display: "inline-block", marginLeft: 12, fontSize: "0.74rem", color: "#b5b0a6", fontFamily: "Outfit" }}>
|
|
Select at least one surface to continue
|
|
</p>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Page
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export default function DesignPage({ params }: { params: Promise<{ workspace: string; projectId: string }> }) {
|
|
const { projectId } = use(params);
|
|
|
|
const [surfaces, setSurfaces] = useState<string[]>([]);
|
|
const [surfaceThemes, setSurfaceThemes] = useState<Record<string, string>>({});
|
|
const [selectedThemes, setSelectedThemes] = useState<Record<string, string>>({});
|
|
const [activeSurfaceId, setActiveSurfaceId] = useState<string | null>(null);
|
|
const [savingLock, setSavingLock] = useState<string | null>(null);
|
|
const [savingSurfaces, setSavingSurfaces] = useState(false);
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
fetch(`/api/projects/${projectId}/design-surfaces`)
|
|
.then(r => r.json())
|
|
.then(d => {
|
|
const loaded = (d.surfaces ?? []) as string[];
|
|
setSurfaces(loaded);
|
|
setSurfaceThemes(d.surfaceThemes ?? {});
|
|
setSelectedThemes(d.surfaceThemes ?? {});
|
|
if (loaded.length > 0) setActiveSurfaceId(loaded[0]);
|
|
})
|
|
.catch(() => toast.error("Failed to load design data"))
|
|
.finally(() => setLoading(false));
|
|
}, [projectId]);
|
|
|
|
const handleConfirmSurfaces = async (ids: string[]) => {
|
|
setSavingSurfaces(true);
|
|
try {
|
|
const res = await fetch(`/api/projects/${projectId}/design-surfaces`, {
|
|
method: "PATCH",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ surfaces: ids }),
|
|
});
|
|
if (!res.ok) throw new Error();
|
|
setSurfaces(ids);
|
|
setActiveSurfaceId(ids[0] ?? null);
|
|
toast.success("Surfaces saved");
|
|
} catch {
|
|
toast.error("Failed to save surfaces");
|
|
} finally {
|
|
setSavingSurfaces(false);
|
|
}
|
|
};
|
|
|
|
const handleLock = async (surfaceId: string) => {
|
|
const themeId = selectedThemes[surfaceId];
|
|
if (!themeId) return;
|
|
setSavingLock(surfaceId);
|
|
try {
|
|
const res = await fetch(`/api/projects/${projectId}/design-surfaces`, {
|
|
method: "PATCH",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ surface: surfaceId, theme: themeId }),
|
|
});
|
|
if (!res.ok) throw new Error();
|
|
setSurfaceThemes(prev => ({ ...prev, [surfaceId]: themeId }));
|
|
const surface = ALL_SURFACES.find(s => s.id === surfaceId);
|
|
const theme = surface?.themes.find(t => t.id === themeId);
|
|
toast.success(`${surface?.name} → ${theme?.name} locked in`);
|
|
} catch {
|
|
toast.error("Failed to lock in theme");
|
|
} finally {
|
|
setSavingLock(null);
|
|
}
|
|
};
|
|
|
|
const handleUnlock = (surfaceId: string) => {
|
|
setSurfaceThemes(prev => { const next = { ...prev }; delete next[surfaceId]; return next; });
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div style={{ display: "flex", alignItems: "center", justifyContent: "center", height: "100%", fontFamily: "Outfit" }}>
|
|
<div style={{ width: 18, height: 18, borderRadius: "50%", border: "2px solid #e8e4dc", borderTopColor: "#1a1a1a", animation: "spin 0.8s linear infinite" }} />
|
|
<style>{`@keyframes spin { to { transform: rotate(360deg); } }`}</style>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (surfaces.length === 0) {
|
|
return <SurfacePicker onConfirm={handleConfirmSurfaces} saving={savingSurfaces} />;
|
|
}
|
|
|
|
const activeSurfaces = ALL_SURFACES.filter(s => surfaces.includes(s.id));
|
|
const currentSurface = activeSurfaces.find(s => s.id === activeSurfaceId) ?? activeSurfaces[0];
|
|
const lockedCount = Object.keys(surfaceThemes).length;
|
|
|
|
return (
|
|
<div style={{ display: "flex", height: "100%", fontFamily: "Outfit, sans-serif" }}>
|
|
|
|
{/* Left nav */}
|
|
<div style={{ width: 180, flexShrink: 0, borderRight: "1px solid #e8e4dc", display: "flex", flexDirection: "column", background: "#fff" }}>
|
|
<div style={{ padding: "16px 18px 10px", borderBottom: "1px solid #f0ece4" }}>
|
|
<div style={{ fontSize: "0.6rem", fontWeight: 600, color: "#a09a90", letterSpacing: "0.1em", textTransform: "uppercase" }}>Surfaces</div>
|
|
</div>
|
|
|
|
<nav style={{ flex: 1, padding: "6px 8px", overflow: "auto" }}>
|
|
{activeSurfaces.map(surface => {
|
|
const isActive = surface.id === currentSurface?.id;
|
|
const isLocked = !!surfaceThemes[surface.id];
|
|
return (
|
|
<button
|
|
key={surface.id}
|
|
onClick={() => setActiveSurfaceId(surface.id)}
|
|
style={{
|
|
display: "flex", alignItems: "center", gap: 8, width: "100%",
|
|
padding: "8px 10px", borderRadius: 6, border: "none", textAlign: "left",
|
|
background: isActive ? "#f6f4f0" : "transparent",
|
|
color: isActive ? "#1a1a1a" : "#6b6560",
|
|
fontSize: "0.8rem", fontWeight: isActive ? 600 : 450,
|
|
cursor: "pointer", transition: "all 0.12s", position: "relative",
|
|
fontFamily: "Outfit",
|
|
}}
|
|
onMouseEnter={e => { if (!isActive) (e.currentTarget.style.background = "#f6f4f0"); }}
|
|
onMouseLeave={e => { if (!isActive) (e.currentTarget.style.background = "transparent"); }}
|
|
>
|
|
{isActive && (
|
|
<div style={{ position: "absolute", left: 0, top: "50%", transform: "translateY(-50%)", width: 2, height: 16, background: "#1a1a1a", borderRadius: "0 2px 2px 0" }} />
|
|
)}
|
|
<span style={{ fontSize: "0.9rem", opacity: 0.5, flexShrink: 0 }}>{surface.icon}</span>
|
|
<span style={{ flex: 1, overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap" }}>{surface.name}</span>
|
|
{isLocked && <span style={{ fontSize: "0.6rem", flexShrink: 0, opacity: 0.5 }}>🔒</span>}
|
|
</button>
|
|
);
|
|
})}
|
|
</nav>
|
|
|
|
<div style={{ padding: "12px 18px", borderTop: "1px solid #f0ece4" }}>
|
|
{lockedCount === activeSurfaces.length && lockedCount > 0 && (
|
|
<p style={{ fontSize: "0.68rem", color: "#2e7d32", fontFamily: "Outfit", marginBottom: 6 }}>✓ All locked</p>
|
|
)}
|
|
<button
|
|
onClick={() => setSurfaces([])}
|
|
style={{ fontSize: "0.72rem", color: "#a09a90", background: "none", border: "none", cursor: "pointer", fontFamily: "Outfit", padding: 0 }}
|
|
onMouseEnter={e => (e.currentTarget.style.color = "#1a1a1a")}
|
|
onMouseLeave={e => (e.currentTarget.style.color = "#a09a90")}
|
|
>
|
|
+ Edit surfaces
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Main content */}
|
|
<div style={{ flex: 1, overflow: "auto", padding: "24px 28px" }}>
|
|
{currentSurface && (
|
|
<SurfaceSection
|
|
surface={currentSurface}
|
|
selectedThemeId={selectedThemes[currentSurface.id] ?? null}
|
|
lockedThemeId={surfaceThemes[currentSurface.id] ?? null}
|
|
onSelect={themeId => setSelectedThemes(prev => ({ ...prev, [currentSurface.id]: themeId }))}
|
|
onLock={() => handleLock(currentSurface.id)}
|
|
onUnlock={() => handleUnlock(currentSurface.id)}
|
|
saving={savingLock === currentSurface.id}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|