Phase 1: NoteEditor Split (64KB → 9 focused components) - components/note-editor/: types.ts, context, toolbar, title-block, content-area, metadata-section, full-page, dialog compositions - Maintains backwards compatibility via re-export from note-editor.tsx Phase 2: Context Consolidation (5 → 3 contexts) - NotebooksContext absorbs LabelContext (labels CRUD) - EditorUIContext merges HomeViewContext + NotebookDragContext - Removed: LabelContext, home-view-context, notebook-drag-context Phase 3: React Query Infrastructure - Added QueryProvider with @tanstack/react-query - lib/query-keys.ts: centralized query key definitions - lib/query-hooks.ts: useNotes, useNotebooksQuery, useLabelsQuery - lib/use-refresh.ts: hybrid invalidateQueries + triggerRefresh helper - NotebooksContext: invalidateQueries on mutations (with triggerRefresh fallback) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
427 lines
16 KiB
TypeScript
427 lines
16 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect, useRef } from 'react'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Badge } from '@/components/ui/badge'
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from '@/components/ui/dropdown-menu'
|
|
import {
|
|
Sheet,
|
|
SheetContent,
|
|
SheetHeader,
|
|
SheetTitle,
|
|
SheetTrigger,
|
|
} from '@/components/ui/sheet'
|
|
import { Menu, Search, StickyNote, Tag, Moon, Sun, X, Bell, Sparkles, Grid3x3, Settings, LogOut, User, Shield, Coffee, MessageSquare, FlaskConical, Bot } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { usePathname, useRouter, useSearchParams } from 'next/navigation'
|
|
import { cn } from '@/lib/utils'
|
|
import { useNotebooks } from '@/context/notebooks-context'
|
|
import { LabelFilter } from './label-filter'
|
|
import { NotificationPanel } from './notification-panel'
|
|
import { updateTheme } from '@/app/actions/profile'
|
|
import { applyDocumentTheme, normalizeThemeId } from '@/lib/apply-document-theme'
|
|
import { useDebounce } from '@/hooks/use-debounce'
|
|
import { useLanguage } from '@/lib/i18n'
|
|
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
|
|
import { useSession, signOut } from 'next-auth/react'
|
|
|
|
interface HeaderProps {
|
|
selectedLabels?: string[]
|
|
selectedColor?: string | null
|
|
onLabelFilterChange?: (labels: string[]) => void
|
|
onColorFilterChange?: (color: string | null) => void
|
|
user?: any
|
|
}
|
|
|
|
export function Header({
|
|
selectedLabels = [],
|
|
selectedColor = null,
|
|
onLabelFilterChange,
|
|
onColorFilterChange,
|
|
user
|
|
}: HeaderProps = {}) {
|
|
const [searchQuery, setSearchQuery] = useState('')
|
|
const [theme, setTheme] = useState<string>('light')
|
|
const [isSidebarOpen, setIsSidebarOpen] = useState(false)
|
|
const [isSemanticSearching, setIsSemanticSearching] = useState(false)
|
|
const pathname = usePathname()
|
|
const router = useRouter()
|
|
const searchParams = useSearchParams()
|
|
const { labels, setNotebookId } = useNotebooks()
|
|
const { t } = useLanguage()
|
|
const { data: session } = useSession()
|
|
|
|
const noSidebarMode = ['/agents', '/chat', '/lab'].some(r => pathname.startsWith(r))
|
|
|
|
|
|
// Track last pushed search to avoid infinite loops
|
|
const lastPushedSearch = useRef<string | null>(null)
|
|
|
|
const currentLabels = searchParams.get('labels')?.split(',').filter(Boolean) || []
|
|
const currentSearch = searchParams.get('search') || ''
|
|
const currentColor = searchParams.get('color') || ''
|
|
|
|
const currentUser = user || session?.user
|
|
|
|
// Initialize search query from URL ONLY on mount
|
|
useEffect(() => {
|
|
setSearchQuery(currentSearch)
|
|
lastPushedSearch.current = currentSearch
|
|
}, []) // Run only once on mount
|
|
|
|
// Sync LabelContext notebookId with URL notebook parameter
|
|
const currentNotebook = searchParams.get('notebook')
|
|
useEffect(() => {
|
|
setNotebookId(currentNotebook || null)
|
|
}, [currentNotebook, setNotebookId])
|
|
|
|
// Prevent body scroll when mobile menu is open
|
|
useEffect(() => {
|
|
if (isSidebarOpen) {
|
|
document.body.style.overflow = 'hidden'
|
|
document.body.style.position = 'fixed'
|
|
document.body.style.width = '100%'
|
|
} else {
|
|
document.body.style.overflow = ''
|
|
document.body.style.position = ''
|
|
document.body.style.width = ''
|
|
}
|
|
return () => {
|
|
document.body.style.overflow = ''
|
|
document.body.style.position = ''
|
|
document.body.style.width = ''
|
|
}
|
|
}, [isSidebarOpen])
|
|
|
|
// Close mobile menu on Esc key press
|
|
useEffect(() => {
|
|
const handleEscapeKey = (e: KeyboardEvent) => {
|
|
if (e.key === 'Escape' && isSidebarOpen) {
|
|
setIsSidebarOpen(false)
|
|
}
|
|
}
|
|
|
|
if (isSidebarOpen) {
|
|
document.addEventListener('keydown', handleEscapeKey)
|
|
}
|
|
|
|
return () => {
|
|
document.removeEventListener('keydown', handleEscapeKey)
|
|
}
|
|
}, [isSidebarOpen])
|
|
|
|
// Simple debounced search with URL update (150ms for more responsiveness)
|
|
const debouncedSearchQuery = useDebounce(searchQuery, 150)
|
|
|
|
useEffect(() => {
|
|
// Skip if search hasn't changed or if we already pushed this value
|
|
if (debouncedSearchQuery === lastPushedSearch.current) return
|
|
|
|
// Only trigger search navigation from the home page
|
|
if (pathname !== '/') {
|
|
lastPushedSearch.current = debouncedSearchQuery
|
|
return
|
|
}
|
|
|
|
// Build new params preserving other filters (notebook, labels, etc.)
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
if (debouncedSearchQuery.trim()) {
|
|
params.set('search', debouncedSearchQuery)
|
|
} else {
|
|
params.delete('search')
|
|
}
|
|
|
|
const newUrl = `/?${params.toString()}`
|
|
|
|
// Mark as pushed before calling router.push to prevent loops
|
|
lastPushedSearch.current = debouncedSearchQuery
|
|
router.push(newUrl)
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [debouncedSearchQuery])
|
|
|
|
// Handle semantic search button click
|
|
const handleSemanticSearch = () => {
|
|
if (!searchQuery.trim()) return
|
|
|
|
// Add semantic flag to URL
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
params.set('search', searchQuery)
|
|
params.set('semantic', 'true')
|
|
router.push(`/?${params.toString()}`)
|
|
|
|
// Show loading state briefly
|
|
setIsSemanticSearching(true)
|
|
setTimeout(() => setIsSemanticSearching(false), 1500)
|
|
}
|
|
|
|
useEffect(() => {
|
|
// Use 'theme-preference' to match the unified theme system
|
|
const savedTheme = localStorage.getItem('theme-preference') || currentUser?.theme || 'light'
|
|
// Don't persist on initial load to avoid unnecessary DB calls
|
|
applyTheme(savedTheme, false)
|
|
}, [currentUser])
|
|
|
|
const applyTheme = async (newTheme: string, persist = true) => {
|
|
const normalized = normalizeThemeId(newTheme)
|
|
setTheme(normalized)
|
|
localStorage.setItem('theme-preference', normalized)
|
|
applyDocumentTheme(normalized)
|
|
|
|
if (persist && currentUser) {
|
|
await updateTheme(normalized)
|
|
}
|
|
}
|
|
|
|
const handleSearch = (query: string) => {
|
|
setSearchQuery(query)
|
|
// URL update is now handled by the debounced useEffect
|
|
}
|
|
|
|
const removeLabelFilter = (labelToRemove: string) => {
|
|
const newLabels = currentLabels.filter(l => l !== labelToRemove)
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
if (newLabels.length > 0) {
|
|
params.set('labels', newLabels.join(','))
|
|
} else {
|
|
params.delete('labels')
|
|
}
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const removeColorFilter = () => {
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
params.delete('color')
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const clearAllFilters = () => {
|
|
// Clear only label and color filters, keep search
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
params.delete('labels')
|
|
params.delete('color')
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const handleFilterChange = (newLabels: string[]) => {
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
if (newLabels.length > 0) {
|
|
params.set('labels', newLabels.join(','))
|
|
} else {
|
|
params.delete('labels')
|
|
}
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const handleColorChange = (newColor: string | null) => {
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
if (newColor) {
|
|
params.set('color', newColor)
|
|
} else {
|
|
params.delete('color')
|
|
}
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const toggleLabelFilter = (labelName: string) => {
|
|
const newLabels = currentLabels.includes(labelName)
|
|
? currentLabels.filter(l => l !== labelName)
|
|
: [...currentLabels, labelName]
|
|
|
|
const params = new URLSearchParams(searchParams.toString())
|
|
if (newLabels.length > 0) {
|
|
params.set('labels', newLabels.join(','))
|
|
} else {
|
|
params.delete('labels')
|
|
}
|
|
router.push(`/?${params.toString()}`)
|
|
}
|
|
|
|
const NavItem = ({ href, icon: Icon, label, active, onClick }: any) => {
|
|
const content = (
|
|
<>
|
|
<Icon className={cn("h-5 w-5", active && "fill-current text-primary")} />
|
|
{label}
|
|
</>
|
|
)
|
|
|
|
if (onClick) {
|
|
return (
|
|
<button
|
|
onClick={onClick}
|
|
className={cn(
|
|
"w-full flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium transition-all duration-200 mr-2 text-left",
|
|
active
|
|
? "bg-primary/10 text-primary dark:bg-primary/15 dark:text-primary"
|
|
: "hover:bg-gray-100 dark:hover:bg-white/5 text-gray-700 dark:text-gray-300"
|
|
)}
|
|
style={{ minHeight: '44px' }}
|
|
aria-pressed={active}
|
|
>
|
|
{content}
|
|
</button>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Link
|
|
href={href}
|
|
onClick={() => setIsSidebarOpen(false)}
|
|
className={cn(
|
|
"flex items-center gap-3 px-4 py-3 rounded-lg text-sm font-medium transition-all duration-200 mr-2",
|
|
active
|
|
? "bg-primary/10 text-primary dark:bg-primary/15 dark:text-primary"
|
|
: "hover:bg-gray-100 dark:hover:bg-white/5 text-gray-700 dark:text-gray-300"
|
|
)}
|
|
style={{ minHeight: '44px' }}
|
|
aria-current={active ? 'page' : undefined}
|
|
>
|
|
{content}
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
const hasActiveFilters = currentLabels.length > 0 || !!currentColor
|
|
|
|
return (
|
|
<>
|
|
{/* Top Navigation - Style Keep */}
|
|
<header className="flex-none flex items-center justify-between whitespace-nowrap border-b border-border/50 bg-card/85 backdrop-blur-xl px-5 py-3 z-20 shadow-sm md:px-8">
|
|
<div className="flex items-center gap-6 md:gap-10">
|
|
|
|
|
|
{/* Wordmark */}
|
|
<div className="flex cursor-pointer items-center gap-3 text-foreground group" onClick={() => router.push('/')}>
|
|
<div className="flex size-9 items-center justify-center rounded-xl bg-primary text-primary-foreground shadow-md shadow-primary/20 transition-all duration-200 group-hover:shadow-lg group-hover:shadow-primary/25">
|
|
<StickyNote className="w-[1.15rem] h-[1.15rem]" strokeWidth={2} />
|
|
</div>
|
|
<h2 className="font-memento-serif text-[1.35rem] font-normal tracking-tight leading-none md:text-2xl">Memento</h2>
|
|
</div>
|
|
|
|
{/* Search Bar */}
|
|
<label className="hidden md:flex flex-col min-w-40 w-96 !h-10">
|
|
<div className="flex w-full flex-1 items-stretch rounded-xl h-full bg-muted/50 border border-transparent focus-within:bg-card focus-within:border-primary/35 focus-within:shadow-[0_0_0_3px_color-mix(in_oklab,var(--primary)_18%,transparent)] transition-all duration-200">
|
|
<div className="text-muted-foreground flex items-center justify-center pl-4 focus-within:text-primary transition-colors">
|
|
<Search className="w-4 h-4" />
|
|
</div>
|
|
<input
|
|
id="memento-global-search"
|
|
className="form-input flex w-full min-w-0 flex-1 resize-none overflow-hidden bg-transparent border-none text-foreground placeholder:text-muted-foreground px-3 text-sm focus:ring-0 focus:outline-none"
|
|
placeholder={t('search.placeholder') }
|
|
type="text"
|
|
value={searchQuery}
|
|
onChange={(e) => handleSearch(e.target.value)}
|
|
/>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
|
|
<div className="flex flex-1 justify-end gap-2 items-center">
|
|
|
|
{/* Quick nav: Notes (hidden-sidebar only), Chat, Agents, Lab */}
|
|
<div className="hidden md:flex items-center gap-1 rounded-xl bg-muted/60 px-1.5 py-1 ring-1 ring-border/50">
|
|
{noSidebarMode && (
|
|
<Link
|
|
href="/"
|
|
className={cn(
|
|
"flex items-center justify-center gap-1.5 px-3 py-1.5 rounded-lg text-xs font-medium transition-all duration-200",
|
|
pathname === '/'
|
|
? "bg-card text-primary shadow-sm ring-1 ring-primary/15"
|
|
: "text-muted-foreground hover:text-foreground hover:bg-muted/80"
|
|
)}
|
|
>
|
|
<StickyNote className="h-3.5 w-3.5" />
|
|
<span>{t('sidebar.notes') || 'Notes'}</span>
|
|
</Link>
|
|
)}
|
|
<Link
|
|
href="/agents"
|
|
className={cn(
|
|
"flex items-center justify-center gap-1.5 px-3 py-1.5 rounded-lg text-xs font-medium transition-all duration-200",
|
|
pathname === '/agents'
|
|
? "bg-card text-primary shadow-sm ring-1 ring-primary/15"
|
|
: "text-muted-foreground hover:text-foreground hover:bg-muted/80"
|
|
)}
|
|
>
|
|
<Bot className="h-3.5 w-3.5" />
|
|
<span>{t('nav.agents')}</span>
|
|
</Link>
|
|
<Link
|
|
href="/lab"
|
|
className={cn(
|
|
"flex items-center justify-center gap-1.5 px-3 py-1.5 rounded-lg text-xs font-medium transition-all duration-200",
|
|
pathname === '/lab'
|
|
? "bg-card text-primary shadow-sm ring-1 ring-primary/15"
|
|
: "text-muted-foreground hover:text-foreground hover:bg-muted/80"
|
|
)}
|
|
>
|
|
<FlaskConical className="h-3.5 w-3.5" />
|
|
<span>{t('nav.lab')}</span>
|
|
</Link>
|
|
</div>
|
|
|
|
{/* Notifications */}
|
|
<NotificationPanel />
|
|
|
|
{/* Settings Button */}
|
|
<Link
|
|
href="/settings"
|
|
className="flex items-center justify-center size-10 rounded-xl text-muted-foreground hover:bg-muted/80 hover:text-foreground transition-colors duration-200"
|
|
>
|
|
<Settings className="w-5 h-5" />
|
|
</Link>
|
|
|
|
{/* User Avatar Menu */}
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild>
|
|
<div className="flex items-center justify-center bg-center bg-no-repeat bg-cover rounded-xl size-10 ring-2 ring-border/60 cursor-pointer shadow-sm hover:shadow-md transition-shadow duration-200 bg-primary/10 text-primary"
|
|
style={currentUser?.image ? { backgroundImage: `url(${currentUser?.image})` } : undefined}>
|
|
{!currentUser?.image && (
|
|
<span className="text-sm font-semibold">
|
|
{currentUser?.name ? currentUser.name.charAt(0).toUpperCase() : <User className="w-5 h-5" />}
|
|
</span>
|
|
)}
|
|
</div>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-56">
|
|
<div className="flex items-center justify-start gap-2 p-2">
|
|
<div className="flex flex-col space-y-1 leading-none">
|
|
{currentUser?.name && <p className="font-medium">{currentUser.name}</p>}
|
|
{currentUser?.email && <p className="w-[200px] truncate text-sm text-muted-foreground">{currentUser.email}</p>}
|
|
</div>
|
|
</div>
|
|
<DropdownMenuItem asChild className="cursor-pointer">
|
|
<Link href="/settings/profile">
|
|
<User className="mr-2 h-4 w-4" />
|
|
<span>{t('settings.profile') || 'Profile'}</span>
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
{(currentUser as any)?.role === 'ADMIN' && (
|
|
<DropdownMenuItem asChild className="cursor-pointer">
|
|
{/* Force hard reload: client-side navigation between (main) and (admin)
|
|
route groups triggers React #310 in Next.js 16.x (framework bug). */}
|
|
<a href="/admin">
|
|
<Shield className="mr-2 h-4 w-4" />
|
|
<span>{t('nav.adminDashboard')}</span>
|
|
</a>
|
|
</DropdownMenuItem>
|
|
)}
|
|
<DropdownMenuItem onClick={() => signOut()} className="cursor-pointer text-red-600 focus:text-red-600">
|
|
<LogOut className="mr-2 h-4 w-4" />
|
|
<span>{t('auth.signOut') || 'Sign out'}</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
|
|
{/* User Avatar - Removed from here */}
|
|
</div>
|
|
</header>
|
|
</>
|
|
)
|
|
}
|