sync: multiple features from private repo

- quick-add-loading: fire-and-forget with loading placeholders, auto-open feed, SSE events, QuickAddInput redesign
- database-table-pane: TablePane + DatabaseTableView, countNodes(), event_date sort
- ui-polish-fixes: focus tab order, dim name editing, tab title sync, cost chip removal, custom sort drag-reorder, refresh button, dimension filter removal (~2,200 lines)
- node-creation-quality: description service prompt rewrite, title sanitization, extraction tool AI prompt rewrites
- feed-pane-ux: stripped kanban/grid/saved views, sort dropdown, AND dimension filtering, description preview

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
“BeeRad”
2026-02-15 17:57:32 +11:00
co-authored by Claude Opus 4.6
parent 9954792b1d
commit 2f6518207d
25 changed files with 1590 additions and 2647 deletions
+13 -1
View File
@@ -4,9 +4,11 @@ import { useState, useCallback } from 'react';
import {
Search,
Plus,
RefreshCw,
LayoutList,
Map,
Folder,
Table2,
Settings,
} from 'lucide-react';
import type { PaneType } from '../panes/types';
@@ -14,6 +16,7 @@ import type { PaneType } from '../panes/types';
interface LeftToolbarProps {
onSearchClick: () => void;
onAddStuffClick: () => void;
onRefreshClick: () => void;
onSettingsClick: () => void;
onPaneTypeClick: (paneType: PaneType) => void;
activePane: 'A' | 'B';
@@ -26,16 +29,18 @@ const PANE_TYPE_ICONS: Record<string, typeof LayoutList> = {
views: LayoutList,
map: Map,
dimensions: Folder,
table: Table2,
};
const PANE_TYPE_LABELS: Record<string, string> = {
views: 'Feed',
map: 'Map',
dimensions: 'Dimensions',
table: 'Table',
};
// Pane types shown in the toolbar (excludes 'node', 'chat', and 'guides' which is in settings)
const TOOLBAR_PANE_TYPES: PaneType[] = ['views', 'map', 'dimensions'];
const TOOLBAR_PANE_TYPES: PaneType[] = ['views', 'map', 'dimensions', 'table'];
interface ToolbarButtonProps {
icon: typeof Search;
@@ -140,6 +145,7 @@ function PaneTypeButton({ icon: Icon, label, paneType, isOpen, isActivePane, onC
export default function LeftToolbar({
onSearchClick,
onAddStuffClick,
onRefreshClick,
onSettingsClick,
onPaneTypeClick,
activePane,
@@ -180,6 +186,12 @@ export default function LeftToolbar({
label="Add Stuff"
onClick={onAddStuffClick}
/>
<ToolbarButton
icon={RefreshCw}
label="Refresh"
shortcut="⌘⇧R"
onClick={onRefreshClick}
/>
</div>
{/* Middle section - Pane Types */}