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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | 1x 1x 1x 1x 1x 1x 1x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 117x 117x 117x 117x 117x 63x 63x 63x 63x 63x 63x 63x 63x 63x 54x 54x 117x 117x 117x 117x 117x 117x 117x 117x 117x 117x 117x 117x 117x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 35x 4x 1x 3x 39x 39x 35x 4x 1x 3x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 78x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 35x 4x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 1x 38x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 3x 36x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 35x 4x 1x 3x 39x 39x 35x 4x 1x 3x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 18x 18x 18x 18x 18x 18x 18x 18x 18x 18x 38x 38x 38x 38x 38x 38x 18x 18x 18x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 1x | import React, { useMemo, useState } from "react"; import { WIDGET_ICONS, WIDGET_TITLES } from "../../../constants/appConstants"; import { TECHNICAL_DETAILS_TEST_IDS } from "../../../constants/testIds"; import { useCIAContentService } from "../../../hooks/useCIAContentService"; import { SecurityLevel } from "../../../types/cia"; import SecurityLevelBadge from "../../common/SecurityLevelBadge"; import WidgetContainer from "../../common/WidgetContainer"; /** * Props for TechnicalDetailsWidget */ interface TechnicalDetailsWidgetProps { /** * 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; } /** * Technical Details Widget provides implementation specifics for security levels * * ## Business Perspective * * This widget helps technical teams understand the specific implementation * requirements for the selected security levels, providing detailed technical * guidance, expertise requirements, and implementation considerations to support * successful security control deployment. 🔧 */ const TechnicalDetailsWidget: React.FC<TechnicalDetailsWidgetProps> = ({ availabilityLevel, integrityLevel, confidentialityLevel, className = "", testId = "widget-technical-details", }) => { // State for active tab const [activeTab, setActiveTab] = useState< "availability" | "integrity" | "confidentiality" >("availability"); // Get the content service const { ciaContentService } = useCIAContentService(); // Helper function to get component-specific technical details const getTechnicalDetails = ( component: "availability" | "integrity" | "confidentiality", level: SecurityLevel ) => { // Add null check to service call const technicalImplementation = useMemo(() => { if (!ciaContentService) { return { description: "Service unavailable", implementationSteps: [], expertiseLevel: "Unknown", developmentEffort: "Medium", maintenanceLevel: "Medium", recommendedTechStack: {}, }; } // Use getTechnicalDescription for the description field const technicalDescription = ciaContentService.getTechnicalDescription?.(component, level) || "Technical details not available"; // Return result from service or fallback to defaults return { description: technicalDescription, implementationSteps: ciaContentService.getTechnicalImplementation?.(component, level) ?.implementationSteps || [], expertiseLevel: "Standard", developmentEffort: "Medium", maintenanceLevel: "Medium", recommendedTechStack: {}, }; }, [ciaContentService, component, level]); return technicalImplementation; }; // Get details for each component const availabilityDetails = getTechnicalDetails( "availability", availabilityLevel ); const integrityDetails = getTechnicalDetails("integrity", integrityLevel); const confidentialityDetails = getTechnicalDetails( "confidentiality", confidentialityLevel ); // Get the active details based on the active tab const activeDetails = activeTab === "availability" ? availabilityDetails : activeTab === "integrity" ? integrityDetails : confidentialityDetails; // Get the active level based on the active tab const activeLevel = activeTab === "availability" ? availabilityLevel : activeTab === "integrity" ? integrityLevel : confidentialityLevel; // Helper function to render expertise level badge const renderExpertiseBadge = (level: string) => { const levelMap: Record<string, { color: string; icon: string }> = { Basic: { color: "bg-green-100 text-green-800 dark:bg-green-900 dark:bg-opacity-20 dark:text-green-300", icon: "👨💻", }, Standard: { color: "bg-blue-100 text-blue-800 dark:bg-blue-900 dark:bg-opacity-20 dark:text-blue-300", icon: "👨💻👨💻", }, Advanced: { color: "bg-purple-100 text-purple-800 dark:bg-purple-900 dark:bg-opacity-20 dark:text-purple-300", icon: "👨💻👨💻👨💻", }, Expert: { color: "bg-red-100 text-red-800 dark:bg-red-900 dark:bg-opacity-20 dark:text-red-300", icon: "👨💻👨💻👨💻👨💻", }, }; const { color, icon } = levelMap[level] || levelMap["Standard"]; return ( <span className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${color}`} > {icon} {level} </span> ); }; // Helper function to render effort level badge const renderEffortBadge = (level: string) => { const levelMap: Record<string, { color: string; icon: string }> = { Low: { color: "bg-green-100 text-green-800 dark:bg-green-900 dark:bg-opacity-20 dark:text-green-300", icon: "⏱️", }, Medium: { color: "bg-blue-100 text-blue-800 dark:bg-blue-900 dark:bg-opacity-20 dark:text-blue-300", icon: "⏱️⏱️", }, High: { color: "bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:bg-opacity-20 dark:text-yellow-300", icon: "⏱️⏱️⏱️", }, "Very High": { color: "bg-red-100 text-red-800 dark:bg-red-900 dark:bg-opacity-20 dark:text-red-300", icon: "⏱️⏱️⏱️⏱️", }, }; const { color, icon } = levelMap[level] || levelMap["Medium"]; return ( <span className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${color}`} > {icon} {level} </span> ); }; return ( <WidgetContainer title={WIDGET_TITLES.TECHNICAL_DETAILS} icon={WIDGET_ICONS.TECHNICAL_DETAILS} className={className} testId={testId} > <div className="p-4"> {/* Tabs navigation */} <div className="flex border-b border-gray-200 dark:border-gray-700 mb-4"> <button className={`px-4 py-2 text-sm font-medium ${ activeTab === "availability" ? "border-b-2 border-blue-500 text-blue-600 dark:text-blue-400" : "text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-300" }`} onClick={() => setActiveTab("availability")} data-testid={TECHNICAL_DETAILS_TEST_IDS.AVAILABILITY_TAB} > <span className="flex items-center"> <span className="mr-2">⏱️</span> Availability </span> </button> <button className={`px-4 py-2 text-sm font-medium ${ activeTab === "integrity" ? "border-b-2 border-green-500 text-green-600 dark:text-green-400" : "text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-300" }`} onClick={() => setActiveTab("integrity")} data-testid={TECHNICAL_DETAILS_TEST_IDS.INTEGRITY_TAB} > <span className="flex items-center"> <span className="mr-2">✓</span> Integrity </span> </button> <button className={`px-4 py-2 text-sm font-medium ${ activeTab === "confidentiality" ? "border-b-2 border-purple-500 text-purple-600 dark:text-purple-400" : "text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-300" }`} onClick={() => setActiveTab("confidentiality")} data-testid={TECHNICAL_DETAILS_TEST_IDS.CONFIDENTIALITY_TAB} > <span className="flex items-center"> <span className="mr-2">🔒</span> Confidentiality </span> </button> </div> {/* Security level badge */} <div className="mb-4"> <SecurityLevelBadge category={activeTab.charAt(0).toUpperCase() + activeTab.slice(1)} level={activeLevel} colorClass={ activeTab === "availability" ? "bg-blue-100 dark:bg-blue-900 dark:bg-opacity-20" : activeTab === "integrity" ? "bg-green-100 dark:bg-green-900 dark:bg-opacity-20" : "bg-purple-100 dark:bg-purple-900 dark:bg-opacity-20" } textClass={ activeTab === "availability" ? "text-blue-800 dark:text-blue-300" : activeTab === "integrity" ? "text-green-800 dark:text-green-300" : "text-purple-800 dark:text-purple-300" } /> </div> {/* Technical details content */} <div className="space-y-6"> {/* Technical Description */} <div> <h3 className="text-lg font-medium mb-2" data-testid={TECHNICAL_DETAILS_TEST_IDS.TECHNICAL_HEADER} > Technical Implementation </h3> <p className="text-gray-600 dark:text-gray-300" data-testid={TECHNICAL_DETAILS_TEST_IDS.TECHNICAL_DESCRIPTION} > {activeDetails.description} </p> </div> {/* Implementation Requirements */} <div className="grid grid-cols-1 md:grid-cols-3 gap-4"> <div className="p-3 bg-gray-50 dark:bg-gray-800 rounded-lg"> <div className="text-sm font-medium mb-1">Development Effort</div> <div className="font-medium" data-testid={TECHNICAL_DETAILS_TEST_IDS.DEVELOPMENT_EFFORT} > {renderEffortBadge(activeDetails.developmentEffort)} </div> </div> <div className="p-3 bg-gray-50 dark:bg-gray-800 rounded-lg"> <div className="text-sm font-medium mb-1">Maintenance Level</div> <div className="font-medium" data-testid={TECHNICAL_DETAILS_TEST_IDS.MAINTENANCE_LEVEL} > {renderEffortBadge(activeDetails.maintenanceLevel)} </div> </div> <div className="p-3 bg-gray-50 dark:bg-gray-800 rounded-lg"> <div className="text-sm font-medium mb-1">Required Expertise</div> <div className="font-medium" data-testid={TECHNICAL_DETAILS_TEST_IDS.REQUIRED_EXPERTISE} > {renderExpertiseBadge(activeDetails.expertiseLevel)} </div> </div> </div> {/* Implementation Steps */} {activeDetails.implementationSteps && activeDetails.implementationSteps.length > 0 && ( <div> <h3 className="text-lg font-medium mb-2" data-testid={TECHNICAL_DETAILS_TEST_IDS.IMPLEMENTATION_HEADER} > Implementation Steps </h3> <ol className="list-decimal list-inside space-y-2 text-gray-600 dark:text-gray-300" data-testid={TECHNICAL_DETAILS_TEST_IDS.IMPLEMENTATION_STEPS} > {activeDetails.implementationSteps.map((step, index) => ( <li key={index} data-testid={`implementation-step-${index}`} className="pl-1" > {step} </li> ))} </ol> </div> )} {/* Technology Stack Recommendations */} {activeDetails.recommendedTechStack && ( <div> <h3 className="text-lg font-medium mb-2"> Recommended Technology Stack </h3> <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> {Object.entries(activeDetails.recommendedTechStack).map( ([category, technologies], index) => ( <div key={index} className="p-3 bg-gray-50 dark:bg-gray-800 rounded-lg" > <div className="text-sm font-medium mb-1">{category}</div> <div className="text-gray-600 dark:text-gray-300"> {Array.isArray(technologies) ? technologies.join(", ") : String(technologies || "")} </div> </div> ) )} </div> </div> )} </div> </div> </WidgetContainer> ); }; // Export the component directly without HOC export default TechnicalDetailsWidget; |