refactor: flatten Financials page UI for improved density
- Move Matrix panel to top position for better visibility - Hide trend chart by default (showTrendChart: false) - Flatten panel design by removing titles and borders - Compact spacing and reduce UI chrome throughout - Add chart toggle button in toolbar - Enable dense and virtualized modes on StatementMatrix - Fix missing useState import in FinancialsToolbar The creates a cleaner, more professional Bloomberg terminal-style interface with better information density and improved performance through virtualization for large datasets. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -888,7 +888,7 @@ function FinancialsPageContent() {
|
||||
</div>
|
||||
</Panel>
|
||||
|
||||
<Panel title="Trend Chart" subtitle="Default trend series for the selected surface." variant="surface">
|
||||
<Panel>
|
||||
{loading ? (
|
||||
<p className="text-sm text-[color:var(--terminal-muted)]">Loading trend chart...</p>
|
||||
) : chartData.length === 0 || trendSeries.length === 0 ? (
|
||||
@@ -1064,7 +1064,7 @@ function FinancialsPageContent() {
|
||||
renderDimensionValue={renderDimensionValue}
|
||||
/>
|
||||
) : (
|
||||
<Panel title="Row Details" subtitle="Inspect provenance, formulas, and dimensional evidence for the selected row." variant="surface">
|
||||
<Panel>
|
||||
{!selectedRow ? (
|
||||
<p className="text-sm text-[color:var(--terminal-muted)]">Select a row to inspect details.</p>
|
||||
) : (
|
||||
@@ -1149,7 +1149,7 @@ function FinancialsPageContent() {
|
||||
)}
|
||||
|
||||
{(surfaceKind === 'income_statement' || surfaceKind === 'balance_sheet' || surfaceKind === 'cash_flow_statement') && financials ? (
|
||||
<Panel title="Metric Validation" subtitle="Validation remains limited to statement-derived taxonomy metrics in v1." variant="surface">
|
||||
<Panel>
|
||||
<div className="mb-3 flex items-center gap-2 text-sm text-[color:var(--terminal-muted)]">
|
||||
<AlertTriangle className="size-4" />
|
||||
<span>Overall status: {financials.metrics.validation?.status ?? 'not_run'}</span>
|
||||
|
||||
6
bun.lock
6
bun.lock
@@ -9,6 +9,7 @@
|
||||
"@libsql/client": "^0.17.0",
|
||||
"@tailwindcss/postcss": "^4.2.1",
|
||||
"@tanstack/react-query": "^5.90.21",
|
||||
"@tanstack/react-virtual": "^3.13.23",
|
||||
"@workflow/world-postgres": "^4.1.0-beta.42",
|
||||
"ai": "^6.0.116",
|
||||
"better-auth": "^1.5.4",
|
||||
@@ -25,6 +26,7 @@
|
||||
"recharts": "^3.8.0",
|
||||
"sonner": "^2.0.7",
|
||||
"sqlite-vec": "^0.1.7-alpha.2",
|
||||
"sqlite-vec-darwin-arm64": "^0.1.7-alpha.2",
|
||||
"workflow": "^4.1.0-beta.63",
|
||||
"zhipu-ai-provider": "^0.2.2",
|
||||
},
|
||||
@@ -607,6 +609,10 @@
|
||||
|
||||
"@tanstack/react-query": ["@tanstack/react-query@5.90.21", "", { "dependencies": { "@tanstack/query-core": "5.90.20" }, "peerDependencies": { "react": "^18 || ^19" } }, "sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg=="],
|
||||
|
||||
"@tanstack/react-virtual": ["@tanstack/react-virtual@3.13.23", "", { "dependencies": { "@tanstack/virtual-core": "3.13.23" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "sha512-XnMRnHQ23piOVj2bzJqHrRrLg4r+F86fuBcwteKfbIjJrtGxb4z7tIvPVAe4B+4UVwo9G4Giuz5fmapcrnZ0OQ=="],
|
||||
|
||||
"@tanstack/virtual-core": ["@tanstack/virtual-core@3.13.23", "", {}, "sha512-zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg=="],
|
||||
|
||||
"@tokenizer/inflate": ["@tokenizer/inflate@0.4.1", "", { "dependencies": { "debug": "^4.4.3", "token-types": "^6.1.1" } }, "sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA=="],
|
||||
|
||||
"@tokenizer/token": ["@tokenizer/token@0.3.0", "", {}, "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="],
|
||||
|
||||
122
components/financials/financials-toolbar.tsx
Normal file
122
components/financials/financials-toolbar.tsx
Normal file
@@ -0,0 +1,122 @@
|
||||
'use client';
|
||||
|
||||
import { memo, useMemo, useCallback, useRef, useEffect, useState } from 'react';
|
||||
import { Download, Search } from 'lucide-react';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
export type FinancialControlOption = {
|
||||
value: string;
|
||||
label: string;
|
||||
};
|
||||
|
||||
export type FinancialControlSection = {
|
||||
key: string;
|
||||
label: string;
|
||||
options: FinancialControlOption[];
|
||||
value: string;
|
||||
onChange: (value: string) => void;
|
||||
};
|
||||
|
||||
export type FinancialsToolbarProps = {
|
||||
sections: FinancialControlSection[];
|
||||
searchValue: string;
|
||||
onSearchChange: (value: string) => void;
|
||||
onExport?: () => void;
|
||||
className?: string;
|
||||
};
|
||||
|
||||
// Debounce hook
|
||||
function useDebounce<T>(value: T, delay: number): T {
|
||||
const [debouncedValue, setDebouncedValue] = useState<T>(value);
|
||||
|
||||
useEffect(() => {
|
||||
const handler = setTimeout(() => {
|
||||
setDebouncedValue(value);
|
||||
}, delay);
|
||||
|
||||
return () => {
|
||||
clearTimeout(handler);
|
||||
};
|
||||
}, [value, delay]);
|
||||
|
||||
return debouncedValue;
|
||||
}
|
||||
|
||||
function FinancialsToolbarComponent({
|
||||
sections,
|
||||
searchValue,
|
||||
onSearchChange,
|
||||
onExport,
|
||||
className
|
||||
}: FinancialsToolbarProps) {
|
||||
const [localSearch, setLocalSearch] = useState(searchValue);
|
||||
const debouncedSearch = useDebounce(localSearch, 300);
|
||||
|
||||
// Sync debounced search to parent
|
||||
useEffect(() => {
|
||||
onSearchChange(debouncedSearch);
|
||||
}, [debouncedSearch, onSearchChange]);
|
||||
|
||||
// Sync parent search to local (if changed externally)
|
||||
useEffect(() => {
|
||||
setLocalSearch(searchValue);
|
||||
}, [searchValue]);
|
||||
|
||||
return (
|
||||
<div className={cn('flex flex-wrap items-center gap-2 pb-3 mb-3 border-b border-[var(--line-weak)]', className)}>
|
||||
{/* Control sections */}
|
||||
<div className="flex flex-wrap items-center gap-1.5">
|
||||
{sections.map((section) => (
|
||||
<div key={section.key} className="flex items-center gap-1">
|
||||
{section.options.map((option) => {
|
||||
const isActive = section.value === option.value;
|
||||
return (
|
||||
<Button
|
||||
key={`${section.key}-${option.value}`}
|
||||
variant={isActive ? 'secondary' : 'ghost'}
|
||||
size="compact"
|
||||
onClick={() => section.onChange(option.value)}
|
||||
className="text-xs"
|
||||
>
|
||||
{option.label}
|
||||
</Button>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* Spacer */}
|
||||
<div className="flex-1" />
|
||||
|
||||
{/* Search and actions */}
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="relative">
|
||||
<Search className="absolute left-2 top-1/2 h-3 w-3 -translate-y-1/2 text-[var(--terminal-muted)]" />
|
||||
<Input
|
||||
placeholder="Search metrics..."
|
||||
value={localSearch}
|
||||
onChange={(e) => setLocalSearch(e.target.value)}
|
||||
inputSize="compact"
|
||||
className="w-48 pl-7"
|
||||
/>
|
||||
</div>
|
||||
{onExport && (
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="compact"
|
||||
onClick={onExport}
|
||||
className="gap-1.5"
|
||||
>
|
||||
<Download className="h-3.5 w-3.5" />
|
||||
Export
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export const FinancialsToolbar = memo(FinancialsToolbarComponent);
|
||||
@@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import { Fragment } from 'react';
|
||||
import { Fragment, memo, useMemo, useRef } from 'react';
|
||||
import { useVirtualizer } from '@tanstack/react-virtual';
|
||||
import { ChevronDown, ChevronRight } from 'lucide-react';
|
||||
import type { FinancialStatementPeriod, SurfaceFinancialRow, DetailFinancialRow } from '@/lib/types';
|
||||
import { cn } from '@/lib/utils';
|
||||
@@ -20,6 +21,8 @@ type StatementMatrixProps = {
|
||||
onSelectRow: (selection: StatementInspectorSelection) => void;
|
||||
renderCellValue: (row: MatrixRow, periodId: string, previousPeriodId: string | null) => string;
|
||||
periodLabelFormatter: (value: string) => string;
|
||||
dense?: boolean;
|
||||
virtualized?: boolean;
|
||||
};
|
||||
|
||||
function isSurfaceNode(node: StatementTreeNode): node is Extract<StatementTreeNode, { kind: 'surface' }> {
|
||||
@@ -66,22 +69,70 @@ function surfaceBadges(node: Extract<StatementTreeNode, { kind: 'surface' }>) {
|
||||
return badges;
|
||||
}
|
||||
|
||||
function badgeClass(tone: 'default' | 'warning' | 'muted') {
|
||||
function badgeClass(tone: 'default' | 'warning' | 'muted', dense?: boolean) {
|
||||
const baseClasses = dense
|
||||
? 'rounded border px-1 py-0.5 text-[9px] uppercase tracking-[0.12em]'
|
||||
: 'rounded-full border px-2 py-0.5 text-[10px] uppercase tracking-[0.14em]';
|
||||
|
||||
if (tone === 'warning') {
|
||||
return 'border-[#84614f] bg-[rgba(112,76,54,0.22)] text-[#ffd7bf]';
|
||||
return cn(baseClasses, 'border-[#84614f] bg-[rgba(112,76,54,0.22)] text-[#ffd7bf]');
|
||||
}
|
||||
|
||||
if (tone === 'muted') {
|
||||
return 'border-[color:var(--line-weak)] bg-[rgba(80,85,92,0.16)] text-[color:var(--terminal-muted)]';
|
||||
return cn(baseClasses, 'border-[color:var(--line-weak)] bg-[rgba(80,85,92,0.16)] text-[color:var(--terminal-muted)]');
|
||||
}
|
||||
|
||||
return 'border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] text-[color:var(--terminal-bright)]';
|
||||
return cn(baseClasses, 'border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] text-[color:var(--terminal-bright)]');
|
||||
}
|
||||
|
||||
function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[] }) {
|
||||
// Flatten tree nodes for virtualization
|
||||
type FlattenedNode = {
|
||||
node: StatementTreeNode;
|
||||
sectionKey: string;
|
||||
sectionLabel?: string;
|
||||
isSectionHeader?: boolean;
|
||||
};
|
||||
|
||||
function flattenSections(sections: StatementTreeSection[]): FlattenedNode[] {
|
||||
const result: FlattenedNode[] = [];
|
||||
|
||||
function flattenNodes(nodes: StatementTreeNode[], sectionKey: string): void {
|
||||
for (const node of nodes) {
|
||||
result.push({ node, sectionKey });
|
||||
|
||||
if (node.kind === 'surface' && node.expanded && node.children.length > 0) {
|
||||
flattenNodes(node.children, sectionKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (const section of sections) {
|
||||
if (section.label) {
|
||||
result.push({
|
||||
node: {} as StatementTreeNode,
|
||||
sectionKey: section.key,
|
||||
sectionLabel: section.label,
|
||||
isSectionHeader: true
|
||||
});
|
||||
}
|
||||
flattenNodes(section.nodes, section.key);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]; dense?: boolean }) {
|
||||
const { dense = false } = props;
|
||||
const buttonSize = dense ? 'size-7' : 'size-11';
|
||||
const buttonClass = dense ? 'rounded' : 'rounded-lg';
|
||||
const labelSize = dense ? 'text-[13px]' : 'text-sm';
|
||||
const detailLabelSize = dense ? 'text-xs' : 'text-[13px]';
|
||||
const paddingY = dense ? 'py-1.5' : 'py-2';
|
||||
const gapClass = dense ? 'gap-1' : 'gap-2';
|
||||
|
||||
return props.nodes.map((node) => {
|
||||
const isSelected = rowSelected(node, props.selectedRowRef);
|
||||
const labelIndent = node.kind === 'detail' ? node.level * 18 + 18 : node.level * 18;
|
||||
const labelIndent = node.kind === 'detail' ? node.level * 16 + 16 : node.level * 16;
|
||||
const canToggle = isSurfaceNode(node) && node.expandable;
|
||||
const nextSelection: StatementInspectorSelection = node.kind === 'surface'
|
||||
? { kind: 'surface', key: node.row.key }
|
||||
@@ -91,40 +142,45 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
|
||||
<Fragment key={node.id}>
|
||||
<tr className={cn(isSelected && 'bg-[color:rgba(70,77,87,0.48)]')}>
|
||||
<td className="sticky left-0 z-10 bg-[color:var(--panel)]">
|
||||
<div className="flex min-w-[260px] items-start gap-2" style={{ paddingLeft: `${labelIndent}px` }}>
|
||||
<div className={cn('flex min-w-[240px] items-start', gapClass)} style={{ paddingLeft: `${labelIndent}px` }}>
|
||||
{canToggle ? (
|
||||
<button
|
||||
type="button"
|
||||
aria-label={`${node.expanded ? 'Collapse' : 'Expand'} ${node.row.label} details`}
|
||||
aria-expanded={node.expanded}
|
||||
aria-controls={`statement-children-${node.id}`}
|
||||
className="mt-0.5 inline-flex size-11 shrink-0 items-center justify-center rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] text-[color:var(--terminal-bright)] transition hover:border-[color:var(--line-strong)]"
|
||||
className={cn(
|
||||
'mt-0.5 inline-flex shrink-0 items-center justify-center border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] text-[color:var(--terminal-bright)] transition hover:border-[color:var(--line-strong)]',
|
||||
buttonSize,
|
||||
buttonClass
|
||||
)}
|
||||
onClick={(event) => {
|
||||
event.stopPropagation();
|
||||
props.onToggleRow(node.row.key);
|
||||
}}
|
||||
>
|
||||
{node.expanded ? <ChevronDown className="size-4" /> : <ChevronRight className="size-4" />}
|
||||
{node.expanded ? <ChevronDown className="size-3.5" /> : <ChevronRight className="size-3.5" />}
|
||||
</button>
|
||||
) : (
|
||||
<span className="inline-flex size-11 shrink-0 items-center justify-center text-[color:var(--terminal-muted)]" aria-hidden="true">
|
||||
<span className={cn('inline-flex shrink-0 items-center justify-center text-[color:var(--terminal-muted)]', buttonSize)} aria-hidden="true">
|
||||
{node.kind === 'detail' ? '·' : ''}
|
||||
</span>
|
||||
)}
|
||||
<button
|
||||
type="button"
|
||||
className="flex min-w-0 flex-1 flex-col items-start gap-1 py-2 text-left"
|
||||
className={cn('flex min-w-0 flex-1 flex-col items-start gap-0.5 text-left', paddingY)}
|
||||
onClick={() => props.onSelectRow(nextSelection)}
|
||||
>
|
||||
<span className={cn(
|
||||
'text-sm text-[color:var(--terminal-bright)]',
|
||||
node.kind === 'detail' && 'text-[13px] text-[color:var(--terminal-soft)]',
|
||||
labelSize,
|
||||
'text-[color:var(--terminal-bright)]',
|
||||
node.kind === 'detail' && cn(detailLabelSize, 'text-[color:var(--terminal-soft)]'),
|
||||
node.kind === 'surface' && node.level > 0 && 'text-[color:var(--terminal-soft)]'
|
||||
)}>
|
||||
{node.row.label}
|
||||
</span>
|
||||
{node.kind === 'detail' ? (
|
||||
<span className="text-xs text-[color:var(--terminal-muted)]">
|
||||
<span className="text-[10px] text-[color:var(--terminal-muted)]">
|
||||
{node.row.localName}
|
||||
{node.row.residualFlag ? ' · residual' : ''}
|
||||
</span>
|
||||
@@ -133,10 +189,7 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
|
||||
{surfaceBadges(node).map((badge) => (
|
||||
<span
|
||||
key={`${node.row.key}-${badge.label}`}
|
||||
className={cn(
|
||||
'rounded-full border px-2 py-0.5 text-[10px] uppercase tracking-[0.14em]',
|
||||
badgeClass(badge.tone)
|
||||
)}
|
||||
className={badgeClass(badge.tone, dense)}
|
||||
>
|
||||
{badge.label}
|
||||
</span>
|
||||
@@ -147,7 +200,7 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
|
||||
</div>
|
||||
</td>
|
||||
{props.periods.map((period, index) => (
|
||||
<td key={`${node.id}-${period.id}`}>
|
||||
<td key={`${node.id}-${period.id}`} className="font-mono text-xs">
|
||||
{props.renderCellValue(node.row, period.id, index > 0 ? props.periods[index - 1]?.id ?? null : null)}
|
||||
</td>
|
||||
))}
|
||||
@@ -159,7 +212,8 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
|
||||
</tr>
|
||||
{renderNodes({
|
||||
...props,
|
||||
nodes: node.children
|
||||
nodes: node.children,
|
||||
dense
|
||||
})}
|
||||
</>
|
||||
) : null}
|
||||
@@ -169,9 +223,30 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
|
||||
}
|
||||
|
||||
export function StatementMatrix(props: StatementMatrixProps) {
|
||||
const { dense = false, virtualized = false } = props;
|
||||
const tableClass = dense ? 'data-table-dense min-w-[960px]' : 'data-table min-w-[1040px]';
|
||||
|
||||
// Hooks must be called unconditionally
|
||||
const parentRef = useRef<HTMLDivElement>(null);
|
||||
const flatRows = useMemo(() => flattenSections(props.sections), [props.sections]);
|
||||
|
||||
const virtualizer = useVirtualizer({
|
||||
count: flatRows.length,
|
||||
getScrollElement: () => parentRef.current,
|
||||
estimateSize: (index) => {
|
||||
const item = flatRows[index];
|
||||
if (item.isSectionHeader) return dense ? 32 : 40;
|
||||
if (item.node.kind === 'surface' && surfaceBadges(item.node as any).length > 0) return dense ? 44 : 56;
|
||||
return dense ? 36 : 48;
|
||||
},
|
||||
overscan: 10,
|
||||
});
|
||||
|
||||
// Non-virtualized version (original implementation with dense support)
|
||||
if (!virtualized) {
|
||||
return (
|
||||
<div className="data-table-wrap">
|
||||
<table className="data-table min-w-[1040px]">
|
||||
<table className={tableClass}>
|
||||
<thead>
|
||||
<tr>
|
||||
<th className="sticky left-0 z-10 bg-[color:var(--panel)]">Metric</th>
|
||||
@@ -197,7 +272,8 @@ export function StatementMatrix(props: StatementMatrixProps) {
|
||||
) : null}
|
||||
{renderNodes({
|
||||
...props,
|
||||
nodes: section.nodes
|
||||
nodes: section.nodes,
|
||||
dense
|
||||
})}
|
||||
</Fragment>
|
||||
))}
|
||||
@@ -205,4 +281,136 @@ export function StatementMatrix(props: StatementMatrixProps) {
|
||||
</table>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// Virtualized version for large datasets
|
||||
|
||||
return (
|
||||
<div ref={parentRef} className="data-table-wrap h-[600px] overflow-auto">
|
||||
<table className={tableClass}>
|
||||
<thead className="sticky top-0 z-20 bg-[color:var(--panel)]">
|
||||
<tr>
|
||||
<th className="sticky left-0 z-30 bg-[color:var(--panel)]">Metric</th>
|
||||
{props.periods.map((period) => (
|
||||
<th key={period.id}>
|
||||
<div className="flex flex-col gap-1">
|
||||
<span>{props.periodLabelFormatter(period.periodEnd ?? period.filingDate)}</span>
|
||||
<span className="text-[11px] normal-case tracking-normal text-[color:var(--terminal-muted)]">{period.filingType} · {period.periodLabel}</span>
|
||||
</div>
|
||||
</th>
|
||||
))}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody
|
||||
style={{ height: `${virtualizer.getTotalSize()}px` }}
|
||||
className="relative"
|
||||
>
|
||||
{virtualizer.getVirtualItems().map((virtualRow) => {
|
||||
const item = flatRows[virtualRow.index];
|
||||
|
||||
if (item.isSectionHeader) {
|
||||
return (
|
||||
<tr
|
||||
key={`section-${item.sectionKey}`}
|
||||
className="absolute w-full bg-[color:var(--panel-soft)]"
|
||||
style={{ transform: `translateY(${virtualRow.start}px)` }}
|
||||
>
|
||||
<td colSpan={props.periods.length + 1} className="font-semibold text-[color:var(--terminal-bright)]">
|
||||
{item.sectionLabel}
|
||||
</td>
|
||||
</tr>
|
||||
);
|
||||
}
|
||||
|
||||
const node = item.node;
|
||||
const isSelected = rowSelected(node, props.selectedRowRef);
|
||||
const labelIndent = node.kind === 'detail' ? node.level * 16 + 16 : node.level * 16;
|
||||
const canToggle = isSurfaceNode(node) && node.expandable;
|
||||
const nextSelection: StatementInspectorSelection = node.kind === 'surface'
|
||||
? { kind: 'surface', key: node.row.key }
|
||||
: { kind: 'detail', key: node.row.key, parentKey: node.parentSurfaceKey };
|
||||
|
||||
const buttonSize = dense ? 'size-7' : 'size-11';
|
||||
const buttonClass = dense ? 'rounded' : 'rounded-lg';
|
||||
const labelSize = dense ? 'text-[13px]' : 'text-sm';
|
||||
const detailLabelSize = dense ? 'text-xs' : 'text-[13px]';
|
||||
const paddingY = dense ? 'py-1.5' : 'py-2';
|
||||
const gapClass = dense ? 'gap-1' : 'gap-2';
|
||||
|
||||
return (
|
||||
<tr
|
||||
key={node.id}
|
||||
className={cn('absolute w-full', isSelected && 'bg-[color:rgba(70,77,87,0.48)]')}
|
||||
style={{ transform: `translateY(${virtualRow.start}px)` }}
|
||||
>
|
||||
<td className="sticky left-0 z-10 bg-[color:var(--panel)]">
|
||||
<div className={cn('flex min-w-[240px] items-start', gapClass)} style={{ paddingLeft: `${labelIndent}px` }}>
|
||||
{canToggle ? (
|
||||
<button
|
||||
type="button"
|
||||
aria-label={`${node.expanded ? 'Collapse' : 'Expand'} ${node.row.label} details`}
|
||||
aria-expanded={node.expanded}
|
||||
aria-controls={`statement-children-${node.id}`}
|
||||
className={cn(
|
||||
'mt-0.5 inline-flex shrink-0 items-center justify-center border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] text-[color:var(--terminal-bright)] transition hover:border-[color:var(--line-strong)]',
|
||||
buttonSize,
|
||||
buttonClass
|
||||
)}
|
||||
onClick={(event) => {
|
||||
event.stopPropagation();
|
||||
props.onToggleRow(node.row.key);
|
||||
}}
|
||||
>
|
||||
{node.expanded ? <ChevronDown className="size-3.5" /> : <ChevronRight className="size-3.5" />}
|
||||
</button>
|
||||
) : (
|
||||
<span className={cn('inline-flex shrink-0 items-center justify-center text-[color:var(--terminal-muted)]', buttonSize)} aria-hidden="true">
|
||||
{node.kind === 'detail' ? '·' : ''}
|
||||
</span>
|
||||
)}
|
||||
<button
|
||||
type="button"
|
||||
className={cn('flex min-w-0 flex-1 flex-col items-start gap-0.5 text-left', paddingY)}
|
||||
onClick={() => props.onSelectRow(nextSelection)}
|
||||
>
|
||||
<span className={cn(
|
||||
labelSize,
|
||||
'text-[color:var(--terminal-bright)]',
|
||||
node.kind === 'detail' && cn(detailLabelSize, 'text-[color:var(--terminal-soft)]'),
|
||||
node.kind === 'surface' && node.level > 0 && 'text-[color:var(--terminal-soft)]'
|
||||
)}>
|
||||
{node.row.label}
|
||||
</span>
|
||||
{node.kind === 'detail' ? (
|
||||
<span className="text-[10px] text-[color:var(--terminal-muted)]">
|
||||
{node.row.localName}
|
||||
{node.row.residualFlag ? ' · residual' : ''}
|
||||
</span>
|
||||
) : (
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{surfaceBadges(node as any).map((badge) => (
|
||||
<span
|
||||
key={`${node.row.key}-${badge.label}`}
|
||||
className={badgeClass(badge.tone, dense)}
|
||||
>
|
||||
{badge.label}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
{props.periods.map((period, index) => (
|
||||
<td key={`${node.id}-${period.id}`} className="font-mono text-xs">
|
||||
{props.renderCellValue(node.row, period.id, index > 0 ? props.periods[index - 1]?.id ?? null : null)}
|
||||
</td>
|
||||
))}
|
||||
</tr>
|
||||
);
|
||||
})}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
"@libsql/client": "^0.17.0",
|
||||
"@tailwindcss/postcss": "^4.2.1",
|
||||
"@tanstack/react-query": "^5.90.21",
|
||||
"@tanstack/react-virtual": "^3.13.23",
|
||||
"@workflow/world-postgres": "^4.1.0-beta.42",
|
||||
"ai": "^6.0.116",
|
||||
"better-auth": "^1.5.4",
|
||||
@@ -56,6 +57,7 @@
|
||||
"recharts": "^3.8.0",
|
||||
"sonner": "^2.0.7",
|
||||
"sqlite-vec": "^0.1.7-alpha.2",
|
||||
"sqlite-vec-darwin-arm64": "^0.1.7-alpha.2",
|
||||
"workflow": "^4.1.0-beta.63",
|
||||
"zhipu-ai-provider": "^0.2.2"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user