BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/motiq/live-operations-dashboard

Live Operations Dashboard

motiq/live-operations-dashboard
FreeBlock

A composed, app-controlled ops dashboard: KPI Number Morph stats with a Data Refresh State control, a Filter Result Transition section, and a Streaming Data Rows live feed — wired to one demo state machine across loading, live, filtered, refreshing, partial update, stale, error, and recovery. Not a charting library; fictional demo data.

Live preview

live · rendered by the registry
Rendered by motiq on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://www.motiq.dev/r/live-operations-dashboard.json

Source

registry/blocks/live-operations-dashboard.tsxwww.motiq.dev/r/live-operations-dashboard.json · first 6 KB
1"use client";
2
3import * as React from "react";
4import { motion } from "motion/react";
5
6import { cn } from "@/lib/utils";
7import { useReducedMotion, statusVars, type StatusTone } from "@/lib/motiq";
8
9import { KpiNumberMorph } from "@/components/motiq/kpi-number-morph";
10import {
11 DataRefreshState,
12 type RefreshState,
13} from "@/components/motiq/data-refresh-state";
14import {
15 FilterResultTransition,
16 type ActiveFilter,
17 type FilterResultState,
18} from "@/components/motiq/filter-result-transition";
19import {
20 StreamingDataRows,
21 type Column,
22 type StreamingTableState,
23} from "@/components/motiq/streaming-data-rows";
24
25/**
26 * LiveOperationsDashboard — a composed, app-controlled operations dashboard that
27 * wires four presentation-only data-motion components together behind a single
28 * small demo state machine: a row of KpiNumberMorph stats with a DataRefreshState
29 * control in the header, a FilterResultTransition service grid, and a
30 * StreamingDataRows table as the main live feed.
31 *
32 * IMPORTANT — DEMO ONLY. Nothing here talks to a real monitoring backend. Every
33 * service, region, metric, and timestamp is fictional and provider-neutral. The
34 * block only feeds the components a scripted set of dataset snapshots in response
35 * to its own controls — it is a copy-paste starting point you rewire to your real
36 * telemetry.
37 *
38 * Determinism: no `Date.now()` / `Math.random()` / `new Date()` runs during
39 * render, initializers, or module scope. Every snapshot is derived from a fixed
40 * baseline with a pure wobble function; timestamps derive from a fixed baseline;
41 * the demo only advances inside handlers/timers. Clean-room original.
42 */
43
44/* -------------------------------------------------------------------------- */
45/* Types */
46/* -------------------------------------------------------------------------- */
47
48export type ServiceCategory = "api" | "web" | "worker" | "data";
49export type ServiceStatus = "operational" | "degraded" | "down";
50
51export interface OpsService {
52 /** Stable identity — the key to smooth insert / update / resort. */
53 id: string;
54 name: string;
55 region: string;
56 category: ServiceCategory;
57 status: ServiceStatus;
58 /** Requests per minute. */
59 rpm: number;
60 /** p95 latency in milliseconds. */
61 p95: number;
62 /** Error rate as a percentage (e.g. 0.42 = 0.42%). */
63 errorRate: number;
64 /** Active sessions on this service. */
65 sessions: number;
66}
67
68// … truncated

What it pulls in

npm packages

  • motion

Other registry items

  • https://motiq.dev/r/kpi-number-morph.json
  • https://motiq.dev/r/data-refresh-state.json
  • https://motiq.dev/r/filter-result-transition.json
  • https://motiq.dev/r/streaming-data-rows.json
  • https://motiq.dev/r/utils.json
  • https://motiq.dev/r/primitives.json

Files it writes

  • registry/blocks/live-operations-dashboard.tsx

Facts

Registry
motiq
Type
registry:block
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-13
Last confirmed
yesterday

Go to the source

Docs on motiq www.motiq.dev RMahammad/motiq on GitHub Raw registry item This item as JSON

More from motiq

All 100 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Agent Operations Heroagent-operations-heromotiqBlocksFree1 dep
AI Agent Workspaceai-agent-workspacemotiqBlocksFree1 dep
AI Interface Packai-interface-packmotiqBlocksFree1 dep
Collaboration Packcollaboration-packmotiqBlocksFree1 dep
Collaborative Launch Herocollaborative-launch-heromotiqBlocksFree1 dep
Collaborative Review Workspacecollaborative-review-workspacemotiqBlocksFree1 dep
Data Motion Packdata-motion-packmotiqBlocksFree1 dep
Deployment Command Centerdeployment-command-centermotiqBlocksFree1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex