Extract a single NoteSearchList component and useNoteSearch hook that all three note-search UIs now share: wiki-link autocomplete, relations autocomplete, and Cmd+P quick open. All show note name + type badge consistently, with identical keyboard navigation behavior. - NoteSearchList: reusable result list with title + type badge - useNoteSearch: fuzzy search + arrow-key navigation hook - WikilinkSuggestionMenu: now wraps NoteSearchList - QuickOpenPalette: uses useNoteSearch + NoteSearchList - InlineAddNote: replaces <datalist> with proper search dropdown - AddRelationshipForm: replaces <datalist> with NoteTargetInput - InspectorPanels code health improved from 8.99 to 9.04 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
82 lines
2.6 KiB
TypeScript
82 lines
2.6 KiB
TypeScript
import { useState, useRef, useEffect } from 'react'
|
|
import type { VaultEntry } from '../types'
|
|
import { NoteSearchList } from './NoteSearchList'
|
|
import { useNoteSearch } from '../hooks/useNoteSearch'
|
|
|
|
interface QuickOpenPaletteProps {
|
|
open: boolean
|
|
entries: VaultEntry[]
|
|
onSelect: (entry: VaultEntry) => void
|
|
onClose: () => void
|
|
}
|
|
|
|
export function QuickOpenPalette({ open, entries, onSelect, onClose }: QuickOpenPaletteProps) {
|
|
const [query, setQuery] = useState('')
|
|
const inputRef = useRef<HTMLInputElement>(null)
|
|
const { results, selectedIndex, setSelectedIndex, handleKeyDown } = useNoteSearch(entries, query)
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
// eslint-disable-next-line react-hooks/set-state-in-effect -- reset on dialog open
|
|
setQuery('')
|
|
setSelectedIndex(0)
|
|
setTimeout(() => inputRef.current?.focus(), 50)
|
|
}
|
|
}, [open, setSelectedIndex])
|
|
|
|
useEffect(() => {
|
|
if (!open) return
|
|
const handler = (e: KeyboardEvent) => {
|
|
handleKeyDown(e)
|
|
if (e.key === 'Escape') {
|
|
e.preventDefault()
|
|
onClose()
|
|
} else if (e.key === 'Enter') {
|
|
e.preventDefault()
|
|
const selected = results[selectedIndex]
|
|
if (selected) {
|
|
onSelect(selected.entry)
|
|
onClose()
|
|
}
|
|
}
|
|
}
|
|
window.addEventListener('keydown', handler)
|
|
return () => window.removeEventListener('keydown', handler)
|
|
}, [open, results, selectedIndex, onSelect, onClose, handleKeyDown])
|
|
|
|
if (!open) return null
|
|
|
|
return (
|
|
<div
|
|
className="fixed inset-0 z-[1000] flex justify-center bg-[var(--shadow-dialog)] pt-[15vh]"
|
|
onClick={onClose}
|
|
>
|
|
<div
|
|
className="flex w-[500px] max-w-[90vw] max-h-[400px] flex-col self-start overflow-hidden rounded-xl border border-[var(--border-dialog)] bg-popover shadow-[0_8px_32px_var(--shadow-dialog)]"
|
|
onClick={(e) => e.stopPropagation()}
|
|
>
|
|
<input
|
|
ref={inputRef}
|
|
className="border-b border-border bg-transparent px-4 py-3 text-[15px] text-foreground outline-none placeholder:text-muted-foreground"
|
|
type="text"
|
|
placeholder="Search notes..."
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
/>
|
|
<NoteSearchList
|
|
items={results}
|
|
selectedIndex={selectedIndex}
|
|
getItemKey={(item) => item.entry.path}
|
|
onItemClick={(item) => {
|
|
onSelect(item.entry)
|
|
onClose()
|
|
}}
|
|
onItemHover={(i) => setSelectedIndex(i)}
|
|
emptyMessage="No matching notes"
|
|
className="flex-1 overflow-y-auto"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|