← All @molecule/* packages · App templates
@molecule/app-status-summary-reactFeature · status-summary · App (browser) · v1.0.1 · Apache-2.0
Status-page summary: component grid with operational/degraded/outage badges
npm install @molecule/app-status-summary-react@molecule/app-status-summary-react is a ready-made status-summary feature for the app (browser) side. It composes the core interfaces it needs, so it works with whichever providers your app has bonded.
import { StatusSummary } from '@molecule/app-status-summary-react'
;<StatusSummary
groups={[
{
id: 'api',
name: 'API',
components: [
{ id: 'rest', name: 'REST API', status: 'operational' },
{ id: 'ws', name: 'WebSockets', status: 'degraded' },
],
},
]}
header={<span>Last updated: 2 min ago</span>}
/>Works with: @molecule/app-react, @molecule/app-ui, @molecule/app-ui-react
Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit
src/index.tsJSDoc, not this file.
Status-page summary.
Exports <StatusSummary>, ComponentStatus, StatusComponent, StatusGroup types.
import { StatusSummary } from '@molecule/app-status-summary-react'
;<StatusSummary
groups={[
{
id: 'api',
name: 'API',
components: [
{ id: 'rest', name: 'REST API', status: 'operational' },
{ id: 'ws', name: 'WebSockets', status: 'degraded' },
],
},
]}
header={<span>Last updated: 2 min ago</span>}
/>
feature
npm install @molecule/app-status-summary-react @molecule/app-react @molecule/app-ui @molecule/app-ui-react react
npm install -D @types/react
StatusComponentA single monitored component with its current health status.
interface StatusComponent {
id: string
name: ReactNode
status: ComponentStatus
/** Optional sub-label (SLA %, region, etc.). */
subtitle?: ReactNode
}
StatusGroupA named group of related StatusComponent entries.
interface StatusGroup {
id: string
name: ReactNode
components: StatusComponent[]
}
StatusSummaryPropsProps for the {@link StatusSummary} component.
interface StatusSummaryProps {
/** Grouped components. */
groups: StatusGroup[]
/** Overall summary label (auto-derived if omitted). */
overallStatus?: ComponentStatus
/** Optional header content (last updated time, subscribe button). */
header?: ReactNode
/** Optional below-the-grid slot — typically a recent-incidents list. */
footer?: ReactNode
/** Extra classes. */
className?: string
}
ComponentStatusUnion of possible component health states.
type ComponentStatus =
'operational' | 'degraded' | 'partial-outage' | 'major-outage' | 'maintenance'
StatusSummary(props)Status-page summary — grouped component list with colored badges and an overall banner derived from the worst child status.
function StatusSummary({
groups,
overallStatus,
header,
footer,
className,
}: StatusSummaryProps): JSX.Element
props — Component props (see {@link StatusSummaryProps}).Peer dependencies:
@molecule/app-react ^1.0.1@molecule/app-ui ^1.0.1@molecule/app-ui-react ^1.0.1react ^18.0.0 || ^19.0.0@molecule/app-react
@molecule/app-ui
@molecule/app-ui-react
react
Must render inside the app's i18n provider and with a ClassMap bond
wired (useTranslation() / getClassMap() throw otherwise).
When overallStatus is omitted the banner shows the WORST status
found across all components (major-outage > partial-outage >
degraded > maintenance > operational).
Status colors are a fixed hex palette applied via inline styles (green/yellow/orange/red/blue with white text) — they ignore the app theme and cannot be restyled via ClassMap; acceptable for status pages, but know they will not follow a rebrand.
Status labels use status.operational … status.maintenance i18n
keys with English fallbacks; no locale bond currently ships these
keys, so register your own translations if the app is multilingual.
header renders inside the overall banner (last-updated stamp,
subscribe button); footer renders below the grid (incident list).