2026-06-11 17:39:24 +02:00
|
|
|
import { useRef, useState } from "react";
|
2026-06-11 02:19:47 +02:00
|
|
|
import {
|
|
|
|
|
LayoutGrid,
|
|
|
|
|
List,
|
|
|
|
|
LogOut,
|
|
|
|
|
Moon,
|
|
|
|
|
Palette,
|
|
|
|
|
Search,
|
2026-06-11 17:39:24 +02:00
|
|
|
Shield,
|
2026-06-11 02:19:47 +02:00
|
|
|
Sun,
|
|
|
|
|
} from "lucide-react";
|
|
|
|
|
import { SCHEMES, type Scheme, type ThemePrefs } from "../lib/theme";
|
|
|
|
|
import type { FeedFilters, Me } from "../lib/api";
|
2026-06-11 04:15:25 +02:00
|
|
|
import SyncStatus from "./SyncStatus";
|
2026-06-11 19:26:34 +02:00
|
|
|
import NotificationCenter from "./NotificationCenter";
|
2026-06-11 02:19:47 +02:00
|
|
|
|
|
|
|
|
function IconBtn(props: React.ButtonHTMLAttributes<HTMLButtonElement>) {
|
|
|
|
|
const { className = "", ...rest } = props;
|
|
|
|
|
return (
|
|
|
|
|
<button
|
|
|
|
|
{...rest}
|
|
|
|
|
className={`p-2 rounded-lg text-muted hover:text-fg hover:bg-card transition ${className}`}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function ThemeMenu({
|
|
|
|
|
theme,
|
|
|
|
|
setTheme,
|
|
|
|
|
}: {
|
|
|
|
|
theme: ThemePrefs;
|
|
|
|
|
setTheme: (t: ThemePrefs) => void;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="absolute right-0 mt-2 w-60 rounded-xl border border-border bg-surface shadow-2xl p-3 z-30">
|
|
|
|
|
<div className="text-xs uppercase tracking-wide text-muted mb-2">Color scheme</div>
|
|
|
|
|
<div className="grid grid-cols-4 gap-2 mb-3">
|
|
|
|
|
{SCHEMES.map((s) => (
|
|
|
|
|
<button
|
|
|
|
|
key={s.id}
|
|
|
|
|
onClick={() => setTheme({ ...theme, scheme: s.id as Scheme })}
|
|
|
|
|
title={s.name}
|
|
|
|
|
className={`h-9 rounded-lg border-2 transition ${
|
|
|
|
|
theme.scheme === s.id ? "border-fg" : "border-transparent"
|
|
|
|
|
}`}
|
|
|
|
|
style={{ background: s.swatch }}
|
|
|
|
|
/>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-xs uppercase tracking-wide text-muted mb-2">Text size</div>
|
|
|
|
|
<input
|
|
|
|
|
type="range"
|
|
|
|
|
min={0.9}
|
|
|
|
|
max={1.3}
|
|
|
|
|
step={0.02}
|
|
|
|
|
value={theme.fontScale}
|
|
|
|
|
onChange={(e) => setTheme({ ...theme, fontScale: Number(e.target.value) })}
|
|
|
|
|
className="w-full accent-accent"
|
|
|
|
|
/>
|
|
|
|
|
<div className="text-right text-xs text-muted">
|
|
|
|
|
{Math.round(theme.fontScale * 100)}%
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Header({
|
|
|
|
|
me,
|
|
|
|
|
theme,
|
|
|
|
|
setTheme,
|
|
|
|
|
filters,
|
|
|
|
|
setFilters,
|
|
|
|
|
view,
|
|
|
|
|
setView,
|
|
|
|
|
}: {
|
|
|
|
|
me: Me;
|
|
|
|
|
theme: ThemePrefs;
|
|
|
|
|
setTheme: (t: ThemePrefs) => void;
|
|
|
|
|
filters: FeedFilters;
|
|
|
|
|
setFilters: (f: FeedFilters) => void;
|
|
|
|
|
view: "grid" | "list";
|
|
|
|
|
setView: (v: "grid" | "list") => void;
|
|
|
|
|
}) {
|
|
|
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
|
|
|
|
|
|
|
|
async function logout() {
|
|
|
|
|
await fetch("/auth/logout", { method: "POST", credentials: "include" });
|
|
|
|
|
location.reload();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<header className="h-14 shrink-0 border-b border-border bg-surface/80 backdrop-blur flex items-center gap-3 px-4 z-20">
|
|
|
|
|
<div className="text-xl font-bold tracking-tight select-none">
|
|
|
|
|
Sub<span className="text-accent">feed</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-11 04:15:25 +02:00
|
|
|
<SyncStatus />
|
|
|
|
|
|
2026-06-11 02:19:47 +02:00
|
|
|
<div className="flex-1 max-w-xl mx-auto relative">
|
|
|
|
|
<Search className="w-4 h-4 absolute left-3 top-1/2 -translate-y-1/2 text-muted" />
|
|
|
|
|
<input
|
|
|
|
|
value={filters.q}
|
|
|
|
|
onChange={(e) => setFilters({ ...filters, q: e.target.value })}
|
|
|
|
|
placeholder="Search your subscriptions…"
|
|
|
|
|
className="w-full bg-card border border-border rounded-full pl-9 pr-4 py-2 text-sm outline-none focus:border-accent"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
|
<IconBtn
|
|
|
|
|
onClick={() => setView(view === "grid" ? "list" : "grid")}
|
|
|
|
|
title={view === "grid" ? "List view" : "Grid view"}
|
|
|
|
|
>
|
|
|
|
|
{view === "grid" ? <List className="w-5 h-5" /> : <LayoutGrid className="w-5 h-5" />}
|
|
|
|
|
</IconBtn>
|
|
|
|
|
<IconBtn
|
|
|
|
|
onClick={() => setTheme({ ...theme, mode: theme.mode === "dark" ? "light" : "dark" })}
|
|
|
|
|
title="Toggle dark / light"
|
|
|
|
|
>
|
|
|
|
|
{theme.mode === "dark" ? <Sun className="w-5 h-5" /> : <Moon className="w-5 h-5" />}
|
|
|
|
|
</IconBtn>
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<IconBtn onClick={() => setMenuOpen((o) => !o)} title="Theme">
|
|
|
|
|
<Palette className="w-5 h-5" />
|
|
|
|
|
</IconBtn>
|
|
|
|
|
{menuOpen && (
|
|
|
|
|
<>
|
|
|
|
|
<div className="fixed inset-0 z-20" onClick={() => setMenuOpen(false)} />
|
|
|
|
|
<ThemeMenu theme={theme} setTheme={setTheme} />
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-06-11 19:46:58 +02:00
|
|
|
<NotificationCenter filters={filters} setFilters={setFilters} />
|
2026-06-11 19:26:34 +02:00
|
|
|
|
2026-06-11 17:39:24 +02:00
|
|
|
<div className="pl-1">
|
|
|
|
|
<AccountMenu me={me} logout={logout} />
|
2026-06-11 02:19:47 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|
2026-06-11 17:39:24 +02:00
|
|
|
|
|
|
|
|
function Avatar({ me, className = "" }: { me: Me; className?: string }) {
|
|
|
|
|
return me.avatar_url ? (
|
|
|
|
|
<img src={me.avatar_url} alt="" className={`rounded-full ${className}`} />
|
|
|
|
|
) : (
|
|
|
|
|
<div className={`rounded-full bg-card grid place-items-center font-semibold ${className}`}>
|
|
|
|
|
{(me.display_name?.[0] ?? me.email[0] ?? "?").toUpperCase()}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function AccountMenu({ me, logout }: { me: Me; logout: () => void }) {
|
|
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
|
const closeTimer = useRef<ReturnType<typeof setTimeout> | null>(null);
|
|
|
|
|
|
|
|
|
|
function openNow() {
|
|
|
|
|
if (closeTimer.current) clearTimeout(closeTimer.current);
|
|
|
|
|
setOpen(true);
|
|
|
|
|
}
|
|
|
|
|
function closeSoon() {
|
|
|
|
|
closeTimer.current = setTimeout(() => setOpen(false), 220);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className="relative"
|
|
|
|
|
onMouseEnter={openNow}
|
|
|
|
|
onMouseLeave={closeSoon}
|
|
|
|
|
>
|
|
|
|
|
<button
|
|
|
|
|
onClick={() => setOpen((o) => !o)}
|
|
|
|
|
title={me.email}
|
|
|
|
|
className="block rounded-full ring-2 ring-transparent hover:ring-border focus:outline-none focus:ring-accent transition"
|
|
|
|
|
>
|
|
|
|
|
<Avatar me={me} className="w-8 h-8 text-xs" />
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
{open && (
|
|
|
|
|
<div className="absolute right-0 mt-2 w-64 rounded-xl border border-border bg-surface shadow-2xl p-3 z-30">
|
|
|
|
|
<div className="flex items-center gap-3 pb-3 border-b border-border">
|
|
|
|
|
<Avatar me={me} className="w-10 h-10 text-sm shrink-0" />
|
|
|
|
|
<div className="min-w-0">
|
|
|
|
|
<div className="text-sm font-semibold truncate">
|
|
|
|
|
{me.display_name ?? me.email.split("@")[0]}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-xs text-muted truncate">{me.email}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{me.role === "admin" && (
|
|
|
|
|
<div className="flex items-center gap-1.5 mt-2 text-[11px] font-medium text-accent">
|
|
|
|
|
<Shield className="w-3.5 h-3.5" />
|
|
|
|
|
Admin
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
onClick={logout}
|
|
|
|
|
className="mt-2 w-full flex items-center gap-2 text-sm px-2 py-2 rounded-lg text-muted hover:text-fg hover:bg-card transition"
|
|
|
|
|
>
|
|
|
|
|
<LogOut className="w-4 h-4" />
|
|
|
|
|
Sign out
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|