mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* [0c66b856] Frontend: Build tabbed Business page consolidating Goals/Secretary/Pitches (#183) * [c9f00d0d] feat(business): add /business tabbed page consolidating Goals, Secretary, Pitches (#182) - Create src/app/(dashboard)/business/page.tsx with URL-driven Tabs (goals|secretary|pitches), reading ?tab= via useSearchParams; defaults to 'goals' - Create src/components/business/goals-tab.tsx: key-introspected form fields for objectives items and operating_policy (no raw JSON textareas), updated_at/updated_by metadata, skeleton loading, OfflineState on error - Create src/components/business/secretary-tab.tsx: ReactMarkdown (GFM) chat bubbles, structured directive cards with labeled key-value rows, RequiredNotesDialog for reject, skeleton loading, OfflineState on error - Create src/components/business/pitches-tab.tsx: sub-header Refresh button, PitchCard skeleton loading, OfflineState on error (not empty-state text), RequiredNotesDialog for both Approve and Reject - Create src/components/ui/required-notes-dialog.tsx: Submit disabled on empty/whitespace, Cancel closes without action, state resets on each open via key pattern - Update sidebar.tsx: remove Cockpit/Company Goals/Secretary/Pitches entries, add single Business entry (Building2 icon, /business) - Replace company-goals/page.tsx, secretary/page.tsx, pitches/page.tsx with server-side redirect() to /business?tab=X - Replace cockpit/page.tsx with notFound() (404) - All tabs: shadcn Card + Skeleton, sonner toast for success/error Co-authored-by: Frontend Developer 1 <fe-dev-1@agents.roboco.dev> * [e3e5ff9b] feat(dashboard): add StrategySignalsPanel next to CeoApprovalQueue in a 2-column grid layout (#181) Co-authored-by: Frontend Developer 2 <fe-dev-2@agents.roboco.dev> --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@agents.roboco.dev> Co-authored-by: Frontend Developer 2 <fe-dev-2@agents.roboco.dev> * refactor(panel): delete the consolidated old routes instead of stubbing them cockpit/company-goals/secretary/pitches are fully consolidated into /business, so the old route pages are dead code. Remove the four page.tsx files outright rather than keep redirect/404 stubs — the clean move is to delete, not add. The sidebar already points only at /business; no internal links reference the old routes (the remaining /company-goals|/secretary|/pitches|/cockpit strings are backend API paths the API clients call, unaffected). Old bookmarks now resolve to Next's default 404, which is correct for a removed route. * perf(cockpit): light /cockpit/signals endpoint for the Dashboard panel The relocated Strategy Signals panel was calling /cockpit/summary, which runs the whole fan-out (company goals + usage/spend + task-counts + pitches + strategy assess) just to read the signals. Add CockpitService.signals() + GET /api/cockpit/signals (CockpitSignals schema, same _COCKPIT_ROLES gate) that runs only StrategyEngine.assess(), and repoint the panel (+ cockpitApi.signals() client method, CockpitSignal type). Now the Dashboard fetches only what it shows. Backend gated: ruff + full mypy + 6 cockpit tests green (live DB). --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@agents.roboco.dev> Co-authored-by: Frontend Developer 2 <fe-dev-2@agents.roboco.dev> Co-authored-by: Renn F <rennf93@users.noreply.github.com>
107 lines
4.0 KiB
TypeScript
107 lines
4.0 KiB
TypeScript
"use client";
|
|
|
|
import { useCeoOverview, useAuditorFlags, useRecentActivity } from "@/hooks/use-dashboard";
|
|
import { useTasks } from "@/hooks/use-tasks";
|
|
import { TeamHealthCards } from "./team-health-cards";
|
|
import { KeyMetricsPanel } from "./key-metrics-panel";
|
|
import { AuditorAlertsPanel } from "./auditor-alerts-panel";
|
|
import { ActiveBlockersPanel } from "./active-blockers-panel";
|
|
import { RecentActivityFeed } from "./recent-activity-feed";
|
|
import { QuickActionsBar } from "./quick-actions-bar";
|
|
import { CeoApprovalQueue } from "./ceo-approval-queue";
|
|
import { StrategySignalsPanel } from "./strategy-signals-panel";
|
|
import type { Activity } from "./activity-item";
|
|
import { Button } from "@/components/ui/button";
|
|
import { UsageOverviewPanel } from "./usage-overview-panel";
|
|
import { RefreshCw, Settings, AlertCircle } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
export function CommandCenter() {
|
|
const { data: overview, isLoading: loadingOverview, isError: errorOverview, refetch: refetchOverview } = useCeoOverview();
|
|
const { data: flags, isLoading: loadingFlags, isError: errorFlags, refetch: refetchFlags } = useAuditorFlags({ resolved: false });
|
|
const { data: tasks, isLoading: loadingTasks, isError: errorTasks, refetch: refetchTasks } = useTasks();
|
|
const { data: activity, isLoading: loadingActivity, isError: errorActivity, refetch: refetchActivity } = useRecentActivity(24);
|
|
|
|
const hasError = errorOverview || errorFlags || errorTasks || errorActivity;
|
|
|
|
const handleRefresh = () => {
|
|
refetchOverview();
|
|
refetchFlags();
|
|
refetchTasks();
|
|
refetchActivity();
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-3xl font-bold tracking-tight">RoboCo Command Center</h1>
|
|
<p className="text-muted-foreground">
|
|
Complete visibility into all operations
|
|
</p>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="outline" onClick={handleRefresh}>
|
|
<RefreshCw className="h-4 w-4 mr-2" />
|
|
Refresh
|
|
</Button>
|
|
<Link href="/settings">
|
|
<Button variant="ghost" size="icon">
|
|
<Settings className="h-5 w-5" />
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error indicator */}
|
|
{hasError && (
|
|
<div className="flex items-center gap-2 rounded-md border border-destructive/50 bg-destructive/10 px-4 py-2 text-sm text-destructive">
|
|
<AlertCircle className="h-4 w-4 shrink-0" />
|
|
Some data failed to load. Click Refresh to try again.
|
|
</div>
|
|
)}
|
|
|
|
{/* Team Health */}
|
|
<section>
|
|
<h2 className="text-lg font-semibold mb-4">Team Health</h2>
|
|
<TeamHealthCards
|
|
teams={overview?.health_status}
|
|
isLoading={loadingOverview}
|
|
/>
|
|
</section>
|
|
|
|
{/* CEO Approval Queue + Strategy Signals - side-by-side on lg+ */}
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
|
|
<CeoApprovalQueue />
|
|
<StrategySignalsPanel />
|
|
</div>
|
|
|
|
{/* Metrics, Alerts, and Usage Row */}
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 xl:grid-cols-3 2xl:grid-cols-3 gap-6">
|
|
<KeyMetricsPanel
|
|
metrics={overview?.key_metrics}
|
|
isLoading={loadingOverview}
|
|
/>
|
|
<AuditorAlertsPanel alerts={flags} isLoading={loadingFlags} />
|
|
<UsageOverviewPanel />
|
|
</div>
|
|
|
|
{/* Blockers and Activity Row */}
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-2 2xl:grid-cols-2 gap-6">
|
|
<ActiveBlockersPanel tasks={tasks} isLoading={loadingTasks} />
|
|
<RecentActivityFeed
|
|
activities={activity as Activity[] | undefined}
|
|
isLoading={loadingActivity}
|
|
/>
|
|
</div>
|
|
|
|
{/* Quick Actions */}
|
|
<section className="pt-4 border-t">
|
|
<h2 className="text-lg font-semibold mb-4">Quick Actions</h2>
|
|
<QuickActionsBar />
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|