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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 11x 1x 34x 34x 34x 34x 34x 34x 34x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 30x 30x 30x 34x 34x 34x 34x 34x 34x 1x | import { ArcElement, Chart, ChartConfiguration, Legend, LineElement, PointElement, RadarController, RadialLinearScale, Tooltip, } from "chart.js"; import React, { useEffect, useMemo, useRef } from "react"; import { WIDGET_ICONS, WIDGET_TITLES } from "../../../constants/appConstants"; import { CHART_TEST_IDS } from "../../../constants/testIds"; import { SecurityLevel } from "../../../types/cia"; import { getSecurityLevelValue } from "../../../utils/securityLevelUtils"; import { SecurityRiskScore } from "../../charts/SecurityRiskScore"; import WidgetContainer from "../../common/WidgetContainer"; // Register the required chart.js components - fix: add RadialLinearScale and remove LinearScale Chart.register( RadarController, ArcElement, PointElement, RadialLinearScale, LineElement, Tooltip, Legend ); export interface SecurityVisualizationWidgetProps { /** * Selected availability level */ availabilityLevel: SecurityLevel; /** * Selected integrity level */ integrityLevel: SecurityLevel; /** * Selected confidentiality level */ confidentialityLevel: SecurityLevel; /** * Optional CSS class name */ className?: string; /** * Optional test ID for automated testing */ testId?: string; } /** * Security Visualization Widget provides visual representation of security posture * * ## Business Perspective * * This widget visualizes the organization's security posture across the CIA triad, * helping security professionals and executives identify gaps and balance security * investments across confidentiality, integrity, and availability domains. 📊 */ const SecurityVisualizationWidget: React.FC< SecurityVisualizationWidgetProps > = ({ availabilityLevel, integrityLevel, confidentialityLevel, className = "", testId = "security-visualization-widget", }) => { // Reference to the canvas element const chartRef = useRef<HTMLCanvasElement>(null); // Reference to the Chart instance for cleanup const chartInstance = useRef<Chart | null>(null); // Get numerical values for security levels const availabilityValue = getSecurityLevelValue(availabilityLevel); const integrityValue = getSecurityLevelValue(integrityLevel); const confidentialityValue = getSecurityLevelValue(confidentialityLevel); // Calculate the overall security score (0-100) const securityScore = useMemo(() => { const totalValue = availabilityValue + integrityValue + confidentialityValue; const maxPossibleValue = 12; // 3 components x maximum value of 4 return Math.round((totalValue / maxPossibleValue) * 100); }, [availabilityValue, integrityValue, confidentialityValue]); // Calculate risk level based on security score const riskLevel = useMemo(() => { if (securityScore >= 80) return "Low Risk"; if (securityScore >= 60) return "Moderate Risk"; if (securityScore >= 40) return "Elevated Risk"; if (securityScore >= 20) return "High Risk"; return "Critical Risk"; }, [securityScore]); // Create or update the chart when security levels change - add proper cleanup useEffect(() => { // Initialize Chart.js - fix: remove registerables which is undefined // Instead of Chart.register(...registerables); // The registration is already done at the top of the file // Handle test environment - this conditional prevents errors in test environment if (typeof window !== "undefined" && !window.ResizeObserver) { window.ResizeObserver = class MockResizeObserver { constructor(_callback: ResizeObserverCallback) {} observe() {} unobserve() {} disconnect() {} }; } if (!chartRef.current) return; // Clean up previous chart instance if (chartInstance.current) { chartInstance.current.destroy(); chartInstance.current = null; } const ctx = chartRef.current.getContext("2d"); if (!ctx) return; // Prepare chart configuration const config: ChartConfiguration = { type: "radar", data: { labels: ["Availability", "Integrity", "Confidentiality"], datasets: [ { label: "Current Security Levels", data: [ (availabilityValue / 4) * 100, (integrityValue / 4) * 100, (confidentialityValue / 4) * 100, ], backgroundColor: "rgba(75, 192, 192, 0.2)", borderColor: "rgba(75, 192, 192, 1)", pointBackgroundColor: "rgba(75, 192, 192, 1)", pointBorderColor: "#fff", pointHoverBackgroundColor: "#fff", pointHoverBorderColor: "rgba(75, 192, 192, 1)", }, { label: "Target Security", data: [75, 75, 75], // Target is "High" level (75%) backgroundColor: "rgba(255, 159, 64, 0.2)", borderColor: "rgba(255, 159, 64, 1)", pointBackgroundColor: "rgba(255, 159, 64, 1)", pointBorderColor: "#fff", pointHoverBackgroundColor: "#fff", pointHoverBorderColor: "rgba(255, 159, 64, 1)", borderDash: [5, 5], }, ], }, options: { responsive: true, maintainAspectRatio: false, scales: { // Fix: Use 'r' property instead of LinearScale r: { angleLines: { display: true, }, suggestedMin: 0, suggestedMax: 100, }, }, plugins: { tooltip: { callbacks: { label: function (context) { const value = context.raw as number; const securityLevels = [ "None", "Low", "Moderate", "High", "Very High", ]; const levelIndex = Math.round((value / 100) * 4); return `${context.dataset.label}: ${securityLevels[levelIndex]} (${value}%)`; }, }, }, }, }, }; // Create new chart instance chartInstance.current = new Chart(ctx, config); // Cleanup function return () => { if (chartInstance.current) { chartInstance.current.destroy(); chartInstance.current = null; } }; }, [availabilityValue, integrityValue, confidentialityValue]); return ( <WidgetContainer title={WIDGET_TITLES.SECURITY_VISUALIZATION} icon={WIDGET_ICONS.SECURITY_VISUALIZATION} className={className} testId={testId} > <div className="p-4"> <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> <div className="bg-gray-50 dark:bg-gray-800 p-4 rounded-lg flex flex-col items-center justify-center"> <SecurityRiskScore score={securityScore} label={riskLevel} testId={`${testId}-risk-score`} /> <div className="mt-4 grid grid-cols-3 w-full text-center"> <div className="text-blue-600 dark:text-blue-400" data-testid={CHART_TEST_IDS.RADAR_AVAILABILITY_VALUE} > <div className="text-sm mb-1">Availability</div> <div className="font-medium">{availabilityLevel}</div> </div> <div className="text-green-600 dark:text-green-400" data-testid={CHART_TEST_IDS.RADAR_INTEGRITY_VALUE} > <div className="text-sm mb-1">Integrity</div> <div className="font-medium">{integrityLevel}</div> </div> <div className="text-purple-600 dark:text-purple-400" data-testid={CHART_TEST_IDS.RADAR_CONFIDENTIALITY_VALUE} > <div className="text-sm mb-1">Confidentiality</div> <div className="font-medium">{confidentialityLevel}</div> </div> </div> </div> <div className="bg-gray-50 dark:bg-gray-800 p-4 rounded-lg"> <div className="h-64 relative"> <canvas ref={chartRef} data-testid={CHART_TEST_IDS.RADAR_CHART} ></canvas> </div> </div> </div> <div className="mt-6 bg-gray-50 dark:bg-gray-800 rounded-lg p-4"> <h3 className="text-lg font-medium mb-3"> Security Posture Analysis </h3> <div className="text-sm text-gray-600 dark:text-gray-400 space-y-2"> <p> This visualization shows your current security posture across the CIA triad (Confidentiality, Integrity, Availability) compared to a target "High" security level recommended for most business applications. </p> <p> Your overall security score is{" "} <span className="font-medium">{securityScore}%</span>, which indicates a <span className="font-medium">{riskLevel}</span>{" "} posture. {securityScore < 60 && ( <span className="text-red-600 dark:text-red-400 font-medium"> {" "} Consider improving the areas with lower scores to enhance your overall security posture. </span> )} </p> </div> </div> </div> </WidgetContainer> ); }; // Export the component directly without HOC export default SecurityVisualizationWidget; |