Inbox: replace 4 parallel outlined buttons with 2 context-aware ones. When nothing is selected → "Acknowledge all firing" (primary) + "Mark all read" (secondary). When rows are selected → the same slots become "Acknowledge N" + "Mark N read" with counts inlined. Primary variant gives the foreground action proper visual weight; secondary is the supporting action. No more visually-identical disabled buttons cluttering the bar. History: drop the local DateRangePicker. The page now reads `timeRange` from `useGlobalFilters()` so the top-bar TimeRangeDropdown (1h / 3h / 6h / Today / 24h / 7d / custom) is the single source of truth, consistent with every other time-scoped page in the app.
269 lines
8.7 KiB
TypeScript
269 lines
8.7 KiB
TypeScript
import { useMemo, useState } from 'react';
|
|
import { Link } from 'react-router';
|
|
import { Inbox } from 'lucide-react';
|
|
import {
|
|
Button, ButtonGroup, DataTable, EmptyState, useToast,
|
|
} from '@cameleer/design-system';
|
|
import type { ButtonGroupItem, Column } from '@cameleer/design-system';
|
|
import { PageLoader } from '../../components/PageLoader';
|
|
import { SeverityBadge } from '../../components/SeverityBadge';
|
|
import { AlertStateChip } from '../../components/AlertStateChip';
|
|
import {
|
|
useAlerts, useAckAlert, useBulkReadAlerts, useMarkAlertRead,
|
|
type AlertDto,
|
|
} from '../../api/queries/alerts';
|
|
import { severityToAccent } from './severity-utils';
|
|
import { formatRelativeTime } from './time-utils';
|
|
import { renderAlertExpanded } from './alert-expanded';
|
|
import css from './alerts-page.module.css';
|
|
import tableStyles from '../../styles/table-section.module.css';
|
|
|
|
type Severity = NonNullable<AlertDto['severity']>;
|
|
|
|
const SEVERITY_ITEMS: ButtonGroupItem[] = [
|
|
{ value: 'CRITICAL', label: 'Critical', color: 'var(--error)' },
|
|
{ value: 'WARNING', label: 'Warning', color: 'var(--warning)' },
|
|
{ value: 'INFO', label: 'Info', color: 'var(--text-muted)' },
|
|
];
|
|
|
|
export default function InboxPage() {
|
|
const [severitySel, setSeveritySel] = useState<Set<string>>(new Set());
|
|
const severityValues: Severity[] | undefined = severitySel.size === 0
|
|
? undefined
|
|
: [...severitySel] as Severity[];
|
|
|
|
const { data, isLoading, error } = useAlerts({
|
|
state: ['FIRING', 'ACKNOWLEDGED'],
|
|
severity: severityValues,
|
|
limit: 200,
|
|
});
|
|
const bulkRead = useBulkReadAlerts();
|
|
const markRead = useMarkAlertRead();
|
|
const ack = useAckAlert();
|
|
const { toast } = useToast();
|
|
|
|
const [selected, setSelected] = useState<Set<string>>(new Set());
|
|
const rows = data ?? [];
|
|
|
|
const unreadIds = useMemo(
|
|
() => rows.filter((a) => a.state === 'FIRING').map((a) => a.id),
|
|
[rows],
|
|
);
|
|
|
|
const firingIds = unreadIds; // FIRING alerts are the ones that can be ack'd
|
|
|
|
const allSelected = rows.length > 0 && rows.every((r) => selected.has(r.id));
|
|
const someSelected = selected.size > 0 && !allSelected;
|
|
|
|
const toggleSelected = (id: string) => {
|
|
setSelected((prev) => {
|
|
const next = new Set(prev);
|
|
if (next.has(id)) next.delete(id); else next.add(id);
|
|
return next;
|
|
});
|
|
};
|
|
|
|
const toggleSelectAll = () => {
|
|
if (allSelected) {
|
|
setSelected(new Set());
|
|
} else {
|
|
setSelected(new Set(rows.map((r) => r.id)));
|
|
}
|
|
};
|
|
|
|
const onAck = async (id: string, title?: string) => {
|
|
try {
|
|
await ack.mutateAsync(id);
|
|
toast({ title: 'Acknowledged', description: title, variant: 'success' });
|
|
} catch (e) {
|
|
toast({ title: 'Ack failed', description: String(e), variant: 'error' });
|
|
}
|
|
};
|
|
|
|
const onBulkAck = async (ids: string[]) => {
|
|
if (ids.length === 0) return;
|
|
try {
|
|
await Promise.all(ids.map((id) => ack.mutateAsync(id)));
|
|
setSelected(new Set());
|
|
toast({ title: `Acknowledged ${ids.length} alert${ids.length === 1 ? '' : 's'}`, variant: 'success' });
|
|
} catch (e) {
|
|
toast({ title: 'Bulk ack failed', description: String(e), variant: 'error' });
|
|
}
|
|
};
|
|
|
|
const onBulkRead = async (ids: string[]) => {
|
|
if (ids.length === 0) return;
|
|
try {
|
|
await bulkRead.mutateAsync(ids);
|
|
setSelected(new Set());
|
|
toast({ title: `Marked ${ids.length} as read`, variant: 'success' });
|
|
} catch (e) {
|
|
toast({ title: 'Bulk read failed', description: String(e), variant: 'error' });
|
|
}
|
|
};
|
|
|
|
const columns: Column<AlertDto>[] = [
|
|
{
|
|
key: 'select', header: '', width: '40px',
|
|
render: (_, row) => (
|
|
<input
|
|
type="checkbox"
|
|
checked={selected.has(row.id)}
|
|
onChange={() => toggleSelected(row.id)}
|
|
aria-label={`Select ${row.title ?? row.id}`}
|
|
onClick={(e) => e.stopPropagation()}
|
|
/>
|
|
),
|
|
},
|
|
{
|
|
key: 'severity', header: 'Severity', width: '110px',
|
|
render: (_, row) =>
|
|
row.severity ? <SeverityBadge severity={row.severity} /> : null,
|
|
},
|
|
{
|
|
key: 'state', header: 'Status', width: '140px',
|
|
render: (_, row) =>
|
|
row.state ? <AlertStateChip state={row.state} silenced={row.silenced} /> : null,
|
|
},
|
|
{
|
|
key: 'title', header: 'Title',
|
|
render: (_, row) => {
|
|
const unread = row.state === 'FIRING';
|
|
return (
|
|
<div className={`${css.titleCell} ${unread ? css.titleCellUnread : ''}`}>
|
|
<Link to={`/alerts/inbox/${row.id}`} onClick={() => markRead.mutate(row.id)}>
|
|
{row.title ?? '(untitled)'}
|
|
</Link>
|
|
{row.message && <span className={css.titlePreview}>{row.message}</span>}
|
|
</div>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
key: 'age', header: 'Age', width: '100px', sortable: true,
|
|
render: (_, row) =>
|
|
row.firedAt ? (
|
|
<span title={row.firedAt} style={{ fontVariantNumeric: 'tabular-nums' }}>
|
|
{formatRelativeTime(row.firedAt)}
|
|
</span>
|
|
) : '—',
|
|
},
|
|
{
|
|
key: 'ack', header: '', width: '120px',
|
|
render: (_, row) =>
|
|
row.state === 'FIRING' ? (
|
|
<Button size="sm" variant="secondary" onClick={() => onAck(row.id, row.title ?? undefined)}>
|
|
Acknowledge
|
|
</Button>
|
|
) : null,
|
|
},
|
|
];
|
|
|
|
if (isLoading) return <PageLoader />;
|
|
if (error) return <div className={css.page}>Failed to load alerts: {String(error)}</div>;
|
|
|
|
const selectedIds = Array.from(selected);
|
|
const selectedFiringIds = rows
|
|
.filter((r) => selected.has(r.id) && r.state === 'FIRING')
|
|
.map((r) => r.id);
|
|
|
|
const subtitle =
|
|
selectedIds.length > 0
|
|
? `${selectedIds.length} selected`
|
|
: `${unreadIds.length} need attention · ${rows.length} total in inbox`;
|
|
|
|
return (
|
|
<div className={css.page}>
|
|
<header className={css.pageHeader}>
|
|
<div className={css.pageTitleGroup}>
|
|
<h2 className={css.pageTitle}>Inbox</h2>
|
|
<span className={css.pageSubtitle}>{subtitle}</span>
|
|
</div>
|
|
<div className={css.pageActions}>
|
|
<ButtonGroup
|
|
items={SEVERITY_ITEMS}
|
|
value={severitySel}
|
|
onChange={setSeveritySel}
|
|
/>
|
|
</div>
|
|
</header>
|
|
|
|
<div className={css.filterBar}>
|
|
<label style={{ display: 'flex', alignItems: 'center', gap: 6, fontSize: 13, color: 'var(--text-secondary)' }}>
|
|
<input
|
|
type="checkbox"
|
|
checked={allSelected}
|
|
ref={(el) => { if (el) el.indeterminate = someSelected; }}
|
|
onChange={toggleSelectAll}
|
|
aria-label={allSelected ? 'Deselect all' : 'Select all'}
|
|
/>
|
|
{allSelected ? 'Deselect all' : `Select all${rows.length ? ` (${rows.length})` : ''}`}
|
|
</label>
|
|
<span style={{ flex: 1 }} />
|
|
{selectedIds.length > 0 ? (
|
|
<>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={() => onBulkAck(selectedFiringIds)}
|
|
disabled={selectedFiringIds.length === 0 || ack.isPending}
|
|
>
|
|
{selectedFiringIds.length > 0
|
|
? `Acknowledge ${selectedFiringIds.length}`
|
|
: 'Acknowledge selected'}
|
|
</Button>
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
onClick={() => onBulkRead(selectedIds)}
|
|
disabled={bulkRead.isPending}
|
|
>
|
|
Mark {selectedIds.length} read
|
|
</Button>
|
|
</>
|
|
) : (
|
|
<>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
onClick={() => onBulkAck(firingIds)}
|
|
disabled={firingIds.length === 0 || ack.isPending}
|
|
>
|
|
Acknowledge all firing
|
|
</Button>
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
onClick={() => onBulkRead(unreadIds)}
|
|
disabled={unreadIds.length === 0 || bulkRead.isPending}
|
|
>
|
|
Mark all read
|
|
</Button>
|
|
</>
|
|
)}
|
|
</div>
|
|
|
|
{rows.length === 0 ? (
|
|
<EmptyState
|
|
icon={<Inbox size={32} />}
|
|
title="All clear"
|
|
description="No open alerts for you in this environment."
|
|
/>
|
|
) : (
|
|
<div className={`${tableStyles.tableSection} ${css.tableWrap}`}>
|
|
<DataTable<AlertDto & { id: string }>
|
|
columns={columns as Column<AlertDto & { id: string }>[]}
|
|
data={rows as Array<AlertDto & { id: string }>}
|
|
sortable
|
|
flush
|
|
fillHeight
|
|
pageSize={200}
|
|
rowAccent={(row) => row.severity ? severityToAccent(row.severity) : undefined}
|
|
expandedContent={renderAlertExpanded}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|