Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 1x 1x 1x 13x 13x 13x 13x 13x 13x 13x 1x 1x 1x 1x 13x 13x 13x 13x 13x 13x 13x 13x 13x 1x | import React from "react"; import { getRiskBadgeVariant } from "../../utils"; import StatusBadge from "./StatusBadge"; interface RiskLevelBadgeProps { riskLevel: string; testId?: string; className?: string; showIcon?: boolean; } /** * A specialized badge component for displaying risk levels with consistent styling * * ## Business Perspective * * This component standardizes risk level visualization across the application, * ensuring consistent communication of risk to stakeholders. The visual consistency * improves risk perception and decision-making. đ */ const RiskLevelBadge: React.FC<RiskLevelBadgeProps> = ({ riskLevel, testId, className = "", showIcon = false }) => { // Get appropriate badge variant for risk level const badgeVariant = getRiskBadgeVariant(riskLevel); // Risk level icons const getRiskIcon = () => { const normalizedLevel = riskLevel?.toLowerCase() || ""; if (normalizedLevel.includes("critical")) return "â ī¸"; if (normalizedLevel.includes("high")) return "â ī¸"; if (normalizedLevel.includes("medium") || normalizedLevel.includes("moderate")) return "â "; if (normalizedLevel.includes("low")) return "âšī¸"; if (normalizedLevel.includes("minimal")) return "â"; return ""; }; return ( <StatusBadge status={badgeVariant} testId={testId || `risk-level-${riskLevel?.toLowerCase().replace(/\s+/g, '-')}`} className={className} > {showIcon && <span className="mr-1">{getRiskIcon()}</span>} {riskLevel || "Unknown"} </StatusBadge> ); }; export default RiskLevelBadge; |