feat(web): add IwoooS review outcomes

This commit is contained in:
Your Name
2026-05-20 09:19:20 +08:00
parent 1e3e7a1525
commit ea87533311
11 changed files with 627 additions and 7 deletions

View File

@@ -215,6 +215,13 @@ type HostOwnerDecisionRecordFormalCandidateReviewItem = {
tone: 'steady' | 'warn' | 'locked'
}
type HostOwnerDecisionRecordFormalCandidateReviewOutcomeLane = {
key: string
lane: string
icon: typeof ShieldCheck
tone: 'steady' | 'warn' | 'locked'
}
const postureMetrics: PostureMetric[] = [
{ key: 'overall', value: '58%', tone: 'warn' },
{ key: 'framework', value: '80-85%', tone: 'steady' },
@@ -506,6 +513,17 @@ const hostOwnerDecisionRecordFormalCandidateReviewItems: HostOwnerDecisionRecord
{ key: 'runtimeGateStillClosed', check: 'FR7', icon: ShieldCheck, tone: 'locked' },
]
const hostOwnerDecisionRecordFormalCandidateReviewOutcomeLanes: HostOwnerDecisionRecordFormalCandidateReviewOutcomeLane[] = [
{ key: 'readyForHumanRecordQueue', lane: 'FV1', icon: CheckCircle2, tone: 'steady' },
{ key: 'identityNeedsTrace', lane: 'FV2', icon: FileText, tone: 'warn' },
{ key: 'decisionSummaryNeedsClarification', lane: 'FV3', icon: ClipboardCheck, tone: 'warn' },
{ key: 'scopeExpiryNeedsRefresh', lane: 'FV4', icon: Radar, tone: 'warn' },
{ key: 'scanLimitsAmbiguous', lane: 'FV5', icon: Activity, tone: 'locked' },
{ key: 'credentialBoundaryFailed', lane: 'FV6', icon: Lock, tone: 'locked' },
{ key: 'maintenanceRollbackIncomplete', lane: 'FV7', icon: Clock3, tone: 'warn' },
{ key: 'runtimeGateStillRequired', lane: 'FV8', icon: ShieldCheck, tone: 'locked' },
]
const evidenceItems = [
'iwooos-posture-projection.snapshot.json',
'security-rollout-policy.snapshot.json',
@@ -1328,6 +1346,38 @@ function HostOwnerDecisionRecordFormalCandidateReviewCard({
)
}
function HostOwnerDecisionRecordFormalCandidateReviewOutcomeCard({
item,
}: {
item: HostOwnerDecisionRecordFormalCandidateReviewOutcomeLane
}) {
const t = useTranslations('iwooos.hostOwnerDecisionRecordFormalCandidateReviewOutcomes')
const Icon = item.icon
return (
<div style={{ ...band, minHeight: 190, padding: 16 }}>
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', gap: 12 }}>
<div style={{ display: 'flex', alignItems: 'center', gap: 9 }}>
<Icon size={18} color={toneColors[item.tone]} />
<span style={{ fontSize: 11, color: '#87867f' }}>{t('laneLabel')}</span>
</div>
<span style={{ fontSize: 11, color: '#9b978b' }}>{item.lane}</span>
</div>
<h2 style={{ fontSize: 14, margin: '12px 0 6px', color: '#141413' }}>
{t(`items.${item.key}.title` as never)}
</h2>
<p style={{ fontSize: 12, lineHeight: 1.55, color: '#6f6d66', margin: 0 }}>
{t(`items.${item.key}.body` as never)}
</p>
<div style={{ marginTop: 10, display: 'grid', gap: 5 }}>
<div style={{ fontSize: 11, color: '#87867f' }}>{t('nextLabel')}</div>
<div style={{ fontSize: 11, color: toneColors[item.tone], lineHeight: 1.45 }}>
{t(`items.${item.key}.next` as never)}
</div>
</div>
</div>
)
}
export default function IwoooSPage({ params }: { params: { locale: string } }) {
const t = useTranslations('iwooos')
@@ -1800,6 +1850,26 @@ export default function IwoooSPage({ params }: { params: { locale: string } }) {
</div>
</section>
<section style={{ marginBottom: 14 }}>
<div style={{ marginBottom: 14 }}>
<h2 style={{ fontSize: 16, margin: 0 }}>{t('hostOwnerDecisionRecordFormalCandidateReviewOutcomes.title')}</h2>
<p style={{ fontSize: 12, color: '#6f6d66', margin: '6px 0 0', lineHeight: 1.55 }}>
{t('hostOwnerDecisionRecordFormalCandidateReviewOutcomes.subtitle')}
</p>
</div>
<div
style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(210px, 1fr))',
gap: 12,
}}
>
{hostOwnerDecisionRecordFormalCandidateReviewOutcomeLanes.map(item => (
<HostOwnerDecisionRecordFormalCandidateReviewOutcomeCard key={item.key} item={item} />
))}
</div>
</section>
<section
style={{
display: 'grid',