GenerAI / worldmonitor /src /components /CountryDeepDivePanel-cii.ts
amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 7)
9d2d895 verified
Raw
History Blame Contribute Delete
447 Bytes
import type { CountryScore } from '@/services/country-instability';
export type CiiBand = 'stable' | 'elevated' | 'high' | 'critical';
/** Map the canonical CII level to the deep-dive panel's existing visual bands. */
export function ciiBandForLevel(level: CountryScore['level']): CiiBand {
if (level === 'critical') return 'critical';
if (level === 'high') return 'high';
if (level === 'elevated') return 'elevated';
return 'stable';
}