Live demo: signalops.cc
Source: github.com/TargiX/signalops
SignalOps is a React dashboard for operating AI image-generation products. It is intentionally built as a custom interface rather than a dropped-in enterprise grid, so the implementation shows state management, data density, virtualization, and design-system work.
- A custom virtualized data grid built with TanStack Table and TanStack Virtual.
- Server-state style data loading with TanStack Query, including optimistic routing-rule mutations, rollback, and cache invalidation.
- 10,000 synthetic generation jobs with only the visible rows mounted.
- Provider health, routing risk, spend, latency, and failure-rate analysis.
- Saved ops views for overview, provider triage, and cost review.
- A selectable incident investigation flow with affected jobs, job detail selection, and queue focus.
- A routing rule builder with trigger modes, traffic-drain slider, and simulated impact on jobs, p95, failures, and cost.
- A product entry screen at
/that frames the control-plane workflow before sending users into/cockpit. - A bespoke Soft Light design system backed by source-owned shadcn primitives, Inter, JetBrains Mono, warm surfaces, subtle borders, and muted semantic status colors.
- Next.js App Router
- React 19
- TypeScript
- Tailwind CSS
- TanStack Query
- TanStack Table
- TanStack Virtual
- shadcn/ui
- Recharts
- Lucide React
pnpm install
pnpm devThe dev server is pinned to http://localhost:3020 to avoid colliding with other local portfolio/product apps.
For a fast portfolio review, the dashboard opens with a Guided incident replay rail directly under the header. It turns the surface into a self-explaining demo — a first-run reviewer can follow one incident end to end in well under 90 seconds.
- Pick a scenario — Alibaba p95 spike, FLUX retry storm, or Qwen cost bleed. Each is backed by the existing mock data, not a separate mock.
- Step through the rail. Every step drives the real controls (no dead overlay):
- Signal detected — selects the incident and scrolls to the investigation workbench.
- Affected jobs — switches the saved view and focuses the virtualized 10k-row queue on the impacted provider.
- Draft mitigation — sets the routing trigger mode and traffic-drain slider.
- Projected KPI delta — simulates the rule, recomputing the KPI cards and every chart from the same derived state.
- Export & handoff — scrolls back to the header so you can export the post-mitigation snapshot as CSV.
- Use Back/Next step to move, click any step chip to jump, and Finish replay (or Exit replay) to restore the clean baseline.
Each step also surfaces a short "technical proof" line calling out what it exercises: TanStack Query hydration, TanStack Table + Virtual filtering, fully controlled rule-builder state, derived-memo chart re-renders, and the snapshot CSV export. Loading and error states are untouched — the rail only orchestrates state the user could set by hand.
/opens the product overview and operating model./cockpitopens the live operations dashboard./incidents/inc_411opens an incident investigation route.
This project is meant to sit next to Phosphene as a different signal:
- Phosphene: solo product ownership, AI workflows, payments, auth, storage, production deployment.
- SignalOps: senior React/data-heavy frontend, custom dashboard UX, headless table primitives, virtualized rendering, and design-system execution.
Good case-study angle:
Built a custom AI generation operations dashboard with TanStack Table + TanStack Virtual instead of using a prebuilt enterprise grid, keeping the UI bespoke while still handling large datasets, incident triage, and routing-rule workflows.