Live Status Indicators
shadcn-table-library/live-status-tableFreeBlock
A service-health table whose status and latency columns update on their own on a timer, with a pulsing indicator for actively-monitored states and a Live/Paused toggle.
Install it
npx shadcn@latest add https://shad-table.dev/r/live-status-table.jsonSource
1'use client'23import { cn } from '#/lib/utils.ts'4import type { ServiceStatus } from './columns'56const STATUS_CONFIG: Record<7 ServiceStatus,8 { label: string; dot: string; pulse: boolean }9> = {10 operational: { label: 'Operational', dot: 'bg-emerald-500', pulse: true },11 degraded: { label: 'Degraded', dot: 'bg-amber-500', pulse: true },12 down: { label: 'Down', dot: 'bg-red-500', pulse: false },13}1415export function StatusIndicator({ status }: { status: ServiceStatus }) {16 const config = STATUS_CONFIG[status]1718 return (19 <span className="inline-flex items-center gap-2 text-sm">20 <span className="relative flex size-2.5">21 {config.pulse && (22 <span23 className={cn(24 'absolute inline-flex h-full w-full animate-ping rounded-full opacity-75',25 config.dot,26 )}27 />28 )}29 <span30 className={cn('relative inline-flex size-2.5 rounded-full', config.dot)}31 />32 </span>33 {config.label}34 </span>35 )36}
What it pulls in
npm packages
Other registry items
Files it writes
More from shadcn-table-library
All 18 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Animated Icons Tableanimated-icons-table | shadcn-table-library | Blocks | Free | 2 deps · 9 files | |
| Comparison Tablecomparison-table | shadcn-table-library | Blocks | Free | 1 dep · 4 files | |
| Data Tabledata-table | shadcn-table-library | Blocks | Free | 1 dep · 4 files | |
| Density & Exportdensity-export-table | shadcn-table-library | Blocks | Free | 1 dep · 4 files | |
| Editable Tableeditable-table | shadcn-table-library | Blocks | Free | 1 dep · 3 files | |
| Grouped Tablegrouped-table | shadcn-table-library | Blocks | Free | 1 dep · 3 files | |
| Heatmap Tableheatmap-table | shadcn-table-library | Blocks | Free | 1 dep · 4 files | |
| Summary / KPI Tablekpi-table | shadcn-table-library | Blocks | Free | 1 dep · 5 files |
