feat(platform): add alert recovery acceptance

This commit is contained in:
lingniu
2026-07-05 18:59:10 +08:00
parent 2852cdd7b6
commit 33f1ed24e4
3 changed files with 238 additions and 1 deletions

View File

@@ -718,6 +718,51 @@ function alertCustomerDecisionText({
].join('\n');
}
function alertRecoveryReceiptText({
summary,
impactLabel,
priorityRows,
primaryPolicy,
filters,
platformRelease
}: {
summary: QualitySummary;
impactLabel: string;
priorityRows: PriorityIssueRow[];
primaryPolicy?: QualityNotificationPolicy;
filters: Record<string, string>;
platformRelease?: string;
}) {
const release = platformRelease?.trim();
const filterLines = [
filters.keyword ? `关键词=${filters.keyword}` : '',
filters.protocol ? `数据来源=${qualityProtocolLabel(filters.protocol)}` : '',
filters.issueType ? `问题类型=${qualityIssueLabel(filters.issueType)}` : ''
].filter(Boolean);
const focusRows = priorityRows.slice(0, 5).map((row, index) => {
const lookup = qualityIssueVehicleLookup(row);
return `${index + 1}. ${row.vehicleLabel} / ${qualityProtocolLabel(row.protocol)} / ${lookup.key || '-'} / ${qualityIssueLabel(row.issueType)}`;
});
return [
'【客户告警恢复验收回执】',
...(release ? [`运行版本:${release}`] : []),
`当前筛选:${filterLines.length > 0 ? filterLines.join('') : '全部告警'}`,
`当前影响:${Number(summary.issueVehicleCount ?? 0).toLocaleString()} 辆车 / ${Number(summary.issueRecordCount ?? 0).toLocaleString()} 条告警 / ${impactLabel}`,
'恢复标准:实时可看 / 轨迹可回放 / 里程可核对 / 历史证据可导出',
`通知策略:${primaryPolicy ? [primaryPolicy.name, primaryPolicy.target, primaryPolicy.channel].filter(Boolean).join(' / ') : '-'}`,
`验收口径:${primaryPolicy?.acceptanceCriteria || '车辆服务状态恢复,实时、轨迹、历史和里程证据可查询。'}`,
'',
'待复核车辆:',
...(focusRows.length > 0 ? focusRows : ['当前没有优先车辆']),
'',
`告警事件:${qualityShareURL()}`,
`实时监控:${appURL(buildAppHash({ page: 'realtime', filters }))}`,
`轨迹回放:${appURL(buildAppHash({ page: 'history', filters }))}`,
`里程统计:${appURL(buildAppHash({ page: 'mileage', filters }))}`,
`历史导出:${appURL(buildAppHash({ page: 'history-query', filters: { ...filters, tab: 'raw', includeFields: 'true' } }))}`
].join('\n');
}
async function copyText(value: string, label: string) {
const text = value.trim();
if (!text) {
@@ -1016,6 +1061,72 @@ export function Quality({
platformRelease: health?.runtime?.platformRelease
}), '客户告警决策说明');
};
const copyAlertRecoveryReceipt = () => {
copyText(alertRecoveryReceiptText({
summary: notificationPlan?.summary ?? summary,
impactLabel: impactSeverity.label,
priorityRows,
primaryPolicy,
filters,
platformRelease: health?.runtime?.platformRelease
}), '客户告警恢复验收回执');
};
const alertRecoveryAcceptanceItems = [
{
label: '实时恢复',
value: storageWritable ? '可验证' : '先修复存储',
detail: '确认客户能看到车辆实时状态、在线状态和最新协议字段。',
color: storageWritable ? 'green' as const : 'red' as const,
action: '实时确认',
displayAction: '实时验收',
onClick: () => {
if (onOpenRealtime) {
onOpenRealtime(filters);
} else {
window.location.hash = buildAppHash({ page: 'realtime', filters });
}
}
},
{
label: '轨迹恢复',
value: issueVehicleCount > 0 ? '需复核' : '正常',
detail: '用受影响车辆回放轨迹,确认定位、速度和时间连续可查。',
color: issueVehicleCount > 0 ? 'orange' as const : 'green' as const,
action: '轨迹复核',
displayAction: '轨迹验收',
onClick: () => {
if (onOpenHistory) {
onOpenHistory(filters);
} else {
window.location.hash = buildAppHash({ page: 'history', filters });
}
}
},
{
label: '里程恢复',
value: primaryIssueType ? qualityIssueLabel(primaryIssueType) : '可核对',
detail: '用区间里程和历史证据确认统计结果能解释、能导出、能复盘。',
color: primaryIssueType ? 'orange' as const : 'green' as const,
action: '里程核对',
displayAction: '里程验收',
onClick: () => {
if (onOpenMileage) {
onOpenMileage(filters);
} else {
window.location.hash = buildAppHash({ page: 'mileage', filters });
}
}
},
{
label: '客户回执',
value: primaryPolicy?.target || '责任人待配置',
detail: '复制一份包含影响范围、验收标准、证据入口和待复核车辆的恢复回执。',
color: primaryPolicy ? 'blue' as const : 'orange' as const,
action: '复制回执',
displayAction: '回执复制',
onClick: copyAlertRecoveryReceipt
}
];
return (
<div className="vp-page">
@@ -1183,6 +1294,43 @@ export function Quality({
</div>
</div>
</Card>
<Card bordered title="客户恢复验收台" style={{ marginTop: 16 }}>
<div className="vp-alert-recovery-board">
<div className="vp-alert-recovery-summary">
<Space wrap>
<Tag color={impactSeverity.color}>{impactSeverity.label}</Tag>
<Tag color={storageWritable ? 'green' : 'red'}>{storageWritable ? '存储可写' : '存储异常'}</Tag>
<Tag color={primaryPolicy ? 'blue' : 'orange'}>{primaryPolicy?.target || '责任人待配置'}</Tag>
</Space>
<strong>绿</strong>
<span>
</span>
<Space wrap>
<Button size="small" theme="solid" type="primary" onClick={copyAlertRecoveryReceipt}></Button>
<Button size="small" onClick={copyNotificationHandoff}></Button>
</Space>
</div>
<div className="vp-alert-recovery-grid">
{alertRecoveryAcceptanceItems.map((item) => (
<button
key={item.label}
type="button"
className="vp-alert-recovery-item"
aria-label={`客户恢复验收台 ${item.label} ${item.action}`}
onClick={item.onClick}
>
<div>
<Tag color={item.color}>{item.label}</Tag>
<Tag color="grey">{item.displayAction}</Tag>
</div>
<strong>{item.value}</strong>
<span>{item.detail}</span>
</button>
))}
</div>
</div>
</Card>
<Card bordered title="告警事件与通知中心">
<div className="vp-alert-center-board">
<div className="vp-alert-center-summary">