Replace the multi-tab model with single-note navigation. One note is open at a time; clicking any note (sidebar, wikilink, relationship) replaces the current note in the editor. Back/Forward history still works via Cmd+[/]. Removed: TabBar component, useClosedTabHistory, tab reorder/close/ reopen logic, Cmd+W/Cmd+Shift+T shortcuts, Close Tab and Reopen Closed Tab menu items, tabLayout utility, and all related tests. Simplified: useTabManagement (single-note), useAppNavigation (no tab lookup), useKeyboardNavigation (note nav only), useNoteCreation (no close-tab cleanup), useDeleteActions (deselect instead of close tab), Editor (no TabBar render), Rust menu (removed 2 menu items). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
116 lines
3.7 KiB
TypeScript
116 lines
3.7 KiB
TypeScript
import { useEffect } from 'react'
|
|
import type { ViewMode } from './useViewMode'
|
|
|
|
interface KeyboardActions {
|
|
onQuickOpen: () => void
|
|
onCommandPalette: () => void
|
|
onSearch: () => void
|
|
onCreateNote: () => void
|
|
onOpenDailyNote: () => void
|
|
onSave: () => void
|
|
onOpenSettings: () => void
|
|
onTrashNote: (path: string) => void
|
|
onArchiveNote: (path: string) => void
|
|
onSetViewMode: (mode: ViewMode) => void
|
|
onZoomIn: () => void
|
|
onZoomOut: () => void
|
|
onZoomReset: () => void
|
|
onGoBack?: () => void
|
|
onGoForward?: () => void
|
|
onToggleAIChat?: () => void
|
|
onToggleRawEditor?: () => void
|
|
onOpenInNewWindow?: () => void
|
|
activeTabPathRef: React.MutableRefObject<string | null>
|
|
}
|
|
|
|
type ShortcutHandler = () => void
|
|
|
|
const TEXT_EDITING_KEYS = new Set(['Backspace', 'Delete'])
|
|
|
|
function isTextInputFocused(): boolean {
|
|
const tag = document.activeElement?.tagName
|
|
return tag === 'INPUT' || tag === 'TEXTAREA'
|
|
}
|
|
|
|
const VIEW_MODE_KEYS: Record<string, ViewMode> = {
|
|
'1': 'editor-only',
|
|
'2': 'editor-list',
|
|
'3': 'all',
|
|
}
|
|
|
|
function isCmdOnly(e: KeyboardEvent): boolean {
|
|
return (e.metaKey || e.ctrlKey) && !e.altKey
|
|
}
|
|
|
|
function handleViewModeKey(e: KeyboardEvent, onSetViewMode: (m: ViewMode) => void): boolean {
|
|
if (!isCmdOnly(e)) return false
|
|
const mode = VIEW_MODE_KEYS[e.key]
|
|
if (!mode) return false
|
|
e.preventDefault()
|
|
onSetViewMode(mode)
|
|
return true
|
|
}
|
|
|
|
function handleCmdKey(e: KeyboardEvent, keyMap: Record<string, ShortcutHandler>): boolean {
|
|
const mod = e.metaKey || e.ctrlKey
|
|
if (!mod) return false
|
|
const handler = keyMap[e.key]
|
|
if (!handler) return false
|
|
if (TEXT_EDITING_KEYS.has(e.key) && isTextInputFocused()) return false
|
|
e.preventDefault()
|
|
handler()
|
|
return true
|
|
}
|
|
|
|
export function useAppKeyboard({
|
|
onQuickOpen, onCommandPalette, onSearch, onCreateNote, onOpenDailyNote, onSave, onOpenSettings, onTrashNote, onArchiveNote,
|
|
onSetViewMode, onZoomIn, onZoomOut, onZoomReset, onGoBack, onGoForward, onToggleAIChat, onToggleRawEditor, onOpenInNewWindow, activeTabPathRef,
|
|
}: KeyboardActions) {
|
|
useEffect(() => {
|
|
const withActiveTab = (fn: (path: string) => void): ShortcutHandler => () => {
|
|
const path = activeTabPathRef.current
|
|
if (path) fn(path)
|
|
}
|
|
|
|
const cmdKeyMap: Record<string, ShortcutHandler> = {
|
|
k: onCommandPalette,
|
|
p: onQuickOpen,
|
|
n: onCreateNote,
|
|
j: onOpenDailyNote,
|
|
s: onSave,
|
|
',': onOpenSettings,
|
|
e: withActiveTab(onArchiveNote),
|
|
Backspace: withActiveTab(onTrashNote),
|
|
Delete: withActiveTab(onTrashNote),
|
|
'[': () => onGoBack?.(),
|
|
']': () => onGoForward?.(),
|
|
'=': onZoomIn,
|
|
'+': onZoomIn,
|
|
'-': onZoomOut,
|
|
'0': onZoomReset,
|
|
i: () => onToggleAIChat?.(),
|
|
'\\': () => onToggleRawEditor?.(),
|
|
}
|
|
|
|
const handleKeyDown = (e: KeyboardEvent) => {
|
|
// Cmd+Shift+F: full-text search (distinct from Cmd+F browser find)
|
|
if ((e.metaKey || e.ctrlKey) && e.shiftKey && e.key === 'f') {
|
|
e.preventDefault()
|
|
onSearch()
|
|
return
|
|
}
|
|
// Cmd+Shift+O: open active note in new window
|
|
if ((e.metaKey || e.ctrlKey) && e.shiftKey && (e.key === 'o' || e.key === 'O')) {
|
|
e.preventDefault()
|
|
onOpenInNewWindow?.()
|
|
return
|
|
}
|
|
if (!handleViewModeKey(e, onSetViewMode)) {
|
|
handleCmdKey(e, cmdKeyMap)
|
|
}
|
|
}
|
|
window.addEventListener('keydown', handleKeyDown)
|
|
return () => window.removeEventListener('keydown', handleKeyDown)
|
|
}, [onQuickOpen, onCommandPalette, onSearch, onCreateNote, onOpenDailyNote, onSave, onOpenSettings, onTrashNote, onArchiveNote, activeTabPathRef, onSetViewMode, onZoomIn, onZoomOut, onZoomReset, onGoBack, onGoForward, onToggleAIChat, onToggleRawEditor, onOpenInNewWindow])
|
|
}
|