Merge sidebar-redesign: new mobile nav tabs, hamburger drawer, onboarding theme presets

This commit is contained in:
Mary Kate Fain
2026-02-25 19:48:55 -06:00
6 changed files with 282 additions and 360 deletions
+8 -2
View File
@@ -227,8 +227,14 @@ const THEMES: ThemeOption[] = [
{ id: 'system', label: 'System', description: 'Matches your device', preview: '', splitPreview: true, builtinTheme: 'system' },
{ id: 'dark', label: 'Dark', description: 'Deep purple dark theme', preview: 'bg-[hsl(228,20%,10%)]', builtinTheme: 'dark' },
{ id: 'light', label: 'Light', description: 'Clean and bright', preview: 'bg-white border border-border', builtinTheme: 'light' },
{ id: 'black', label: 'Black', description: 'True OLED black', preview: 'bg-black', presetId: 'black' },
{ id: 'pink', label: 'Pink', description: 'Warm and playful', preview: 'bg-[hsl(330,100%,96%)]', presetId: 'pink' },
// Generate entries from all theme presets
...Object.entries(themePresets).map(([id, preset]) => ({
id,
label: preset.label,
description: `${preset.emoji} ${preset.label} theme`,
preview: `bg-[hsl(${preset.tokens.background})]`,
presetId: id,
})),
];
interface ContentKind {
+218 -65
View File
@@ -1,6 +1,11 @@
import { useCallback, useMemo, useState } from 'react';
import { Link, useLocation } from 'react-router-dom';
import { Home, Compass, Bell, User, Search, TrendingUp, Bookmark, Clapperboard, BarChart3, Palette, PartyPopper, Radio, FileText } from 'lucide-react';
import { Home, Compass, Bell, User, Search, Bookmark, TrendingUp, Clapperboard, BarChart3, Palette, PartyPopper, Radio, FileText, Pencil, GripVertical, X, Plus } from 'lucide-react';
import LoginDialog from '@/components/auth/LoginDialog';
import { useOnboarding } from '@/components/InitialSyncGate';
import { DndContext, closestCenter, TouchSensor, PointerSensor, useSensor, useSensors, type DragEndEvent } from '@dnd-kit/core';
import { SortableContext, verticalListSortingStrategy, useSortable, arrayMove } from '@dnd-kit/sortable';
import { CSS } from '@dnd-kit/utilities';
import { Drawer, DrawerContent, DrawerTitle } from '@/components/ui/drawer';
import { ChestIcon } from '@/components/icons/ChestIcon';
import { CardsIcon } from '@/components/icons/CardsIcon';
@@ -90,21 +95,95 @@ function NavTab({ icon, label, active, showIndicator, onClick, to }: NavTabProps
);
}
// ── Sortable explore item (edit mode) ─────────────────────────────────────────
interface SortableExploreSheetItemProps {
id: string;
onRemove: (id: string) => void;
}
function SortableExploreSheetItem({ id, onRemove }: SortableExploreSheetItemProps) {
const {
attributes,
listeners,
setNodeRef,
transform,
transition,
isDragging,
} = useSortable({ id });
const style = {
transform: CSS.Transform.toString(transform),
transition,
};
const icon = ITEM_ICONS[id] ?? <Palette className="size-5" />;
const label = itemLabel(id);
return (
<div
ref={setNodeRef}
style={style}
className={cn(
'flex items-center rounded-lg transition-colors',
isDragging && 'z-10 opacity-80 shadow-lg bg-background',
)}
>
<button
className="flex items-center justify-center w-8 shrink-0 py-3 cursor-grab active:cursor-grabbing text-muted-foreground hover:text-foreground transition-colors touch-none"
{...attributes}
{...listeners}
>
<GripVertical className="size-4" />
</button>
<div className="flex items-center gap-3 py-3 flex-1 min-w-0 text-[15px]">
<span className="text-muted-foreground shrink-0">{icon}</span>
<span className="font-medium truncate">{label}</span>
</div>
<button
onClick={() => onRemove(id)}
className="flex items-center justify-center size-8 shrink-0 rounded-full text-muted-foreground hover:text-destructive hover:bg-destructive/10 transition-colors"
>
<X className="size-4" />
</button>
</div>
);
}
// ── Main component ────────────────────────────────────────────────────────────
export function MobileBottomNav() {
const location = useLocation();
const { user, metadata } = useCurrentUser();
const hasUnread = useHasUnreadNotifications();
const { orderedItems } = useFeedSettings();
const {
orderedItems, hiddenItems, updateSidebarOrder, addToSidebar, removeFromSidebar,
} = useFeedSettings();
const userProfileUrl = useProfileUrl(user?.pubkey ?? '', metadata);
const { startSignup } = useOnboarding();
const [exploreOpen, setExploreOpen] = useState(false);
const [editing, setEditing] = useState(false);
const [loginDialogOpen, setLoginDialogOpen] = useState(false);
const handleHomeClick = useCallback(() => {
if (location.pathname === '/') {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
}, [location.pathname]);
// DnD sensors — touch sensor with delay to distinguish scroll from drag
const sensors = useSensors(
useSensor(TouchSensor, { activationConstraint: { delay: 150, tolerance: 5 } }),
useSensor(PointerSensor, { activationConstraint: { distance: 5 } }),
);
const handleDragEnd = useCallback((event: DragEndEvent) => {
const { active, over } = event;
if (!over || active.id === over.id) return;
const oldIndex = orderedItems.indexOf(active.id as string);
const newIndex = orderedItems.indexOf(over.id as string);
if (oldIndex === -1 || newIndex === -1) return;
const newOrder = arrayMove(orderedItems, oldIndex, newIndex);
updateSidebarOrder(newOrder);
}, [orderedItems, updateSidebarOrder]);
// Build explore items from ordered items (includes built-ins)
const exploreItems = useMemo(() => {
@@ -116,88 +195,162 @@ export function MobileBottomNav() {
}));
}, [orderedItems]);
// Check if current path matches any explore route (excluding __feed which is the Home tab)
// Check if current path matches any explore route
const isExploreActive = orderedItems.some((id) =>
id !== '__feed' && isItemActive(id, location.pathname, location.search),
isItemActive(id, location.pathname, location.search),
);
const handleDrawerClose = (open: boolean) => {
if (!open) setEditing(false);
setExploreOpen(open);
};
return (
<>
<nav className="fixed bottom-0 left-0 right-0 z-20 flex items-center bg-background/80 backdrop-blur-md border-t border-border sidebar:hidden safe-area-bottom">
<NavTab
to="/"
icon={<Home className="size-5" />}
label="Home"
active={location.pathname === '/'}
onClick={handleHomeClick}
/>
{user ? (
<NavTab
to={userProfileUrl}
icon={<User className="size-5" />}
label="You"
active={location.pathname === userProfileUrl}
/>
) : (
<NavTab
icon={<User className="size-5" />}
label="You"
active={false}
onClick={() => setLoginDialogOpen(true)}
/>
)}
{user && (
<NavTab
to="/notifications"
icon={<Bell className="size-5" />}
label="Notifications"
active={location.pathname === '/notifications'}
showIndicator={hasUnread}
/>
)}
<NavTab
icon={<Compass className="size-5" />}
label="Explore"
active={isExploreActive}
onClick={() => setExploreOpen(true)}
/>
{user ? (
<>
<NavTab
to="/notifications"
icon={<Bell className="size-5" />}
label="Notifications"
active={location.pathname === '/notifications'}
showIndicator={hasUnread}
/>
<NavTab
to={userProfileUrl}
icon={<User className="size-5" />}
label="You"
active={location.pathname === userProfileUrl}
/>
</>
) : (
<NavTab
to="/search"
icon={<Search className="size-5" />}
label="Search"
active={location.pathname === '/search'}
/>
)}
<NavTab
to="/search"
icon={<Search className="size-5" />}
label="Search"
active={location.pathname === '/search'}
/>
</nav>
{/* Explore bottom sheet */}
<Drawer open={exploreOpen} onOpenChange={setExploreOpen} dismissible>
<Drawer open={exploreOpen} onOpenChange={handleDrawerClose} dismissible>
<DrawerContent className="max-h-[60vh]">
<DrawerTitle className="sr-only">Explore</DrawerTitle>
<div className="px-4 pt-2 pb-6">
<h3 className="text-sm font-semibold uppercase tracking-wider text-accent/70 mb-3 px-2">
Explore
</h3>
{exploreItems.length > 0 ? (
<div className="grid grid-cols-2 gap-1">
{exploreItems.map((item) => (
<Link
key={item.id}
to={item.path}
onClick={() => setExploreOpen(false)}
className={cn(
'flex items-center gap-3 px-4 py-3.5 rounded-xl transition-colors',
isItemActive(item.id, location.pathname, location.search)
? 'text-accent font-semibold'
: 'text-foreground hover:bg-secondary/60',
)}
{/* Section header with edit toggle */}
<div className="flex items-center gap-2 px-2 mb-3">
<span className="text-sm font-semibold uppercase tracking-wider text-accent/70">
Explore
</span>
<div className="flex-1 h-px bg-border/50" />
<button
onClick={() => setEditing(!editing)}
className={cn(
'text-xs font-medium transition-colors px-2 py-0.5 rounded-full',
editing
? 'text-primary hover:bg-primary/10'
: 'text-muted-foreground/70 hover:text-muted-foreground hover:bg-secondary/60',
)}
>
{editing ? 'Done' : <Pencil className="size-3.5" />}
</button>
</div>
{editing ? (
/* ── Edit mode: single-column sortable list ── */
<>
<DndContext
sensors={sensors}
collisionDetection={closestCenter}
onDragEnd={handleDragEnd}
>
<SortableContext
items={orderedItems}
strategy={verticalListSortingStrategy}
>
<span className="shrink-0 text-muted-foreground">{item.icon}</span>
<span className="text-[15px] truncate">{item.label}</span>
</Link>
))}
</div>
{orderedItems.map((id) => (
<SortableExploreSheetItem
key={id}
id={id}
onRemove={removeFromSidebar}
/>
))}
</SortableContext>
</DndContext>
{/* Add hidden items back */}
{hiddenItems.length > 0 && (
<div className="mt-2 space-y-0.5">
{hiddenItems.map((item) => (
<button
key={item.id}
onClick={() => addToSidebar(item.id)}
className="flex items-center gap-3 w-full py-3 px-2 rounded-lg text-[15px] text-muted-foreground/60 hover:text-muted-foreground hover:bg-secondary/40 transition-colors"
>
<Plus className="size-4 ml-2" />
<span className="flex items-center gap-3">
{ITEM_ICONS[item.id] && (
<span className="[&>svg]:size-4">{ITEM_ICONS[item.id]}</span>
)}
<span>{item.label}</span>
</span>
</button>
))}
</div>
)}
</>
) : (
<p className="text-sm text-muted-foreground text-center py-6">
No content sections enabled. Go to Settings to add some.
</p>
/* ── Normal mode: 2-column grid of links ── */
exploreItems.length > 0 ? (
<div className="grid grid-cols-2 gap-1">
{exploreItems.map((item) => (
<Link
key={item.id}
to={item.path}
onClick={() => setExploreOpen(false)}
className={cn(
'flex items-center gap-3 px-4 py-3.5 rounded-xl transition-colors',
isItemActive(item.id, location.pathname, location.search)
? 'text-accent font-semibold'
: 'text-foreground hover:bg-secondary/60',
)}
>
<span className="shrink-0 text-muted-foreground">{item.icon}</span>
<span className="text-[15px] truncate">{item.label}</span>
</Link>
))}
</div>
) : (
<p className="text-sm text-muted-foreground text-center py-6">
No content sections enabled. Tap the pencil to add some.
</p>
)
)}
</div>
</DrawerContent>
</Drawer>
{/* Login dialog for logged-out "You" tab */}
<LoginDialog
isOpen={loginDialogOpen}
onClose={() => setLoginDialogOpen(false)}
onLogin={() => setLoginDialogOpen(false)}
onSignupClick={startSignup}
/>
</>
);
}
+37 -254
View File
@@ -1,144 +1,22 @@
import { Link, useLocation, useNavigate } from 'react-router-dom';
import { useUserThemes } from '@/hooks/useUserThemes';
import { Home, TrendingUp, Bookmark, Settings, LogOut, ChevronDown, ChevronUp, Sun, Moon, Monitor, Clapperboard, BarChart3, Palette, PartyPopper, Radio, FileText, Pencil, GripVertical, X, Plus } from 'lucide-react';
import { DndContext, closestCenter, TouchSensor, PointerSensor, useSensor, useSensors, type DragEndEvent } from '@dnd-kit/core';
import { SortableContext, verticalListSortingStrategy, useSortable, arrayMove } from '@dnd-kit/sortable';
import { CSS } from '@dnd-kit/utilities';
import { Link, useNavigate } from 'react-router-dom';
import { LogOut, ChevronDown, ChevronUp, Sun, Moon, Monitor, Palette } from 'lucide-react';
import { Avatar, AvatarImage, AvatarFallback } from '@/components/ui/avatar';
import { Sheet, SheetContent, SheetTitle } from '@/components/ui/sheet';
import { Separator } from '@/components/ui/separator';
import { ChestIcon } from '@/components/icons/ChestIcon';
import { CardsIcon } from '@/components/icons/CardsIcon';
import { DittoLogo } from '@/components/DittoLogo';
import { useCurrentUser } from '@/hooks/useCurrentUser';
import { useLoginActions } from '@/hooks/useLoginActions';
import { useLoggedInAccounts } from '@/hooks/useLoggedInAccounts';
import { useTheme } from '@/hooks/useTheme';
import { useFeedSettings, getBuiltinItem } from '@/hooks/useFeedSettings';
import { EXTRA_KINDS } from '@/lib/extraKinds';
import { useUserThemes } from '@/hooks/useUserThemes';
import { LoginArea } from '@/components/auth/LoginArea';
import { genUserName } from '@/lib/genUserName';
import { useCallback, useMemo, useState } from 'react';
import { useMemo, useState } from 'react';
import type { Theme } from '@/contexts/AppContext';
import { themePresets, type ThemeTokens } from '@/themes';
import { cn } from '@/lib/utils';
import { settingsSections, type SettingsSection } from '@/pages/SettingsPage';
/** Map item ID to icon for drawer items. Covers both built-ins and extra-kind routes. */
const ITEM_ICONS: Record<string, React.ReactNode> = {
__feed: <Home className="size-5" />,
__trends: <TrendingUp className="size-5" />,
__bookmarks: <Bookmark className="size-5" />,
vines: <Clapperboard className="size-5" />,
polls: <BarChart3 className="size-5" />,
treasures: <ChestIcon className="size-5" />,
colors: <Palette className="size-5" />,
packs: <PartyPopper className="size-5" />,
streams: <Radio className="size-5" />,
articles: <FileText className="size-5" />,
decks: <CardsIcon className="size-5" />,
};
function itemLabel(id: string): string {
const builtin = getBuiltinItem(id);
if (builtin) return builtin.label;
return EXTRA_KINDS.find((d) => d.route === id)?.label ?? id;
}
function itemPath(id: string): string {
const builtin = getBuiltinItem(id);
if (builtin) return builtin.path;
return `/${id}`;
}
// ── Drawer menu item (normal mode) ───────────────────────────────────────────
interface DrawerMenuItemProps {
to: string;
icon: React.ReactNode;
label: string;
onClick: () => void;
}
function DrawerMenuItem({ to, icon, label, onClick }: DrawerMenuItemProps) {
const location = useLocation();
const active = location.pathname === to;
return (
<Link
to={to}
onClick={onClick}
className={cn(
'flex items-center gap-4 py-3.5 px-2 rounded-lg hover:bg-secondary/60 transition-colors text-[15px]',
active ? 'text-accent font-bold' : '',
)}
>
<span className="text-muted-foreground">{icon}</span>
<span className="font-medium">{label}</span>
</Link>
);
}
// ── Sortable drawer item (edit mode) ─────────────────────────────────────────
interface SortableDrawerItemProps {
id: string;
onRemove: (id: string) => void;
}
function SortableDrawerItem({ id, onRemove }: SortableDrawerItemProps) {
const {
attributes,
listeners,
setNodeRef,
transform,
transition,
isDragging,
} = useSortable({ id });
const style = {
transform: CSS.Transform.toString(transform),
transition,
};
const icon = ITEM_ICONS[id] ?? <Palette className="size-5" />;
const label = itemLabel(id);
return (
<div
ref={setNodeRef}
style={style}
className={cn(
'flex items-center rounded-lg transition-colors',
isDragging && 'z-10 opacity-80 shadow-lg bg-background',
)}
>
{/* Drag handle */}
<button
className="flex items-center justify-center w-8 shrink-0 py-3.5 cursor-grab active:cursor-grabbing text-muted-foreground hover:text-foreground transition-colors touch-none"
{...attributes}
{...listeners}
>
<GripVertical className="size-4" />
</button>
{/* Icon + label (non-interactive in edit mode) */}
<div className="flex items-center gap-4 py-3.5 flex-1 min-w-0 text-[15px]">
<span className="text-muted-foreground shrink-0">{icon}</span>
<span className="font-medium truncate">{label}</span>
</div>
{/* Remove button */}
<button
onClick={() => onRemove(id)}
className="flex items-center justify-center size-8 shrink-0 rounded-full text-muted-foreground hover:text-destructive hover:bg-destructive/10 transition-colors"
>
<X className="size-4" />
</button>
</div>
);
}
// ── Mobile drawer props ──────────────────────────────────────────────────────
// ── Mobile drawer ────────────────────────────────────────────────────────────
interface MobileDrawerProps {
open: boolean;
@@ -150,41 +28,13 @@ export function MobileDrawer({ open, onOpenChange }: MobileDrawerProps) {
const { logout } = useLoginActions();
const { otherUsers, setLogin } = useLoggedInAccounts();
const { theme, setTheme, applyCustomTheme, customTheme } = useTheme();
const {
orderedItems, hiddenItems, updateSidebarOrder, addToSidebar, removeFromSidebar,
} = useFeedSettings();
const navigate = useNavigate();
const [showAccountSwitcher, setShowAccountSwitcher] = useState(false);
const [editing, setEditing] = useState(false);
// DnD sensors — touch sensor with delay to distinguish scroll from drag
const sensors = useSensors(
useSensor(TouchSensor, { activationConstraint: { delay: 150, tolerance: 5 } }),
useSensor(PointerSensor, { activationConstraint: { distance: 5 } }),
);
/** Build explore items from ordered items (includes built-ins). */
const exploreItems = useMemo(() => {
return orderedItems.map((id) => ({
id,
to: itemPath(id),
icon: ITEM_ICONS[id] ?? <Palette className="size-5" />,
label: itemLabel(id),
}));
}, [orderedItems]);
/** Handle drag-and-drop reorder. */
const handleDragEnd = useCallback((event: DragEndEvent) => {
const { active, over } = event;
if (!over || active.id === over.id) return;
const oldIndex = orderedItems.indexOf(active.id as string);
const newIndex = orderedItems.indexOf(over.id as string);
if (oldIndex === -1 || newIndex === -1) return;
const newOrder = arrayMove(orderedItems, oldIndex, newIndex);
updateSidebarOrder(newOrder);
}, [orderedItems, updateSidebarOrder]);
/** Settings sections filtered by auth state. */
const visibleSettings = useMemo<SettingsSection[]>(() => {
return settingsSections.filter((s) => !s.requiresAuth || user);
}, [user]);
// Theme cycling logic
const builtinCycle: { id: Theme; label: string; icon: React.ReactNode }[] = [
@@ -268,10 +118,7 @@ export function MobileDrawer({ open, onOpenChange }: MobileDrawerProps) {
}
};
const handleClose = () => {
setEditing(false);
onOpenChange(false);
};
const handleClose = () => onOpenChange(false);
const handleLogout = async () => {
await logout();
@@ -280,8 +127,8 @@ export function MobileDrawer({ open, onOpenChange }: MobileDrawerProps) {
};
return (
<Sheet open={open} onOpenChange={(v) => { if (!v) setEditing(false); onOpenChange(v); }}>
<SheetContent side="left" className="w-[300px] p-0 border-r-border">
<Sheet open={open} onOpenChange={onOpenChange}>
<SheetContent side="right" className="w-[300px] p-0 border-l-border">
<SheetTitle className="sr-only">Navigation menu</SheetTitle>
{user ? (
@@ -297,96 +144,32 @@ export function MobileDrawer({ open, onOpenChange }: MobileDrawerProps) {
{/* Menu items */}
<nav className="flex-1 overflow-y-auto px-3 py-2">
{/* Explore section */}
{(exploreItems.length > 0 || editing) && (
<>
{/* Section header with edit/done toggle */}
<div className="flex items-center gap-2 px-2 pt-3 pb-1">
<span className="text-xs font-semibold uppercase tracking-wider text-accent/70">
Explore
</span>
<div className="flex-1 h-px bg-border/50" />
<button
onClick={() => setEditing(!editing)}
className={cn(
'text-xs font-medium transition-colors px-2 py-0.5 rounded-full',
editing
? 'text-primary hover:bg-primary/10'
: 'text-muted-foreground/70 hover:text-muted-foreground hover:bg-secondary/60',
)}
>
{editing ? 'Done' : <Pencil className="size-3.5" />}
</button>
</div>
{/* Settings section */}
<div className="flex items-center gap-2 px-2 pt-3 pb-1">
<span className="text-xs font-semibold uppercase tracking-wider text-accent/70">
Settings
</span>
<div className="flex-1 h-px bg-border/50" />
</div>
{editing ? (
/* ── Edit mode: sortable items with drag handles + remove ── */
<>
<DndContext
sensors={sensors}
collisionDetection={closestCenter}
onDragEnd={handleDragEnd}
>
<SortableContext
items={orderedItems}
strategy={verticalListSortingStrategy}
>
{orderedItems.map((id) => (
<SortableDrawerItem
key={id}
id={id}
onRemove={removeFromSidebar}
/>
))}
</SortableContext>
</DndContext>
{visibleSettings.map((section) => {
const Icon = section.icon;
return (
<Link
key={section.id}
to={section.path}
onClick={handleClose}
className="flex items-center gap-4 py-3.5 px-2 rounded-lg hover:bg-secondary/60 transition-colors text-[15px]"
>
<span className="text-muted-foreground"><Icon className="size-5" /></span>
<span className="font-medium">{section.label}</span>
</Link>
);
})}
{/* Add hidden items back */}
{hiddenItems.length > 0 && (
<div className="mt-2 space-y-0.5">
{hiddenItems.map((item) => (
<button
key={item.id}
onClick={() => addToSidebar(item.id)}
className="flex items-center gap-4 w-full py-3 px-2 rounded-lg text-[15px] text-muted-foreground/60 hover:text-muted-foreground hover:bg-secondary/40 transition-colors"
>
<Plus className="size-4 ml-2" />
<span className="flex items-center gap-3">
{ITEM_ICONS[item.id] && (
<span className="[&>svg]:size-4">{ITEM_ICONS[item.id]}</span>
)}
<span>{item.label}</span>
</span>
</button>
))}
</div>
)}
</>
) : (
/* ── Normal mode: navigation links ── */
exploreItems.map((item) => (
<DrawerMenuItem
key={item.to}
to={item.to}
icon={item.icon}
label={item.label}
onClick={handleClose}
/>
))
)}
<div className="my-2 mx-2">
<Separator />
</div>
</>
)}
<DrawerMenuItem
to="/settings"
icon={<Settings className="size-5" />}
label="Settings"
onClick={handleClose}
/>
<div className="my-2 mx-2">
<Separator />
</div>
<button
onClick={handleLogout}
+15 -31
View File
@@ -1,6 +1,6 @@
import { useCallback } from 'react';
import { Link, useLocation, useNavigate } from 'react-router-dom';
import { Menu, Search } from 'lucide-react';
import { Link, useLocation } from 'react-router-dom';
import { Menu } from 'lucide-react';
import { DittoLogo } from '@/components/DittoLogo';
interface MobileTopBarProps {
@@ -9,7 +9,6 @@ interface MobileTopBarProps {
export function MobileTopBar({ onMenuClick }: MobileTopBarProps) {
const location = useLocation();
const navigate = useNavigate();
const handleLogoClick = useCallback((e: React.MouseEvent) => {
if (location.pathname === '/') {
@@ -20,35 +19,20 @@ export function MobileTopBar({ onMenuClick }: MobileTopBarProps) {
return (
<header className="sticky top-0 z-20 bg-background/80 backdrop-blur-md border-b border-border sidebar:hidden safe-area-top">
<div className="flex items-center px-3 h-12">
{/* Left: hamburger menu */}
<div className="flex items-center justify-center w-7 shrink-0">
<button
onClick={onMenuClick}
className="rounded-lg p-0.5 text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-1 focus:ring-offset-background transition-colors hover:bg-secondary/60"
aria-label="Open menu"
>
<Menu className="size-6" />
</button>
</div>
<div className="flex items-center justify-between px-3 h-12">
{/* Left: Logo / Home */}
<Link to="/" onClick={handleLogoClick} className="shrink-0">
<DittoLogo size={28} />
</Link>
{/* Center: Ditto logo */}
<div className="flex-1 flex items-center justify-center">
<Link to="/" onClick={handleLogoClick}>
<DittoLogo size={28} />
</Link>
</div>
{/* Right: search icon */}
<div className="flex items-center justify-center w-7 shrink-0">
<button
onClick={() => navigate('/search')}
className="rounded-lg p-0.5 text-muted-foreground hover:text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-1 focus:ring-offset-background transition-colors hover:bg-secondary/60"
aria-label="Search"
>
<Search className="size-5" />
</button>
</div>
{/* Right: hamburger menu */}
<button
onClick={onMenuClick}
className="shrink-0 rounded-lg p-0.5 text-foreground focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-1 focus:ring-offset-background transition-colors hover:bg-secondary/60"
aria-label="Open menu"
>
<Menu className="size-6" />
</button>
</div>
</header>
);
+1 -5
View File
@@ -23,14 +23,10 @@ const DrawerClose = DrawerPrimitive.Close
const DrawerOverlay = React.forwardRef<
React.ElementRef<typeof DrawerPrimitive.Overlay>,
React.ComponentPropsWithoutRef<typeof DrawerPrimitive.Overlay>
>(({ className, onClick, ...props }, ref) => (
>(({ className, ...props }, ref) => (
<DrawerPrimitive.Overlay
ref={ref}
className={cn("fixed inset-0 z-50 bg-black/80", className)}
onClick={(e) => {
e.stopPropagation();
onClick?.(e);
}}
{...props}
/>
))
+3 -3
View File
@@ -4,7 +4,7 @@ import { Link, useNavigate } from 'react-router-dom';
import { Card, CardContent } from '@/components/ui/card';
import { useCurrentUser } from '@/hooks/useCurrentUser';
interface SettingsSection {
export interface SettingsSection {
id: string;
label: string;
description: string;
@@ -13,7 +13,7 @@ interface SettingsSection {
requiresAuth?: boolean;
}
const sections: SettingsSection[] = [
export const settingsSections: SettingsSection[] = [
{
id: 'profile',
label: 'Profile',
@@ -63,7 +63,7 @@ export function SettingsPage() {
description: 'Manage your Ditto settings',
});
const visibleSections = sections.filter(
const visibleSections = settingsSections.filter(
(section) => !section.requiresAuth || user,
);