3 Commits

Author SHA1 Message Date
f4a0014572 refactor: reorganize Financials toolbar and flatten UI
- Group toolbar controls by function (Statement, Period, Mode, Scale)
- Move Trend Chart above Matrix, hidden by default
- Add chart toggle to toolbar actions
- Flatten all sections: remove card styling, use subtle dividers
- Update StatementRowInspector and NormalizationSummary with flat layout
2026-03-16 22:31:45 -04:00
4da9a04993 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>
2026-03-16 21:04:36 -04:00
ca45d8ea4c Redesign dashboard/screener UI for improved density and performance
- Add compact/dense CSS tokens for tighter layouts
- Add size prop to Button (default/compact) and Input (default/compact)
- Add density prop to Panel (normal/compact/dense)
- Add size prop to MetricCard (default/compact/inline)
- Create IndexCardRow component for horizontal metric display
- Create FilterChip component for removable filter tags
- Redesign Command Center with flat sections, reduced cards
- Tighten AppShell spacing (sidebar w-56, header mb-3, main space-y-4)

Design goals achieved:
- Denser, cleaner terminal-style layout
- Reduced card usage in favor of flat sections with dividers
- More space-efficient controls and metrics
- Better use of widescreen layouts
2026-03-16 19:51:00 -04:00
16 changed files with 2186 additions and 780 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1,10 @@
@import "tailwindcss"; @import "tailwindcss";
:root { :root {
--font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif; --font-display:
--font-mono: "Menlo", "SFMono-Regular", "Consolas", "Liberation Mono", monospace; "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
--font-mono:
"Menlo", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
--bg-0: #121417; --bg-0: #121417;
--bg-1: #181b20; --bg-1: #181b20;
--bg-2: #21252b; --bg-2: #21252b;
@@ -57,8 +59,16 @@ body {
font-family: var(--font-display), sans-serif; font-family: var(--font-display), sans-serif;
color: var(--terminal-bright); color: var(--terminal-bright);
background: background:
radial-gradient(circle at 18% -10%, rgba(170, 178, 188, 0.16), transparent 35%), radial-gradient(
radial-gradient(circle at 84% 0%, rgba(121, 128, 138, 0.14), transparent 30%), circle at 18% -10%,
rgba(170, 178, 188, 0.16),
transparent 35%
),
radial-gradient(
circle at 84% 0%,
rgba(121, 128, 138, 0.14),
transparent 30%
),
linear-gradient(140deg, var(--bg-0), var(--bg-1) 50%, var(--bg-2)); linear-gradient(140deg, var(--bg-0), var(--bg-1) 50%, var(--bg-2));
} }
@@ -85,7 +95,10 @@ body {
inset: 0; inset: 0;
pointer-events: none; pointer-events: none;
opacity: 0.24; opacity: 0.24;
background-image: radial-gradient(rgba(220, 226, 234, 0.1) 0.7px, transparent 0.7px); background-image: radial-gradient(
rgba(220, 226, 234, 0.1) 0.7px,
transparent 0.7px
);
background-size: 4px 4px; background-size: 4px 4px;
} }
@@ -114,14 +127,22 @@ textarea {
.data-surface { .data-surface {
border: 1px solid var(--line-weak); border: 1px solid var(--line-weak);
border-radius: 1rem; border-radius: 1rem;
background: linear-gradient(180deg, rgba(40, 43, 49, 0.92), rgba(24, 27, 32, 0.78)); background: linear-gradient(
180deg,
rgba(40, 43, 49, 0.92),
rgba(24, 27, 32, 0.78)
);
} }
.data-table-wrap { .data-table-wrap {
overflow-x: auto; overflow-x: auto;
border: 1px solid var(--line-weak); border: 1px solid var(--line-weak);
border-radius: 1rem; border-radius: 1rem;
background: linear-gradient(180deg, rgba(34, 37, 42, 0.9), rgba(20, 23, 27, 0.76)); background: linear-gradient(
180deg,
rgba(34, 37, 42, 0.9),
rgba(20, 23, 27, 0.76)
);
} }
.data-table th, .data-table th,
@@ -172,8 +193,16 @@ textarea {
@media (max-width: 640px) { @media (max-width: 640px) {
body { body {
background: background:
radial-gradient(circle at 24% -4%, rgba(170, 178, 188, 0.14), transparent 36%), radial-gradient(
radial-gradient(circle at 82% 2%, rgba(121, 128, 138, 0.12), transparent 30%), circle at 24% -4%,
rgba(170, 178, 188, 0.14),
transparent 36%
),
radial-gradient(
circle at 82% 2%,
rgba(121, 128, 138, 0.12),
transparent 30%
),
linear-gradient(155deg, var(--bg-0), var(--bg-1) 54%, var(--bg-2)); linear-gradient(155deg, var(--bg-0), var(--bg-1) 54%, var(--bg-2));
} }
@@ -183,3 +212,207 @@ textarea {
font-size: 0.8125rem; font-size: 0.8125rem;
} }
} }
.panel-compact {
padding: 0.75rem;
}
.panel-dense {
padding: 0.5rem 0.75rem;
}
.data-table-dense {
width: 100%;
border-collapse: collapse;
}
.data-table-dense th,
.data-table-dense td {
border-bottom: 1px solid var(--line-weak);
padding: 0.5rem 0.6rem;
text-align: left;
font-size: 0.8125rem;
vertical-align: top;
}
.data-table-dense th {
font-family: var(--font-mono), monospace;
font-size: 0.6875rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--terminal-muted);
}
.data-table-dense tbody tr:hover {
background-color: rgba(63, 68, 76, 0.32);
}
.metric-compact {
padding-top: 0.5rem;
}
.metric-compact .metric-value {
font-size: 1.25rem;
}
.metric-compact .metric-label {
font-size: 0.625rem;
}
.index-card-row {
display: flex;
gap: 0.5rem;
overflow-x: auto;
padding-bottom: 0.25rem;
scrollbar-width: thin;
}
.index-card-row::-webkit-scrollbar {
height: 4px;
}
.index-card-row::-webkit-scrollbar-track {
background: transparent;
}
.index-card-row::-webkit-scrollbar-thumb {
background: var(--line-weak);
border-radius: 2px;
}
.index-card {
flex-shrink: 0;
min-width: 140px;
padding: 0.625rem 0.75rem;
border-right: 1px solid var(--line-weak);
}
.index-card:last-child {
border-right: none;
}
.index-card .label {
font-family: var(--font-mono), monospace;
font-size: 0.625rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--terminal-muted);
}
.index-card .value {
font-size: 1.125rem;
font-weight: 600;
color: var(--terminal-bright);
margin-top: 0.25rem;
}
.index-card .delta {
font-size: 0.75rem;
margin-top: 0.125rem;
}
.index-card .delta.positive {
color: #96f5bf;
}
.index-card .delta.negative {
color: #ff9f9f;
}
.filter-chip {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.25rem 0.5rem;
border-radius: 0.5rem;
border: 1px solid var(--line-weak);
background: var(--panel-soft);
font-size: 0.6875rem;
font-family: var(--font-mono), monospace;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--terminal-bright);
transition:
border-color 0.15s,
background-color 0.15s;
}
.filter-chip:hover {
border-color: var(--line-strong);
}
.filter-chip .remove {
display: flex;
align-items: center;
justify-content: center;
width: 14px;
height: 14px;
border-radius: 3px;
cursor: pointer;
opacity: 0.6;
transition:
opacity 0.15s,
background-color 0.15s;
}
.filter-chip .remove:hover {
opacity: 1;
background: rgba(255, 255, 255, 0.1);
}
.section-divider {
border-top: 1px solid var(--line-weak);
margin-top: 1rem;
padding-top: 1rem;
}
.section-divider-compact {
border-top: 1px solid var(--line-weak);
margin-top: 0.75rem;
padding-top: 0.75rem;
}
.toolbar-row {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
}
.screener-table-wrap {
overflow-x: auto;
border: 1px solid var(--line-weak);
border-radius: 0.75rem;
background: linear-gradient(
180deg,
rgba(34, 37, 42, 0.9),
rgba(20, 23, 27, 0.76)
);
}
.screener-table-wrap thead {
position: sticky;
top: 0;
background: rgba(28, 31, 36, 0.95);
z-index: 1;
}
.screener-table-wrap thead::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 1px;
background: var(--line-weak);
}
.control-compact {
min-height: 32px;
padding: 0.375rem 0.625rem;
font-size: 0.75rem;
}
.control-compact.rounded-xl {
border-radius: 0.625rem;
}

View File

@@ -1,31 +1,32 @@
'use client'; "use client";
import { useQueryClient } from '@tanstack/react-query'; import { useQueryClient } from "@tanstack/react-query";
import Link from 'next/link'; import Link from "next/link";
import { useCallback, useEffect, useMemo, useState } from 'react'; import { useCallback, useEffect, useMemo, useState } from "react";
import { Activity, Bot, RefreshCw, Sparkles } from 'lucide-react'; import { Activity, Bot, RefreshCw, Sparkles } from "lucide-react";
import { AppShell } from '@/components/shell/app-shell'; import { AppShell } from "@/components/shell/app-shell";
import { Panel } from '@/components/ui/panel'; import { Panel } from "@/components/ui/panel";
import { Button } from '@/components/ui/button'; import { Button } from "@/components/ui/button";
import { MetricCard } from '@/components/dashboard/metric-card'; import { TaskFeed } from "@/components/dashboard/task-feed";
import { TaskFeed } from '@/components/dashboard/task-feed'; import { IndexCardRow } from "@/components/dashboard/index-card-row";
import { useAuthGuard } from '@/hooks/use-auth-guard'; import { useAuthGuard } from "@/hooks/use-auth-guard";
import { useLinkPrefetch } from '@/hooks/use-link-prefetch'; import { useLinkPrefetch } from "@/hooks/use-link-prefetch";
import { queuePortfolioInsights, queuePriceRefresh } from "@/lib/api";
import { buildGraphingHref } from "@/lib/graphing/catalog";
import type { PortfolioInsight, PortfolioSummary, Task } from "@/lib/types";
import { import {
queuePortfolioInsights, formatCompactCurrency,
queuePriceRefresh formatCurrency,
} from '@/lib/api'; formatPercent,
import { buildGraphingHref } from '@/lib/graphing/catalog'; } from "@/lib/format";
import type { PortfolioInsight, PortfolioSummary, Task } from '@/lib/types'; import { queryKeys } from "@/lib/query/keys";
import { formatCompactCurrency, formatCurrency, formatPercent } from '@/lib/format';
import { queryKeys } from '@/lib/query/keys';
import { import {
filingsQueryOptions, filingsQueryOptions,
latestPortfolioInsightQueryOptions, latestPortfolioInsightQueryOptions,
portfolioSummaryQueryOptions, portfolioSummaryQueryOptions,
recentTasksQueryOptions, recentTasksQueryOptions,
watchlistQueryOptions watchlistQueryOptions,
} from '@/lib/query/options'; } from "@/lib/query/options";
type DashboardState = { type DashboardState = {
summary: PortfolioSummary; summary: PortfolioSummary;
@@ -38,15 +39,15 @@ type DashboardState = {
const EMPTY_STATE: DashboardState = { const EMPTY_STATE: DashboardState = {
summary: { summary: {
positions: 0, positions: 0,
total_value: '0', total_value: "0",
total_gain_loss: '0', total_gain_loss: "0",
total_cost_basis: '0', total_cost_basis: "0",
avg_return_pct: '0' avg_return_pct: "0",
}, },
filingsCount: 0, filingsCount: 0,
watchlistCount: 0, watchlistCount: 0,
tasks: [], tasks: [],
latestInsight: null latestInsight: null,
}; };
export default function CommandCenterPage() { export default function CommandCenterPage() {
@@ -71,12 +72,13 @@ export default function CommandCenterPage() {
setError(null); setError(null);
try { try {
const [summaryRes, filingsRes, watchlistRes, tasksRes, insightRes] = await Promise.all([ const [summaryRes, filingsRes, watchlistRes, tasksRes, insightRes] =
await Promise.all([
queryClient.ensureQueryData(summaryOptions), queryClient.ensureQueryData(summaryOptions),
queryClient.ensureQueryData(filingsOptions), queryClient.ensureQueryData(filingsOptions),
queryClient.ensureQueryData(watchlistOptions), queryClient.ensureQueryData(watchlistOptions),
queryClient.ensureQueryData(tasksOptions), queryClient.ensureQueryData(tasksOptions),
queryClient.ensureQueryData(insightOptions) queryClient.ensureQueryData(insightOptions),
]); ]);
setState({ setState({
@@ -84,10 +86,10 @@ export default function CommandCenterPage() {
filingsCount: filingsRes.filings.length, filingsCount: filingsRes.filings.length,
watchlistCount: watchlistRes.items.length, watchlistCount: watchlistRes.items.length,
tasks: tasksRes.tasks, tasks: tasksRes.tasks,
latestInsight: insightRes.insight latestInsight: insightRes.insight,
}); });
} catch (err) { } catch (err) {
setError(err instanceof Error ? err.message : 'Failed to load dashboard'); setError(err instanceof Error ? err.message : "Failed to load dashboard");
} finally { } finally {
setLoading(false); setLoading(false);
} }
@@ -100,39 +102,55 @@ export default function CommandCenterPage() {
}, [isPending, isAuthenticated, loadData]); }, [isPending, isAuthenticated, loadData]);
const headerActions = ( const headerActions = (
<> <div className="flex gap-2">
<Button <Button
variant="secondary" variant="secondary"
size="compact"
onClick={async () => { onClick={async () => {
try { try {
await queuePriceRefresh(); await queuePriceRefresh();
void queryClient.invalidateQueries({ queryKey: queryKeys.recentTasks(20) }); void queryClient.invalidateQueries({
void queryClient.invalidateQueries({ queryKey: queryKeys.portfolioSummary() }); queryKey: queryKeys.recentTasks(20),
});
void queryClient.invalidateQueries({
queryKey: queryKeys.portfolioSummary(),
});
await loadData(); await loadData();
} catch (err) { } catch (err) {
setError(err instanceof Error ? err.message : 'Failed to queue price refresh'); setError(
err instanceof Error
? err.message
: "Failed to queue price refresh",
);
} }
}} }}
> >
<RefreshCw className="size-4" /> <RefreshCw className="size-3.5" />
Refresh prices Refresh
</Button> </Button>
<Button <Button
size="compact"
onClick={async () => { onClick={async () => {
try { try {
await queuePortfolioInsights(); await queuePortfolioInsights();
void queryClient.invalidateQueries({ queryKey: queryKeys.recentTasks(20) }); void queryClient.invalidateQueries({
void queryClient.invalidateQueries({ queryKey: queryKeys.latestPortfolioInsight() }); queryKey: queryKeys.recentTasks(20),
});
void queryClient.invalidateQueries({
queryKey: queryKeys.latestPortfolioInsight(),
});
await loadData(); await loadData();
} catch (err) { } catch (err) {
setError(err instanceof Error ? err.message : 'Failed to queue AI insight'); setError(
err instanceof Error ? err.message : "Failed to queue AI insight",
);
} }
}} }}
> >
<Sparkles className="size-4" /> <Sparkles className="size-3.5" />
Queue AI insight AI Insight
</Button> </Button>
</> </div>
); );
const signedGain = useMemo(() => { const signedGain = useMemo(() => {
@@ -140,114 +158,200 @@ export default function CommandCenterPage() {
return gain >= 0 ? `+${formatCurrency(gain)}` : formatCurrency(gain); return gain >= 0 ? `+${formatCurrency(gain)}` : formatCurrency(gain);
}, [state.summary.total_gain_loss]); }, [state.summary.total_gain_loss]);
const indexCards = useMemo(
() => [
{
label: "Portfolio Value",
value: formatCurrency(state.summary.total_value),
delta: formatCompactCurrency(state.summary.total_cost_basis),
},
{
label: "Unrealized P&L",
value: signedGain,
delta: formatPercent(state.summary.avg_return_pct),
positive: Number(state.summary.total_gain_loss) >= 0,
},
{
label: "Filings",
value: String(state.filingsCount),
delta: "Last 200",
},
{
label: "Coverage",
value: String(state.watchlistCount),
delta: `${state.summary.positions} active`,
},
],
[state, signedGain],
);
if (isPending || !isAuthenticated) { if (isPending || !isAuthenticated) {
return <div className="flex min-h-screen items-center justify-center text-sm text-[color:var(--terminal-muted)]">Booting secure terminal...</div>; return (
<div className="flex min-h-screen items-center justify-center text-sm text-[color:var(--terminal-muted)]">
Booting secure terminal...
</div>
);
} }
return ( return (
<AppShell <AppShell
title="Command Center" title="Command Center"
subtitle={`Welcome back${session?.user?.name ? `, ${session.user.name}` : ''}. Review tasks, portfolio health, and AI outputs.`} subtitle={
session?.user?.name
? `Welcome back, ${session.user.name}`
: "Review tasks, portfolio health, and AI outputs."
}
actions={headerActions} actions={headerActions}
> >
{error ? ( {error ? (
<Panel variant="surface"> <div className="rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--danger-soft)] px-3 py-2 text-sm text-[#ffb5b5]">
<p className="text-sm text-[#ffb5b5]">{error}</p> {error}
</Panel> </div>
) : null} ) : null}
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 xl:grid-cols-4"> <div className="rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)]">
<MetricCard label="Portfolio Value" value={formatCurrency(state.summary.total_value)} delta={formatCompactCurrency(state.summary.total_cost_basis)} /> <IndexCardRow cards={indexCards} />
<MetricCard
label="Unrealized P&L"
value={signedGain}
delta={formatPercent(state.summary.avg_return_pct)}
positive={Number(state.summary.total_gain_loss) >= 0}
/>
<MetricCard label="Tracked Filings" value={String(state.filingsCount)} delta="Last 200 records" />
<MetricCard label="Coverage Names" value={String(state.watchlistCount)} delta={`${state.summary.positions} positions active`} />
</div> </div>
<div className="grid grid-cols-1 gap-6 xl:grid-cols-3"> <div className="grid grid-cols-1 gap-4 xl:grid-cols-3">
<Panel title="Recent Tasks" subtitle="Durable jobs from queue processor" className="xl:col-span-1" variant="surface"> <div className="border-t border-[color:var(--line-weak)] pt-4 xl:col-span-1">
<div className="mb-3 flex items-center justify-between">
<h3 className="text-sm font-semibold text-[color:var(--terminal-bright)]">
Recent Tasks
</h3>
<span className="terminal-caption text-[10px] uppercase tracking-[0.12em] text-[color:var(--terminal-muted)]">
Queue Processor
</span>
</div>
{loading ? ( {loading ? (
<p className="text-sm text-[color:var(--terminal-muted)]">Loading tasks...</p> <p className="text-xs text-[color:var(--terminal-muted)]">
Loading...
</p>
) : ( ) : (
<TaskFeed tasks={state.tasks} /> <TaskFeed tasks={state.tasks} />
)} )}
</Panel> </div>
<Panel title="AI Brief" subtitle="Latest portfolio insight from AI SDK (Zhipu)" className="xl:col-span-2" variant="surface"> <div className="border-t border-[color:var(--line-weak)] pt-4 xl:col-span-2">
{loading ? ( <div className="mb-3 flex items-center justify-between">
<p className="text-sm text-[color:var(--terminal-muted)]">Loading intelligence output...</p> <h3 className="text-sm font-semibold text-[color:var(--terminal-bright)]">
) : state.latestInsight ? ( AI Brief
<> </h3>
<div className="mb-3 inline-flex items-center gap-2 rounded-md border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-2 py-1 text-xs text-[color:var(--terminal-muted)]"> {state.latestInsight ? (
<Bot className="size-3.5" /> <div className="inline-flex items-center gap-1.5 rounded border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-2 py-0.5 text-[10px] text-[color:var(--terminal-muted)]">
<Bot className="size-3" />
{state.latestInsight.provider} :: {state.latestInsight.model} {state.latestInsight.provider} :: {state.latestInsight.model}
</div> </div>
<p className="whitespace-pre-wrap text-sm leading-6 text-[color:var(--terminal-bright)]">{state.latestInsight.content}</p> ) : null}
</> </div>
{loading ? (
<p className="text-xs text-[color:var(--terminal-muted)]">
Loading...
</p>
) : state.latestInsight ? (
<p className="whitespace-pre-wrap text-sm leading-6 text-[color:var(--terminal-bright)]">
{state.latestInsight.content}
</p>
) : ( ) : (
<p className="text-sm text-[color:var(--terminal-muted)]">No AI brief yet. Queue one from the action bar.</p> <p className="text-xs text-[color:var(--terminal-muted)]">
No AI brief yet. Queue one from the action bar.
</p>
)} )}
</Panel> </div>
</div> </div>
<Panel title="Quick Links" subtitle="Feature modules"> <div className="border-t border-[color:var(--line-weak)] pt-4">
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 xl:grid-cols-3"> <h3 className="mb-3 text-sm font-semibold text-[color:var(--terminal-bright)]">
<Link className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" href="/analysis"> Quick Links
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Overview</p> </h3>
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Inspect one company across price, SEC context, valuation, and recent developments.</p> <div className="grid grid-cols-1 gap-2 sm:grid-cols-2 lg:grid-cols-3">
</Link> <Link
<Link className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" href="/financials"> className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Financials</p> href="/analysis"
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Focus on multi-period filing metrics, margins, leverage, and balance sheet composition.</p> >
</Link> <p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
<Link className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" href={buildGraphingHref()}> Overview
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Graphing</p> </p>
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Compare one normalized metric across multiple companies with shareable chart state.</p> <p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
Company analysis, price, valuation, and developments.
</p>
</Link> </Link>
<Link <Link
className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
href="/financials"
>
<p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
Financials
</p>
<p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
Multi-period metrics, margins, and balance sheet.
</p>
</Link>
<Link
className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
href={buildGraphingHref()}
>
<p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
Graphing
</p>
<p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
Compare normalized metrics across companies.
</p>
</Link>
<Link
className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
href="/filings" href="/filings"
onMouseEnter={() => { onMouseEnter={() => {
void queryClient.prefetchQuery(filingsQueryOptions({ limit: 120 })); void queryClient.prefetchQuery(
filingsQueryOptions({ limit: 120 }),
);
}} }}
onFocus={() => { onFocus={() => {
void queryClient.prefetchQuery(filingsQueryOptions({ limit: 120 })); void queryClient.prefetchQuery(
filingsQueryOptions({ limit: 120 }),
);
}} }}
> >
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Filings</p> <p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Sync SEC filings and trigger AI memo analysis.</p> Filings
</p>
<p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
SEC filings and AI memo analysis.
</p>
</Link> </Link>
<Link <Link
className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
href="/portfolio" href="/portfolio"
onMouseEnter={() => prefetchPortfolioSurfaces()} onMouseEnter={() => prefetchPortfolioSurfaces()}
onFocus={() => prefetchPortfolioSurfaces()} onFocus={() => prefetchPortfolioSurfaces()}
> >
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Portfolio</p> <p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Manage the active private portfolio and mark positions to market.</p> Portfolio
</p>
<p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
Manage positions and mark to market.
</p>
</Link> </Link>
<Link <Link
className="border-l-2 border-[color:var(--line-weak)] py-1 pl-4 pr-2 transition hover:border-[color:var(--line-strong)]" className="border-l-2 border-[color:var(--line-weak)] py-1 pl-3 pr-2 transition hover:border-[color:var(--line-strong)]"
href="/watchlist" href="/watchlist"
onMouseEnter={() => prefetchPortfolioSurfaces()} onMouseEnter={() => prefetchPortfolioSurfaces()}
onFocus={() => prefetchPortfolioSurfaces()} onFocus={() => prefetchPortfolioSurfaces()}
> >
<p className="panel-heading text-xs uppercase text-[color:var(--terminal-muted)]">Coverage</p> <p className="panel-heading text-[10px] uppercase tracking-[0.14em] text-[color:var(--terminal-muted)]">
<p className="mt-2 text-sm text-[color:var(--terminal-bright)]">Track research status, review cadence, and filing freshness per company.</p> Coverage
</p>
<p className="mt-1 text-xs text-[color:var(--terminal-bright)]">
Track research status and filing freshness.
</p>
</Link> </Link>
</div> </div>
</Panel>
<Panel>
<div className="flex items-center gap-2 text-xs uppercase tracking-[0.24em] text-[color:var(--terminal-muted)]">
<Activity className="size-4" />
Runtime state: {loading ? 'syncing' : 'stable'}
</div> </div>
</Panel>
<div className="flex items-center gap-2 text-[10px] uppercase tracking-[0.2em] text-[color:var(--terminal-muted)]">
<Activity className="size-3" />
Runtime: {loading ? "syncing" : "stable"}
</div>
</AppShell> </AppShell>
); );
} }

View File

@@ -9,6 +9,7 @@
"@libsql/client": "^0.17.0", "@libsql/client": "^0.17.0",
"@tailwindcss/postcss": "^4.2.1", "@tailwindcss/postcss": "^4.2.1",
"@tanstack/react-query": "^5.90.21", "@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.23",
"@workflow/world-postgres": "^4.1.0-beta.42", "@workflow/world-postgres": "^4.1.0-beta.42",
"ai": "^6.0.116", "ai": "^6.0.116",
"better-auth": "^1.5.4", "better-auth": "^1.5.4",
@@ -25,6 +26,7 @@
"recharts": "^3.8.0", "recharts": "^3.8.0",
"sonner": "^2.0.7", "sonner": "^2.0.7",
"sqlite-vec": "^0.1.7-alpha.2", "sqlite-vec": "^0.1.7-alpha.2",
"sqlite-vec-darwin-arm64": "^0.1.7-alpha.2",
"workflow": "^4.1.0-beta.63", "workflow": "^4.1.0-beta.63",
"zhipu-ai-provider": "^0.2.2", "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-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/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=="], "@tokenizer/token": ["@tokenizer/token@0.3.0", "", {}, "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="],

View File

@@ -0,0 +1,47 @@
"use client";
import { memo } from "react";
import { cn } from "@/lib/utils";
type IndexCardProps = {
label: string;
value: string;
delta?: string;
positive?: boolean;
};
export type { IndexCardProps };
type IndexCardRowProps = {
cards: IndexCardProps[];
className?: string;
};
const IndexCard = memo(function IndexCard({
label,
value,
delta,
positive = true,
}: IndexCardProps) {
return (
<div className="index-card">
<p className="label">{label}</p>
<p className="value">{value}</p>
{delta ? (
<p className={cn("delta", positive ? "positive" : "negative")}>
{delta}
</p>
) : null}
</div>
);
});
export function IndexCardRow({ cards, className }: IndexCardRowProps) {
return (
<div className={cn("index-card-row", className)}>
{cards.map((card, index) => (
<IndexCard key={`${card.label}-${index}`} {...card} />
))}
</div>
);
}

View File

@@ -1,4 +1,6 @@
import { cn } from '@/lib/utils'; import { cn } from "@/lib/utils";
type MetricCardSize = "default" | "compact" | "inline";
type MetricCardProps = { type MetricCardProps = {
label: string; label: string;
@@ -6,15 +8,79 @@ type MetricCardProps = {
delta?: string; delta?: string;
positive?: boolean; positive?: boolean;
className?: string; className?: string;
size?: MetricCardSize;
}; };
export function MetricCard({ label, value, delta, positive = true, className }: MetricCardProps) { export function MetricCard({
label,
value,
delta,
positive = true,
className,
size = "default",
}: MetricCardProps) {
if (size === "inline") {
return ( return (
<div className={cn('min-w-0 border-t border-[color:var(--line-weak)] pt-3', className)}> <div className={cn("index-card", className)}>
<p className="panel-heading text-[11px] uppercase tracking-[0.18em] text-[color:var(--terminal-muted)]">{label}</p> <p className="label">{label}</p>
<p className="mt-2 text-3xl font-semibold text-[color:var(--terminal-bright)]">{value}</p> <p className="value">{value}</p>
{delta ? ( {delta ? (
<p className={cn('mt-2 text-xs', positive ? 'text-[#96f5bf]' : 'text-[#ff9898]')}> <p className={cn("delta", positive ? "positive" : "negative")}>
{delta}
</p>
) : null}
</div>
);
}
if (size === "compact") {
return (
<div
className={cn(
"min-w-0 border-t border-[color:var(--line-weak)] pt-2",
className,
)}
>
<p className="panel-heading text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">
{label}
</p>
<p className="mt-1 text-xl font-semibold text-[color:var(--terminal-bright)]">
{value}
</p>
{delta ? (
<p
className={cn(
"mt-1 text-[10px]",
positive ? "text-[#96f5bf]" : "text-[#ff9898]",
)}
>
{delta}
</p>
) : null}
</div>
);
}
return (
<div
className={cn(
"min-w-0 border-t border-[color:var(--line-weak)] pt-3",
className,
)}
>
<p className="panel-heading text-[11px] uppercase tracking-[0.18em] text-[color:var(--terminal-muted)]">
{label}
</p>
<p className="mt-2 text-3xl font-semibold text-[color:var(--terminal-bright)]">
{value}
</p>
{delta ? (
<p
className={cn(
"mt-2 text-xs",
positive ? "text-[#96f5bf]" : "text-[#ff9898]",
)}
>
{delta} {delta}
</p> </p>
) : null} ) : null}

View File

@@ -0,0 +1,240 @@
"use client";
import {
Fragment,
memo,
useMemo,
useCallback,
useRef,
useEffect,
useState,
} from "react";
import { Download, Search, BarChart3 } 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;
showChart?: boolean;
onToggleChart?: () => void;
className?: string;
};
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 ControlGroup({
children,
showDivider = false,
}: {
children: React.ReactNode;
showDivider?: boolean;
}) {
return (
<div className="flex items-center gap-1.5">
{showDivider && <div className="mr-1.5 h-5 w-px bg-[var(--line-weak)]" />}
{children}
</div>
);
}
function FinancialsToolbarComponent({
sections,
searchValue,
onSearchChange,
onExport,
showChart = false,
onToggleChart,
className,
}: FinancialsToolbarProps) {
const [localSearch, setLocalSearch] = useState(searchValue);
const debouncedSearch = useDebounce(localSearch, 300);
useEffect(() => {
onSearchChange(debouncedSearch);
}, [debouncedSearch, onSearchChange]);
useEffect(() => {
setLocalSearch(searchValue);
}, [searchValue]);
const groupedSections = useMemo(() => {
const statementKeys = ["surface"];
const periodKeys = ["cadence"];
const modeKeys = ["display"];
const scaleKeys = ["scale"];
return {
statement: sections.filter((s) => statementKeys.includes(s.key)),
period: sections.filter((s) => periodKeys.includes(s.key)),
mode: sections.filter((s) => modeKeys.includes(s.key)),
scale: sections.filter((s) => scaleKeys.includes(s.key)),
};
}, [sections]);
return (
<div className={cn("flex flex-col gap-2", className)}>
<div className="flex flex-wrap items-center gap-y-2">
<ControlGroup>
{groupedSections.statement.map((section) => (
<Fragment key={section.key}>
{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>
);
})}
</Fragment>
))}
</ControlGroup>
<ControlGroup showDivider>
{groupedSections.period.map((section) => (
<Fragment key={section.key}>
{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>
);
})}
</Fragment>
))}
</ControlGroup>
{groupedSections.mode.length > 0 && (
<ControlGroup showDivider>
{groupedSections.mode.map((section) => (
<Fragment key={section.key}>
{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>
);
})}
</Fragment>
))}
</ControlGroup>
)}
<ControlGroup showDivider>
{groupedSections.scale.map((section) => (
<Fragment key={section.key}>
{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>
);
})}
</Fragment>
))}
</ControlGroup>
<div className="flex-1" />
<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-40 pl-7"
/>
</div>
{onToggleChart && (
<Button
variant={showChart ? "secondary" : "ghost"}
size="compact"
onClick={onToggleChart}
className="gap-1.5"
aria-pressed={showChart}
>
<BarChart3 className="h-3.5 w-3.5" />
<span className="hidden sm:inline">
{showChart ? "Hide" : "Show"} Chart
</span>
</Button>
)}
{onExport && (
<Button
variant="ghost"
size="compact"
onClick={onExport}
className="gap-1.5"
>
<Download className="h-3.5 w-3.5" />
Export
</Button>
)}
</div>
</div>
</div>
);
}
export const FinancialsToolbar = memo(FinancialsToolbarComponent);

View File

@@ -1,66 +1,103 @@
'use client'; "use client";
import { AlertTriangle } from 'lucide-react'; import { AlertTriangle } from "lucide-react";
import { Panel } from '@/components/ui/panel'; import type { NormalizationMetadata } from "@/lib/types";
import type { NormalizationMetadata } from '@/lib/types'; import { cn } from "@/lib/utils";
import { cn } from '@/lib/utils';
type NormalizationSummaryProps = { type NormalizationSummaryProps = {
normalization: NormalizationMetadata; normalization: NormalizationMetadata;
}; };
function SummaryCard(props: { function SummaryField(props: {
label: string; label: string;
value: string; value: string;
tone?: 'default' | 'warning'; tone?: "default" | "warning";
}) { }) {
return ( return (
<div <div
className={cn( className={cn(
'data-surface px-3 py-3', "py-2",
props.tone === 'warning' && 'border-[#7f6250] bg-[linear-gradient(180deg,rgba(80,58,41,0.92),rgba(38,27,21,0.78))]' props.tone === "warning" && "border-l-2 border-[#7f6250] pl-3",
)} )}
> >
<p className="panel-heading text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">{props.label}</p> <p className="text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">
<p className="mt-1 text-sm font-semibold text-[color:var(--terminal-bright)]">{props.value}</p> {props.label}
</p>
<p
className={cn(
"text-sm font-semibold",
props.tone === "warning"
? "text-[#ffd7bf]"
: "text-[color:var(--terminal-bright)]",
)}
>
{props.value}
</p>
</div> </div>
); );
} }
export function NormalizationSummary({ normalization }: NormalizationSummaryProps) { export function NormalizationSummary({
normalization,
}: NormalizationSummaryProps) {
const hasMaterialUnmapped = normalization.materialUnmappedRowCount > 0; const hasMaterialUnmapped = normalization.materialUnmappedRowCount > 0;
const hasWarnings = normalization.warnings.length > 0; const hasWarnings = normalization.warnings.length > 0;
return ( return (
<Panel <section className="border-t border-[color:var(--line-weak)] pt-4">
title="Normalization Summary" <header className="mb-3">
subtitle="Pack, parser, and residual mapping health for the compact statement surface." <h3 className="text-sm font-semibold text-[color:var(--terminal-bright)]">
variant="surface" Normalization Summary
> </h3>
<div className="grid gap-3 md:grid-cols-2 xl:grid-cols-8"> <p className="text-xs text-[color:var(--terminal-muted)]">
<SummaryCard label="Pack" value={normalization.fiscalPack ?? 'unknown'} /> Pack, parser, and residual mapping health for the compact statement
<SummaryCard label="Regime" value={normalization.regime} /> surface.
<SummaryCard label="Parser" value={`${normalization.parserEngine} ${normalization.parserVersion}`} /> </p>
<SummaryCard label="Surface Rows" value={String(normalization.surfaceRowCount)} /> </header>
<SummaryCard label="Detail Rows" value={String(normalization.detailRowCount)} />
<SummaryCard label="KPI Rows" value={String(normalization.kpiRowCount)} /> <div className="grid gap-x-6 gap-y-1 md:grid-cols-4 xl:grid-cols-8">
<SummaryCard label="Unmapped Rows" value={String(normalization.unmappedRowCount)} /> <SummaryField
<SummaryCard label="Pack"
value={normalization.fiscalPack ?? "unknown"}
/>
<SummaryField label="Regime" value={normalization.regime} />
<SummaryField
label="Parser"
value={`${normalization.parserEngine} ${normalization.parserVersion}`}
/>
<SummaryField
label="Surface Rows"
value={String(normalization.surfaceRowCount)}
/>
<SummaryField
label="Detail Rows"
value={String(normalization.detailRowCount)}
/>
<SummaryField
label="KPI Rows"
value={String(normalization.kpiRowCount)}
/>
<SummaryField
label="Unmapped Rows"
value={String(normalization.unmappedRowCount)}
/>
<SummaryField
label="Material Unmapped" label="Material Unmapped"
value={String(normalization.materialUnmappedRowCount)} value={String(normalization.materialUnmappedRowCount)}
tone={hasMaterialUnmapped ? 'warning' : 'default'} tone={hasMaterialUnmapped ? "warning" : "default"}
/> />
</div> </div>
{hasWarnings ? ( {hasWarnings ? (
<div className="mt-3 rounded-xl border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-3"> <div className="mt-3 border-t border-[color:var(--line-weak)] pt-3">
<p className="panel-heading text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]"> <p className="text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">
Parser Warnings Parser Warnings
</p> </p>
<div className="mt-2 flex flex-wrap gap-2"> <div className="mt-2 flex flex-wrap gap-2">
{normalization.warnings.map((warning) => ( {normalization.warnings.map((warning) => (
<span <span
key={warning} key={warning}
className="rounded-full border border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] px-3 py-1 text-xs text-[color:var(--terminal-bright)]" className="rounded border border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] px-2 py-0.5 text-xs text-[color:var(--terminal-bright)]"
> >
{warning} {warning}
</span> </span>
@@ -68,12 +105,17 @@ export function NormalizationSummary({ normalization }: NormalizationSummaryProp
</div> </div>
</div> </div>
) : null} ) : null}
{hasMaterialUnmapped ? ( {hasMaterialUnmapped ? (
<div className="mt-3 flex items-start gap-2 rounded-xl border border-[#7f6250] bg-[rgba(91,66,46,0.18)] px-3 py-3 text-sm text-[#f5d5c0]"> <div className="mt-3 flex items-start gap-2 border-l-2 border-[#7f6250] pl-3 text-sm text-[#f5d5c0]">
<AlertTriangle className="mt-0.5 size-4 shrink-0" /> <AlertTriangle className="mt-0.5 size-4 shrink-0" />
<p>Material unmapped rows were detected for this filing set. Use the inspector and detail rows before relying on cross-company comparisons.</p> <p>
Material unmapped rows were detected for this filing set. Use the
inspector and detail rows before relying on cross-company
comparisons.
</p>
</div> </div>
) : null} ) : null}
</Panel> </section>
); );
} }

View File

@@ -1,6 +1,7 @@
'use client'; '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 { ChevronDown, ChevronRight } from 'lucide-react';
import type { FinancialStatementPeriod, SurfaceFinancialRow, DetailFinancialRow } from '@/lib/types'; import type { FinancialStatementPeriod, SurfaceFinancialRow, DetailFinancialRow } from '@/lib/types';
import { cn } from '@/lib/utils'; import { cn } from '@/lib/utils';
@@ -20,6 +21,8 @@ type StatementMatrixProps = {
onSelectRow: (selection: StatementInspectorSelection) => void; onSelectRow: (selection: StatementInspectorSelection) => void;
renderCellValue: (row: MatrixRow, periodId: string, previousPeriodId: string | null) => string; renderCellValue: (row: MatrixRow, periodId: string, previousPeriodId: string | null) => string;
periodLabelFormatter: (value: string) => string; periodLabelFormatter: (value: string) => string;
dense?: boolean;
virtualized?: boolean;
}; };
function isSurfaceNode(node: StatementTreeNode): node is Extract<StatementTreeNode, { kind: 'surface' }> { function isSurfaceNode(node: StatementTreeNode): node is Extract<StatementTreeNode, { kind: 'surface' }> {
@@ -66,22 +69,70 @@ function surfaceBadges(node: Extract<StatementTreeNode, { kind: 'surface' }>) {
return badges; 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') { 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') { 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) => { return props.nodes.map((node) => {
const isSelected = rowSelected(node, props.selectedRowRef); 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 canToggle = isSurfaceNode(node) && node.expandable;
const nextSelection: StatementInspectorSelection = node.kind === 'surface' const nextSelection: StatementInspectorSelection = node.kind === 'surface'
? { kind: 'surface', key: node.row.key } ? { kind: 'surface', key: node.row.key }
@@ -91,40 +142,45 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
<Fragment key={node.id}> <Fragment key={node.id}>
<tr className={cn(isSelected && 'bg-[color:rgba(70,77,87,0.48)]')}> <tr className={cn(isSelected && 'bg-[color:rgba(70,77,87,0.48)]')}>
<td className="sticky left-0 z-10 bg-[color:var(--panel)]"> <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 ? ( {canToggle ? (
<button <button
type="button" type="button"
aria-label={`${node.expanded ? 'Collapse' : 'Expand'} ${node.row.label} details`} aria-label={`${node.expanded ? 'Collapse' : 'Expand'} ${node.row.label} details`}
aria-expanded={node.expanded} aria-expanded={node.expanded}
aria-controls={`statement-children-${node.id}`} 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) => { onClick={(event) => {
event.stopPropagation(); event.stopPropagation();
props.onToggleRow(node.row.key); 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> </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' ? '·' : ''} {node.kind === 'detail' ? '·' : ''}
</span> </span>
)} )}
<button <button
type="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)} onClick={() => props.onSelectRow(nextSelection)}
> >
<span className={cn( <span className={cn(
'text-sm text-[color:var(--terminal-bright)]', labelSize,
node.kind === 'detail' && 'text-[13px] text-[color:var(--terminal-soft)]', '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.kind === 'surface' && node.level > 0 && 'text-[color:var(--terminal-soft)]'
)}> )}>
{node.row.label} {node.row.label}
</span> </span>
{node.kind === 'detail' ? ( {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.localName}
{node.row.residualFlag ? ' · residual' : ''} {node.row.residualFlag ? ' · residual' : ''}
</span> </span>
@@ -133,10 +189,7 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
{surfaceBadges(node).map((badge) => ( {surfaceBadges(node).map((badge) => (
<span <span
key={`${node.row.key}-${badge.label}`} key={`${node.row.key}-${badge.label}`}
className={cn( className={badgeClass(badge.tone, dense)}
'rounded-full border px-2 py-0.5 text-[10px] uppercase tracking-[0.14em]',
badgeClass(badge.tone)
)}
> >
{badge.label} {badge.label}
</span> </span>
@@ -147,7 +200,7 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
</div> </div>
</td> </td>
{props.periods.map((period, index) => ( {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)} {props.renderCellValue(node.row, period.id, index > 0 ? props.periods[index - 1]?.id ?? null : null)}
</td> </td>
))} ))}
@@ -159,7 +212,8 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
</tr> </tr>
{renderNodes({ {renderNodes({
...props, ...props,
nodes: node.children nodes: node.children,
dense
})} })}
</> </>
) : null} ) : null}
@@ -169,9 +223,30 @@ function renderNodes(props: StatementMatrixProps & { nodes: StatementTreeNode[]
} }
export function StatementMatrix(props: StatementMatrixProps) { 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 ( return (
<div className="data-table-wrap"> <div className="data-table-wrap">
<table className="data-table min-w-[1040px]"> <table className={tableClass}>
<thead> <thead>
<tr> <tr>
<th className="sticky left-0 z-10 bg-[color:var(--panel)]">Metric</th> <th className="sticky left-0 z-10 bg-[color:var(--panel)]">Metric</th>
@@ -197,7 +272,8 @@ export function StatementMatrix(props: StatementMatrixProps) {
) : null} ) : null}
{renderNodes({ {renderNodes({
...props, ...props,
nodes: section.nodes nodes: section.nodes,
dense
})} })}
</Fragment> </Fragment>
))} ))}
@@ -205,4 +281,136 @@ export function StatementMatrix(props: StatementMatrixProps) {
</table> </table>
</div> </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>
);
} }

View File

@@ -1,86 +1,145 @@
'use client'; "use client";
import { Panel } from '@/components/ui/panel';
import type { import type {
DetailFinancialRow, DetailFinancialRow,
DimensionBreakdownRow, DimensionBreakdownRow,
FinancialStatementPeriod, FinancialStatementPeriod,
FinancialSurfaceKind, FinancialSurfaceKind,
SurfaceFinancialRow SurfaceFinancialRow,
} from '@/lib/types'; } from "@/lib/types";
import type { ResolvedStatementSelection } from '@/lib/financials/statement-view-model'; import type { ResolvedStatementSelection } from "@/lib/financials/statement-view-model";
type StatementRowInspectorProps = { type StatementRowInspectorProps = {
selection: ResolvedStatementSelection | null; selection: ResolvedStatementSelection | null;
dimensionRows: DimensionBreakdownRow[]; dimensionRows: DimensionBreakdownRow[];
periods: FinancialStatementPeriod[]; periods: FinancialStatementPeriod[];
surfaceKind: Extract<FinancialSurfaceKind, 'income_statement' | 'balance_sheet' | 'cash_flow_statement'>; surfaceKind: Extract<
renderValue: (row: SurfaceFinancialRow | DetailFinancialRow, periodId: string, previousPeriodId: string | null) => string; FinancialSurfaceKind,
renderDimensionValue: (value: number | null, rowKey: string, unit: SurfaceFinancialRow['unit']) => string; "income_statement" | "balance_sheet" | "cash_flow_statement"
>;
renderValue: (
row: SurfaceFinancialRow | DetailFinancialRow,
periodId: string,
previousPeriodId: string | null,
) => string;
renderDimensionValue: (
value: number | null,
rowKey: string,
unit: SurfaceFinancialRow["unit"],
) => string;
}; };
function InspectorCard(props: { function InspectorField(props: { label: string; value: string }) {
label: string;
value: string;
}) {
return ( return (
<div className="rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-2"> <div className="py-1.5">
<p className="text-[color:var(--terminal-muted)]">{props.label}</p> <p className="text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">
<p className="font-semibold text-[color:var(--terminal-bright)]">{props.value}</p> {props.label}
</p>
<p className="text-sm font-medium text-[color:var(--terminal-bright)]">
{props.value}
</p>
</div> </div>
); );
} }
function renderList(values: string[] | null | undefined) { function renderList(values: string[] | null | undefined) {
return (values ?? []).length > 0 ? (values ?? []).join(', ') : 'n/a'; return (values ?? []).length > 0 ? (values ?? []).join(", ") : "n/a";
} }
export function StatementRowInspector(props: StatementRowInspectorProps) { export function StatementRowInspector(props: StatementRowInspectorProps) {
const selection = props.selection; const selection = props.selection;
const parentSurfaceLabel = selection?.kind === 'detail' const parentSurfaceLabel =
? selection.parentSurfaceRow?.label ?? (selection.row.parentSurfaceKey === 'unmapped' ? 'Unmapped / Residual' : selection.row.parentSurfaceKey) selection?.kind === "detail"
? (selection.parentSurfaceRow?.label ??
(selection.row.parentSurfaceKey === "unmapped"
? "Unmapped / Residual"
: selection.row.parentSurfaceKey))
: null; : null;
return ( return (
<Panel <section className="border-t border-[color:var(--line-weak)] pt-4">
title="Row Details" <header className="mb-3">
subtitle="Inspect compact-surface resolution, raw drill-down rows, and dimensional evidence." <h3 className="text-sm font-semibold text-[color:var(--terminal-bright)]">
variant="surface" Row Details
> </h3>
<p className="text-xs text-[color:var(--terminal-muted)]">
Inspect compact-surface resolution, raw drill-down rows, and
dimensional evidence.
</p>
</header>
{!selection ? ( {!selection ? (
<p className="text-sm text-[color:var(--terminal-muted)]">Select a compact surface row or raw detail row to inspect details.</p> <p className="text-sm text-[color:var(--terminal-muted)]">
) : selection.kind === 'surface' ? ( Select a compact surface row or raw detail row to inspect details.
</p>
) : selection.kind === "surface" ? (
<div className="space-y-4 text-sm"> <div className="space-y-4 text-sm">
<div className="grid grid-cols-1 gap-3 md:grid-cols-2 xl:grid-cols-4"> <div className="grid grid-cols-2 gap-x-6 gap-y-1 md:grid-cols-4">
<InspectorCard label="Label" value={selection.row.label} /> <InspectorField label="Label" value={selection.row.label} />
<InspectorCard label="Key" value={selection.row.key} /> <InspectorField label="Key" value={selection.row.key} />
<InspectorCard label="Resolution" value={selection.row.resolutionMethod ?? 'direct'} /> <InspectorField
<InspectorCard label="Confidence" value={selection.row.confidence ?? 'high'} /> label="Resolution"
value={selection.row.resolutionMethod ?? "direct"}
/>
<InspectorField
label="Confidence"
value={selection.row.confidence ?? "high"}
/>
</div> </div>
<div className="grid grid-cols-1 gap-3 md:grid-cols-2"> <div className="grid grid-cols-2 gap-x-6 gap-y-1">
<InspectorCard label="Source Row Keys" value={renderList(selection.row.sourceRowKeys)} /> <InspectorField
<InspectorCard label="Source Concepts" value={renderList(selection.row.sourceConcepts)} /> label="Source Row Keys"
value={renderList(selection.row.sourceRowKeys)}
/>
<InspectorField
label="Source Concepts"
value={renderList(selection.row.sourceConcepts)}
/>
</div> </div>
<div className="grid grid-cols-1 gap-3 md:grid-cols-2"> <div className="grid grid-cols-2 gap-x-6 gap-y-1">
<InspectorCard label="Source Fact IDs" value={(selection.row.sourceFactIds ?? []).length > 0 ? (selection.row.sourceFactIds ?? []).join(', ') : 'n/a'} /> <InspectorField
<InspectorCard label="Warning Codes" value={renderList(selection.row.warningCodes ?? [])} /> label="Source Fact IDs"
value={
(selection.row.sourceFactIds ?? []).length > 0
? (selection.row.sourceFactIds ?? []).join(", ")
: "n/a"
}
/>
<InspectorField
label="Warning Codes"
value={renderList(selection.row.warningCodes ?? [])}
/>
</div> </div>
<div className="grid grid-cols-1 gap-3 md:grid-cols-2"> <div className="grid grid-cols-2 gap-x-6 gap-y-1">
<InspectorCard label="Child Surface Rows" value={selection.childSurfaceRows.length > 0 ? selection.childSurfaceRows.map((row) => row.label).join(', ') : 'None'} /> <InspectorField
<InspectorCard label="Raw Detail Rows" value={String(selection.detailRows.length)} /> label="Child Surface Rows"
value={
selection.childSurfaceRows.length > 0
? selection.childSurfaceRows
.map((row) => row.label)
.join(", ")
: "None"
}
/>
<InspectorField
label="Raw Detail Rows"
value={String(selection.detailRows.length)}
/>
</div> </div>
{selection.detailRows.length > 0 ? ( {selection.detailRows.length > 0 ? (
<div className="rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-3"> <div className="border-t border-[color:var(--line-weak)] pt-3">
<p className="text-[color:var(--terminal-muted)]">Raw Detail Labels</p> <p className="text-[10px] uppercase tracking-[0.16em] text-[color:var(--terminal-muted)]">
Raw Detail Labels
</p>
<div className="mt-2 flex flex-wrap gap-2"> <div className="mt-2 flex flex-wrap gap-2">
{selection.detailRows.map((row) => ( {selection.detailRows.map((row) => (
<span <span
key={`${selection.row.key}-${row.key}`} key={`${selection.row.key}-${row.key}`}
className="rounded-full border border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] px-3 py-1 text-xs text-[color:var(--terminal-bright)]" className="rounded border border-[color:var(--line-weak)] bg-[rgba(88,102,122,0.16)] px-2 py-0.5 text-xs text-[color:var(--terminal-bright)]"
> >
{row.label} {row.label}
</span> </span>
@@ -91,8 +150,11 @@ export function StatementRowInspector(props: StatementRowInspectorProps) {
{selection.row.hasDimensions ? ( {selection.row.hasDimensions ? (
props.dimensionRows.length === 0 ? ( props.dimensionRows.length === 0 ? (
<p className="text-sm text-[color:var(--terminal-muted)]">No dimensional facts were returned for the selected compact row.</p> <p className="text-sm text-[color:var(--terminal-muted)]">
No dimensional facts were returned for the selected compact row.
</p>
) : ( ) : (
<div className="border-t border-[color:var(--line-weak)] pt-3">
<div className="data-table-wrap"> <div className="data-table-wrap">
<table className="data-table min-w-[760px]"> <table className="data-table min-w-[760px]">
<thead> <thead>
@@ -105,48 +167,89 @@ export function StatementRowInspector(props: StatementRowInspectorProps) {
</thead> </thead>
<tbody> <tbody>
{props.dimensionRows.map((row, index) => ( {props.dimensionRows.map((row, index) => (
<tr key={`${selection.row.key}-${row.periodId}-${row.axis}-${row.member}-${index}`}> <tr
<td>{props.periods.find((period) => period.id === row.periodId)?.periodLabel ?? row.periodId}</td> key={`${selection.row.key}-${row.periodId}-${row.axis}-${row.member}-${index}`}
>
<td>
{props.periods.find(
(period) => period.id === row.periodId,
)?.periodLabel ?? row.periodId}
</td>
<td>{row.axis}</td> <td>{row.axis}</td>
<td>{row.member}</td> <td>{row.member}</td>
<td>{props.renderDimensionValue(row.value, selection.row.key, selection.row.unit)}</td> <td>
{props.renderDimensionValue(
row.value,
selection.row.key,
selection.row.unit,
)}
</td>
</tr> </tr>
))} ))}
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
) )
) : ( ) : (
<p className="text-sm text-[color:var(--terminal-muted)]">No dimensional drill-down is available for this compact surface row.</p> <p className="text-sm text-[color:var(--terminal-muted)]">
No dimensional drill-down is available for this compact surface
row.
</p>
)} )}
</div> </div>
) : ( ) : (
<div className="space-y-4 text-sm"> <div className="space-y-4 text-sm">
<div className="grid grid-cols-1 gap-3 md:grid-cols-2 xl:grid-cols-4"> <div className="grid grid-cols-2 gap-x-6 gap-y-1 md:grid-cols-4">
<InspectorCard label="Label" value={selection.row.label} /> <InspectorField label="Label" value={selection.row.label} />
<InspectorCard label="Key" value={selection.row.key} /> <InspectorField label="Key" value={selection.row.key} />
<InspectorCard label="Parent Surface" value={parentSurfaceLabel ?? selection.row.parentSurfaceKey} /> <InspectorField
<InspectorCard label="Residual" value={selection.row.residualFlag ? 'Yes' : 'No'} /> label="Parent Surface"
value={parentSurfaceLabel ?? selection.row.parentSurfaceKey}
/>
<InspectorField
label="Residual"
value={selection.row.residualFlag ? "Yes" : "No"}
/>
</div> </div>
<div className="grid grid-cols-1 gap-3 md:grid-cols-2"> <div className="grid grid-cols-2 gap-x-6 gap-y-1">
<InspectorCard label="Concept Key" value={selection.row.conceptKey} /> <InspectorField
<InspectorCard label="QName" value={selection.row.qname} /> label="Concept Key"
value={selection.row.conceptKey}
/>
<InspectorField label="QName" value={selection.row.qname} />
</div> </div>
<div className="grid grid-cols-1 gap-3 md:grid-cols-2"> <div className="grid grid-cols-2 gap-x-6 gap-y-1">
<InspectorCard label="Local Name" value={selection.row.localName} /> <InspectorField
<InspectorCard label="Source Fact IDs" value={(selection.row.sourceFactIds ?? []).length > 0 ? (selection.row.sourceFactIds ?? []).join(', ') : 'n/a'} /> label="Local Name"
value={selection.row.localName}
/>
<InspectorField
label="Source Fact IDs"
value={
(selection.row.sourceFactIds ?? []).length > 0
? (selection.row.sourceFactIds ?? []).join(", ")
: "n/a"
}
/>
</div> </div>
<div className="rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-2"> <div className="border-t border-[color:var(--line-weak)] pt-3">
<p className="text-[color:var(--terminal-muted)]">Dimensions Summary</p> <InspectorField
<p className="font-semibold text-[color:var(--terminal-bright)]">{renderList(selection.row.dimensionsSummary)}</p> label="Dimensions Summary"
value={renderList(selection.row.dimensionsSummary)}
/>
</div> </div>
{props.dimensionRows.length === 0 ? ( {props.dimensionRows.length === 0 ? (
<p className="text-sm text-[color:var(--terminal-muted)]">No dimensional facts were returned for the selected raw detail row.</p> <p className="text-sm text-[color:var(--terminal-muted)]">
No dimensional facts were returned for the selected raw detail
row.
</p>
) : ( ) : (
<div className="border-t border-[color:var(--line-weak)] pt-3">
<div className="data-table-wrap"> <div className="data-table-wrap">
<table className="data-table min-w-[760px]"> <table className="data-table min-w-[760px]">
<thead> <thead>
@@ -159,19 +262,34 @@ export function StatementRowInspector(props: StatementRowInspectorProps) {
</thead> </thead>
<tbody> <tbody>
{props.dimensionRows.map((row, index) => ( {props.dimensionRows.map((row, index) => (
<tr key={`${selection.row.parentSurfaceKey}-${selection.row.key}-${row.periodId}-${index}`}> <tr
<td>{props.periods.find((period) => period.id === row.periodId)?.periodLabel ?? row.periodId}</td> key={`${selection.row.parentSurfaceKey}-${selection.row.key}-${row.periodId}-${index}`}
>
<td>
{props.periods.find(
(period) => period.id === row.periodId,
)?.periodLabel ?? row.periodId}
</td>
<td>{row.axis}</td> <td>{row.axis}</td>
<td>{row.member}</td> <td>{row.member}</td>
<td>{props.renderDimensionValue(row.value, selection.row.key, props.surfaceKind === 'balance_sheet' ? 'currency' : 'currency')}</td> <td>
{props.renderDimensionValue(
row.value,
selection.row.key,
props.surfaceKind === "balance_sheet"
? "currency"
: "currency",
)}
</td>
</tr> </tr>
))} ))}
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
)} )}
</div> </div>
)} )}
</Panel> </section>
); );
} }

View File

@@ -530,7 +530,7 @@ export function AppShell({
className={cn( className={cn(
"hidden shrink-0 flex-col gap-4 border-r border-[color:var(--line-weak)] lg:flex", "hidden shrink-0 flex-col gap-4 border-r border-[color:var(--line-weak)] lg:flex",
hasMounted ? "transition-[width,padding] duration-200" : "", hasMounted ? "transition-[width,padding] duration-200" : "",
isSidebarCollapsed ? "w-16 pr-1" : "w-72 pr-4", isSidebarCollapsed ? "w-16 pr-1" : "w-56 pr-4",
)} )}
> >
<div <div
@@ -655,7 +655,7 @@ export function AppShell({
</aside> </aside>
<div className="min-w-0 flex-1 pb-24 lg:pb-0"> <div className="min-w-0 flex-1 pb-24 lg:pb-0">
<header className="relative mb-4 border-b border-[color:var(--line-weak)] pb-4 pr-16 sm:pb-5 sm:pr-20"> <header className="relative mb-3 border-b border-[color:var(--line-weak)] pb-3 pr-16 sm:pb-4 sm:pr-20">
<div className="absolute right-4 top-4 z-10 sm:right-5 sm:top-5"> <div className="absolute right-4 top-4 z-10 sm:right-5 sm:top-5">
<TaskNotificationsTrigger <TaskNotificationsTrigger
unreadCount={notifications.unreadCount} unreadCount={notifications.unreadCount}
@@ -704,7 +704,7 @@ export function AppShell({
<nav <nav
aria-label="Breadcrumb" aria-label="Breadcrumb"
className="mb-6 overflow-x-auto border-b border-[color:var(--line-weak)] pb-3" className="mb-4 overflow-x-auto border-b border-[color:var(--line-weak)] pb-2"
> >
<ol className="flex min-w-max items-center gap-2 text-xs text-[color:var(--terminal-muted)] sm:min-w-0 sm:flex-wrap"> <ol className="flex min-w-max items-center gap-2 text-xs text-[color:var(--terminal-muted)] sm:min-w-0 sm:flex-wrap">
{breadcrumbItems.map((item, index) => { {breadcrumbItems.map((item, index) => {
@@ -743,7 +743,7 @@ export function AppShell({
</ol> </ol>
</nav> </nav>
<main className="min-w-0 space-y-6">{children}</main> <main className="min-w-0 space-y-4">{children}</main>
</div> </div>
</div> </div>

View File

@@ -1,25 +1,42 @@
import { cn } from '@/lib/utils'; import { cn } from "@/lib/utils";
type ButtonVariant = 'primary' | 'ghost' | 'danger' | 'secondary'; type ButtonVariant = "primary" | "ghost" | "danger" | "secondary";
type ButtonSize = "default" | "compact";
type ButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & { type ButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
variant?: ButtonVariant; variant?: ButtonVariant;
size?: ButtonSize;
}; };
const variantMap: Record<ButtonVariant, string> = { const variantMap: Record<ButtonVariant, string> = {
primary: 'border-[color:var(--line-strong)] bg-[color:var(--accent)] text-[#16181c] hover:bg-[color:var(--accent-strong)]', primary:
secondary: 'border-[color:var(--line-weak)] bg-[color:var(--panel-bright)] text-[color:var(--terminal-bright)] hover:border-[color:var(--line-strong)] hover:bg-[color:var(--panel)]', "border-[color:var(--line-strong)] bg-[color:var(--accent)] text-[#16181c] hover:bg-[color:var(--accent-strong)]",
ghost: 'border-[color:var(--line-weak)] bg-transparent text-[color:var(--terminal-bright)] hover:border-[color:var(--line-strong)] hover:bg-[color:var(--panel-soft)]', secondary:
danger: 'border-[color:var(--danger)] bg-[color:var(--danger-soft)] text-[#ffc9c9] hover:bg-[color:var(--danger)] hover:text-[#1e0d0d]' "border-[color:var(--line-weak)] bg-[color:var(--panel-bright)] text-[color:var(--terminal-bright)] hover:border-[color:var(--line-strong)] hover:bg-[color:var(--panel)]",
ghost:
"border-[color:var(--line-weak)] bg-transparent text-[color:var(--terminal-bright)] hover:border-[color:var(--line-strong)] hover:bg-[color:var(--panel-soft)]",
danger:
"border-[color:var(--danger)] bg-[color:var(--danger-soft)] text-[#ffc9c9] hover:bg-[color:var(--danger)] hover:text-[#1e0d0d]",
}; };
export function Button({ className, variant = 'primary', ...props }: ButtonProps) { const sizeMap: Record<ButtonSize, string> = {
default: "min-h-11 px-3 py-2 text-sm gap-2",
compact: "min-h-8 px-2.5 py-1.5 text-xs gap-1.5",
};
export function Button({
className,
variant = "primary",
size = "default",
...props
}: ButtonProps) {
return ( return (
<button <button
className={cn( className={cn(
'inline-flex min-h-11 items-center justify-center gap-2 rounded-xl border px-3 py-2 text-sm font-medium transition duration-200 disabled:cursor-not-allowed disabled:opacity-50', "inline-flex items-center justify-center rounded-xl border font-medium transition duration-200 disabled:cursor-not-allowed disabled:opacity-50",
variantMap[variant], variantMap[variant],
className sizeMap[size],
className,
)} )}
{...props} {...props}
/> />

View File

@@ -0,0 +1,26 @@
"use client";
import { X } from "lucide-react";
import { cn } from "@/lib/utils";
type FilterChipProps = {
label: string;
onRemove: () => void;
className?: string;
};
export function FilterChip({ label, onRemove, className }: FilterChipProps) {
return (
<span className={cn("filter-chip", className)}>
<span className="truncate">{label}</span>
<button
type="button"
onClick={onRemove}
className="remove"
aria-label={`Remove ${label} filter`}
>
<X className="size-3" />
</button>
</span>
);
}

View File

@@ -1,13 +1,27 @@
import { cn } from '@/lib/utils'; import { cn } from "@/lib/utils";
type InputProps = React.InputHTMLAttributes<HTMLInputElement>; type InputSize = "default" | "compact";
export function Input({ className, ...props }: InputProps) { type InputProps = React.InputHTMLAttributes<HTMLInputElement> & {
inputSize?: InputSize;
};
const sizeMap: Record<InputSize, string> = {
default: "min-h-11 px-3 py-2 text-sm",
compact: "min-h-8 px-2.5 py-1.5 text-xs",
};
export function Input({
className,
inputSize = "default",
...props
}: InputProps) {
return ( return (
<input <input
className={cn( className={cn(
'min-h-11 w-full rounded-xl border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-2 text-sm text-[color:var(--terminal-bright)] outline-none transition placeholder:text-[color:var(--terminal-muted)] focus:border-[color:var(--line-strong)] focus:shadow-[0_0_0_3px_var(--focus-ring)]', "w-full rounded-xl border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] text-[color:var(--terminal-bright)] outline-none transition placeholder:text-[color:var(--terminal-muted)] focus:border-[color:var(--line-strong)] focus:shadow-[0_0_0_3px_var(--focus-ring)]",
className sizeMap[inputSize],
className,
)} )}
{...props} {...props}
/> />

View File

@@ -1,4 +1,7 @@
import { cn } from '@/lib/utils'; import { cn } from "@/lib/utils";
type PanelVariant = "flat" | "surface";
type PanelDensity = "normal" | "compact" | "dense";
type PanelProps = { type PanelProps = {
title?: string; title?: string;
@@ -6,24 +9,82 @@ type PanelProps = {
actions?: React.ReactNode; actions?: React.ReactNode;
children: React.ReactNode; children: React.ReactNode;
className?: string; className?: string;
variant?: 'flat' | 'surface'; variant?: PanelVariant;
density?: PanelDensity;
}; };
export function Panel({ title, subtitle, actions, children, className, variant = 'flat' }: PanelProps) { const densityStyles: Record<PanelDensity, string> = {
normal: "",
compact: "",
dense: "",
};
const headerDensityStyles: Record<PanelDensity, string> = {
normal: "mb-4",
compact: "mb-3",
dense: "mb-2",
};
export function Panel({
title,
subtitle,
actions,
children,
className,
variant = "flat",
density = "normal",
}: PanelProps) {
const surfaceStyles =
density === "normal"
? "p-4 sm:p-5"
: density === "compact"
? "p-3 sm:p-4"
: "p-2.5 sm:p-3";
const flatStyles =
density === "normal"
? "pt-4 sm:pt-5"
: density === "compact"
? "pt-3 sm:pt-4"
: "pt-2.5 sm:pt-3";
return ( return (
<section <section
className={cn( className={cn(
variant === 'surface' "min-w-0",
? 'min-w-0 rounded-2xl border border-[color:var(--line-weak)] bg-[color:var(--panel)] p-4 shadow-[0_0_0_1px_rgba(255,255,255,0.03),0_12px_30px_rgba(0,0,0,0.38)] sm:p-5' variant === "surface"
: 'min-w-0 border-t border-[color:var(--line-weak)] pt-4 sm:pt-5', ? cn(
className "rounded-2xl border border-[color:var(--line-weak)] bg-[color:var(--panel)] shadow-[0_0_0_1px_rgba(255,255,255,0.03),0_12px_30px_rgba(0,0,0,0.38)]",
surfaceStyles,
)
: cn("border-t border-[color:var(--line-weak)]", flatStyles),
densityStyles[density],
className,
)}
>
{title || subtitle || actions ? (
<header
className={cn(
"flex flex-col gap-2 sm:flex-row sm:items-start sm:justify-between",
headerDensityStyles[density],
)} )}
> >
{(title || subtitle || actions) ? (
<header className="mb-4 flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between">
<div className="min-w-0"> <div className="min-w-0">
{title ? <h3 className="text-base font-semibold text-[color:var(--terminal-bright)]">{title}</h3> : null} {title ? (
{subtitle ? <p className="mt-1 text-sm text-[color:var(--terminal-muted)]">{subtitle}</p> : null} <h3 className="text-sm font-semibold text-[color:var(--terminal-bright)]">
{title}
</h3>
) : null}
{subtitle ? (
<p
className={cn(
"text-xs text-[color:var(--terminal-muted)]",
title ? "mt-0.5" : "",
)}
>
{subtitle}
</p>
) : null}
</div> </div>
{actions ? <div className="w-full sm:w-auto">{actions}</div> : null} {actions ? <div className="w-full sm:w-auto">{actions}</div> : null}
</header> </header>

View File

@@ -40,6 +40,7 @@
"@libsql/client": "^0.17.0", "@libsql/client": "^0.17.0",
"@tailwindcss/postcss": "^4.2.1", "@tailwindcss/postcss": "^4.2.1",
"@tanstack/react-query": "^5.90.21", "@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.23",
"@workflow/world-postgres": "^4.1.0-beta.42", "@workflow/world-postgres": "^4.1.0-beta.42",
"ai": "^6.0.116", "ai": "^6.0.116",
"better-auth": "^1.5.4", "better-auth": "^1.5.4",
@@ -56,6 +57,7 @@
"recharts": "^3.8.0", "recharts": "^3.8.0",
"sonner": "^2.0.7", "sonner": "^2.0.7",
"sqlite-vec": "^0.1.7-alpha.2", "sqlite-vec": "^0.1.7-alpha.2",
"sqlite-vec-darwin-arm64": "^0.1.7-alpha.2",
"workflow": "^4.1.0-beta.63", "workflow": "^4.1.0-beta.63",
"zhipu-ai-provider": "^0.2.2" "zhipu-ai-provider": "^0.2.2"
}, },