All files / src/types widgets.ts

0% Statements 0/0
0% Branches 1/1
0% Functions 1/1
0% Lines 0/0

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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
import { ReactNode } from "react";
import { SecurityLevel } from "./cia";
import {
  BusinessImpactDetails,
  CIADetails,
  ROIEstimate,
  TechnicalImplementationDetails,
} from "./cia-services";
import { CommonWidgetProps, WithSecurityLevelProps } from "./widget-props";
 
/**
 * Widget-specific interfaces that extend or use the core CIA types
 *
 * ## Business Perspective
 *
 * These interfaces support the visual representation of security controls,
 * providing stakeholders with an intuitive way to understand security impact. 📊
 *
 * The widget type system is designed to ensure consistency across the application
 * while supporting the specific business needs of different security assessment areas.
 *
 * @category Widgets
 * @packageDocumentation
 */
 
/**
 * Base widget props shared by all widgets
 *
 * @category Base Types
 */
export interface BaseWidgetProps extends CommonWidgetProps {
  /**
   * Optional children elements
   */
  children?: ReactNode;
}
 
/**
 * Props for security-related widgets
 *
 * ## Business Perspective
 *
 * These widgets form the foundation of security assessment in the application,
 * allowing organizations to visualize and manage their security posture
 * across the CIA triad. 🔒
 *
 * @category Base Types
 */
export interface SecurityWidgetBaseProps
  extends WithSecurityLevelProps,
    BaseWidgetProps {}
 
/**
 * Base props for all widgets
 *
 * ## Business Perspective
 *
 * All widgets in the application share these core properties, enabling
 * consistent styling, testing, and interactive capabilities. This creates
 * a unified dashboard experience for security officers and executives. 🎨
 *
 * @category Base Types
 */
export interface WidgetBaseProps {
  /**
   * Optional CSS class name
   */
  className?: string;
 
  /**
   * Optional test ID for testing
   */
  testId?: string;
 
  /**
   * Optional security level for widgets that only need one level
   */
  securityLevel?: SecurityLevel;
}
 
/**
 * Base props shared by all CIA-related widgets
 *
 * This provides a common foundation for all widgets that display
 * information based on CIA security levels.
 *
 * ## Business Perspective
 *
 * CIA-related widgets help organizations understand their security posture
 * from different angles (availability, integrity, confidentiality),
 * providing consistent assessment and reporting capabilities. 📋
 *
 * @category Base Types
 */
export interface CIABaseWidgetProps extends WidgetBaseProps {
  /**
   * Availability security level
   */
  availabilityLevel: SecurityLevel;
 
  /**
   * Integrity security level
   */
  integrityLevel: SecurityLevel;
 
  /**
   * Confidentiality security level
   */
  confidentialityLevel: SecurityLevel;
}
 
/**
 * Alias type for WidgetBaseProps to maintain backward compatibility
 *
 * @category Base Types
 */
export type WidgetProps = WidgetBaseProps;
 
/**
 * Props for widgets that display security summaries
 *
 * This widget displays a summary of the current security posture based on
 * confidentiality, integrity, and availability security levels. It provides
 * a consolidated view of the organization's security stance.
 *
 * ## Business Perspective
 *
 * This component helps security officers quickly visualize the current
 * security posture across the CIA triad. The security level information
 * is critical for compliance reporting and risk assessment. 🔒
 *
 * @category Assessment Widgets
 */
export interface SecuritySummaryWidgetProps extends SecurityWidgetBaseProps {
  /**
   * Optional overall security level
   */
  securityLevel?: SecurityLevel;
}
 
/**
 * Props for widgets that display security impacts
 *
 * ## Business Perspective
 *
 * Impact widgets help stakeholders understand the consequences of their
 * security choices, highlighting how each security level affects the
 * organization from technical, operational, and business perspectives. 💼
 *
 * @category Impact Widgets
 */
export interface SecurityImpactWidgetProps extends SecurityWidgetBaseProps {
  /**
   * Optional level (for backward compatibility)
   */
  level?: SecurityLevel;
}
 
/**
 * Props for widgets that display business impacts
 *
 * ## Business Perspective
 *
 * Business impact widgets translate technical security concepts into
 * business terms, helping executives understand ROI, cost-benefit analysis,
 * and business value of security investments. 📊
 *
 * @category Business Widgets
 */
export interface BusinessImpactWidgetProps extends SecurityWidgetBaseProps {
  /**
   * Optional ROI information
   */
  roi?: {
    value: string;
    description: string;
  };
}
 
/**
 * Props for widgets that display compliance status
 *
 * ## Business Perspective
 *
 * Compliance widgets help organizations understand how their security settings
 * align with regulatory requirements, enabling them to identify gaps and
 * satisfy audit requirements. 📋
 *
 * @category Compliance Widgets
 */
export interface ComplianceWidgetProps extends SecurityWidgetBaseProps {
  /**
   * Optional refresh trigger to reload data
   */
  refreshTrigger?: number;
}
 
/**
 * Security level widget props for selecting and displaying security levels
 *
 * ## Business Perspective
 *
 * These widgets provide interactive controls for security professionals to
 * adjust security levels and immediately see the impact of their choices. 🔄
 *
 * @category Security Level Widgets
 */
export interface SecurityLevelWidgetProps extends CIABaseWidgetProps {
  /**
   * Callback for when security levels change
   */
  onLevelChange?: (
    component: "availability" | "integrity" | "confidentiality",
    level: SecurityLevel
  ) => void;
 
  /**
   * Whether the widget is disabled
   */
  disabled?: boolean;
}
 
/**
 * Detail interface for availability component information
 *
 * @category Component Details
 */
export interface AvailabilityDetail extends CIADetails {
  uptime: string;
  rto: string;
  rpo: string;
  mttr: string;
}
 
/**
 * Detail interface for integrity component information
 *
 * @category Component Details
 */
export interface IntegrityDetail extends CIADetails {
  validationMethod: string;
}
 
/**
 * Detail interface for confidentiality component information
 *
 * @category Component Details
 */
export interface ConfidentialityDetail extends CIADetails {
  protectionMethod: string;
}
 
/**
 * Props for business impact analysis widgets
 *
 * ## Business Perspective
 *
 * These widgets translate security settings into clear business impacts,
 * helping executives understand how security affects operations, finances,
 * and reputation. 💼
 *
 * @category Business Widgets
 */
export interface BusinessImpactAnalysisWidgetProps extends CIABaseWidgetProps {
  /**
   * Business impact details
   */
  businessImpact?: BusinessImpactDetails;
}
 
/**
 * Props for ComplianceStatusWidget component
 *
 * ## Business Perspective
 *
 * This widget helps compliance officers understand how current security
 * settings align with major regulatory frameworks, providing actionable
 * insights into compliance gaps and requirements. 📋
 *
 * @category Compliance Widgets
 */
export interface ComplianceStatusWidgetProps extends WidgetBaseProps {
  /**
   * Availability security level (optional when securityLevel is provided)
   */
  availabilityLevel?: SecurityLevel;
 
  /**
   * Integrity security level (optional when securityLevel is provided)
   */
  integrityLevel?: SecurityLevel;
 
  /**
   * Confidentiality security level (optional when securityLevel is provided)
   */
  confidentialityLevel?: SecurityLevel;
 
  /**
   * Optional overall security level, used as fallback when individual levels aren't provided
   */
  securityLevel?: SecurityLevel;
 
  /**
   * Optional refresh trigger to reload data
   */
  refreshTrigger?: number;
}
 
/**
 * Props for value creation widgets
 *
 * ## Business Perspective
 *
 * These widgets help executives understand the business value and ROI of
 * security investments, supporting budget justification and strategic
 * planning discussions. 💰
 *
 * @category Business Widgets
 */
export interface ValueCreationWidgetProps extends CIABaseWidgetProps {
  /**
   * Overall security level
   */
  securityLevel?: SecurityLevel;
 
  /**
   * Return on investment estimate
   */
  roi?: ROIEstimate;
}
 
/**
 * Props for cost estimation widgets
 *
 * ## Business Perspective
 *
 * Cost estimation widgets help organizations understand the financial
 * implications of security choices, supporting budget planning and
 * investment prioritization. 💰
 *
 * @category Business Widgets
 */
export interface CostEstimationWidgetProps extends CIABaseWidgetProps {
  // No additional props needed beyond CIABaseWidgetProps
}
 
/**
 * Props for technical details widgets
 *
 * ## Business Perspective
 *
 * These widgets provide technical teams with implementation details and
 * guidance for meeting security requirements, translating policy into
 * actionable technical controls. 🔧
 *
 * @category Implementation Widgets
 */
export interface TechnicalDetailsWidgetProps extends CIABaseWidgetProps {
  /**
   * Implementation details for technical guidance
   */
  implementationDetails?: TechnicalImplementationDetails;
}
 
/**
 * Props for the CIA Impact Summary Widget
 *
 * ## Business Perspective
 *
 * This widget provides a consolidated view of security impacts across the
 * CIA triad, helping security officers understand the overall security
 * posture at a glance. 📊
 *
 * @category Assessment Widgets
 */
export interface CIAImpactSummaryWidgetProps extends SecurityLevelWidgetProps {
  /**
   * Whether to show detailed information
   */
  showDetails?: boolean;
}
 
/**
 * Props for security visualization widgets
 *
 * ## Business Perspective
 *
 * Visualization widgets help stakeholders understand complex security
 * concepts through intuitive charts and graphs, making security posture
 * more accessible to non-technical audiences. 📈
 *
 * @category Visualization Widgets
 */
export interface SecurityVisualizationWidgetProps extends CIABaseWidgetProps {
  /**
   * Type of chart to display
   */
  chartType?: "radar" | "bar" | "gauge";
}
 
/**
 * Props for security resources widgets
 *
 * ## Business Perspective
 *
 * These widgets provide resources and guidance for implementing security
 * controls, supporting security practitioners with practical implementation
 * advice and best practices. 📚
 *
 * @category Implementation Widgets
 */
export interface SecurityResourcesWidgetProps extends CIABaseWidgetProps {
  /**
   * Optional filter for resources
   */
  filter?: string;
 
  /**
   * Maximum number of items to display
   */
  maxItems?: number;
}
 
/**
 * Props for security component widgets
 *
 * ## Business Perspective
 *
 * These widgets represent individual CIA components, allowing detailed
 * analysis and adjustment of specific security aspects (availability,
 * integrity, or confidentiality). 🔍
 *
 * @category Component Widgets
 */
export interface SecurityComponentProps extends WidgetBaseProps {
  /**
   * The CIA component this widget represents
   */
  component: "availability" | "integrity" | "confidentiality";
 
  /**
   * Security level for this component
   */
  level: SecurityLevel;
}
 
/**
 * Props for security level selector components
 *
 * ## Business Perspective
 *
 * These interactive controls allow users to adjust security levels,
 * providing immediate feedback on the impact of their choices. 🎚️
 *
 * @category Control Widgets
 */
export interface SecurityLevelSelectorProps extends WidgetBaseProps {
  /**
   * Currently selected security level
   */
  selectedLevel: SecurityLevel;
 
  /**
   * Callback when level changes
   */
  onLevelChange: (level: SecurityLevel) => void;
 
  /**
   * The CIA component this selector controls
   */
  component: "availability" | "integrity" | "confidentiality";
 
  /**
   * Layout orientation
   */
  mode?: "horizontal" | "vertical";
 
  /**
   * Whether to highlight the selector
   */
  highlight?: boolean;
 
  /**
   * Whether to use compact layout
   */
  compact?: boolean;
 
  /**
   * Whether the selector is disabled
   */
  disabled?: boolean;
}
 
/**
 * Props for component impact widgets
 *
 * ## Business Perspective
 *
 * These widgets help analyze the impact of security levels on specific
 * CIA components, allowing focused assessment of individual security aspects. 🔍
 *
 * @category Component Widgets
 */
export interface ComponentImpactWidgetProps extends WidgetBaseProps {
  /**
   * Security level for this component
   */
  level: SecurityLevel;
 
  /**
   * The CIA component type to display
   */
  componentType: "availability" | "integrity" | "confidentiality";
}
 
/**
 * Base interface for component-specific impact widgets
 *
 * ## Business Perspective
 *
 * This provides a foundation for specialized CIA component widgets that
 * help organizations understand the business impact of specific security
 * aspects (availability, integrity, confidentiality). 🔍
 *
 * @category Component Widgets
 */
export interface ComponentImpactBaseProps extends CIABaseWidgetProps {
  /**
   * Security level (for backward compatibility)
   */
  level?: SecurityLevel;
 
  /**
   * Callback when level changes
   */
  onLevelChange?: (level: SecurityLevel) => void;
}
 
/**
 * Props for the Availability Impact Widget
 *
 * ## Business Perspective
 *
 * This widget helps stakeholders understand how availability settings
 * affect uptime, recovery capabilities, and business continuity. ⏱️
 *
 * @category Impact Widgets
 */
export interface AvailabilityImpactWidgetProps
  extends ComponentImpactBaseProps {
  // All required props are inherited from ComponentImpactBaseProps
}
 
/**
 * Props for the Integrity Impact Widget
 *
 * ## Business Perspective
 *
 * This widget helps stakeholders understand how integrity settings
 * affect data accuracy, validation processes, and information trustworthiness. 🔐
 *
 * @category Impact Widgets
 */
export interface IntegrityImpactWidgetProps extends ComponentImpactBaseProps {
  // All required props are inherited from ComponentImpactBaseProps
}
 
/**
 * Props for the Confidentiality Impact Widget
 *
 * ## Business Perspective
 *
 * This widget helps stakeholders understand how confidentiality settings
 * affect data protection, access controls, and privacy safeguards. 🔒
 *
 * @category Impact Widgets
 */
export interface ConfidentialityImpactWidgetProps
  extends ComponentImpactBaseProps {
  // All required props are inherited from ComponentImpactBaseProps
}