All files / src/components/widgets/assessmentcenter SecuritySummaryWidget.tsx

98.76% Statements 160/162
75% Branches 9/12
100% Functions 2/2
98.76% Lines 160/162

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 2531x 1x 1x 1x   1x       1x 1x 1x                                                                                                       1x 30x 30x 30x 30x 30x 30x   30x 30x 30x 30x 30x     30x 30x 30x 30x 30x 30x 30x 30x 30x     30x 90x 90x 90x 90x 90x 90x       86x 90x   30x 30x 30x 30x 30x 30x   30x 30x 30x 30x 30x 30x   30x 30x   30x 30x 30x 30x 30x 30x   30x 30x 30x 30x   30x 30x   30x 30x 30x   30x 30x 30x 30x 30x 30x   30x 30x 30x 30x   30x 30x 30x 30x 30x   30x 30x 30x 30x 30x 30x 30x   30x 30x 30x 30x 30x     30x 30x 30x   30x 30x 30x 30x 30x 30x   30x 30x 30x 30x   30x 30x 30x 30x 30x   30x 30x 30x 30x 30x 30x 30x   30x 30x 30x 30x 30x     30x 30x 30x   30x 30x 30x 30x 30x 30x   30x 30x 30x 30x   30x 30x 30x 30x 30x   30x 30x 30x   30x 30x 30x 30x 30x   30x 30x 30x 30x 30x 30x 30x 30x   30x   1x  
import React, { useMemo } from "react";
import { WIDGET_ICONS, WIDGET_TITLES } from "../../../constants/appConstants";
import { SECURITY_SUMMARY_TEST_IDS } from "../../../constants/testIds";
import { useCIAOptions } from "../../../hooks/useCIAOptions";
import { SecurityLevel } from "../../../types/cia";
import {
  calculateOverallSecurityLevel,
  getRiskLevelFromSecurityLevel,
} from "../../../utils/securityLevelUtils";
import SecurityLevelIndicator from "../../common/SecurityLevelIndicator";
import StatusBadge from "../../common/StatusBadge";
import WidgetContainer from "../../common/WidgetContainer";
 
// Import the StatusType from our types
import { StatusType } from "../../../types/common/StatusTypes";
 
/**
 * SecuritySummaryWidget props
 */
export interface SecuritySummaryWidgetProps {
  /**
   * Selected availability level
   */
  availabilityLevel: SecurityLevel;
 
  /**
   * Selected integrity level
   */
  integrityLevel: SecurityLevel;
 
  /**
   * Selected confidentiality level
   */
  confidentialityLevel: SecurityLevel;
 
  /**
   * Optional overall security level
   */
  securityLevel?: SecurityLevel;
 
  /**
   * Optional CSS class name
   */
  className?: string;
 
  /**
   * Optional test ID
   */
  testId?: string;
}
 
/**
 * Displays a summary of all security levels and overall security posture
 *
 * ## Business Perspective
 *
 * This widget provides an at-a-glance view of the organization's security posture
 * across the CIA triad, helping security officers and executives quickly understand
 * their current security stance and identify areas that need attention. 📊
 *
 * The calculated compliance and risk metrics help align technical security controls
 * with business and regulatory requirements. 💼
 */
const SecuritySummaryWidget: React.FC<SecuritySummaryWidgetProps> = ({
  availabilityLevel,
  integrityLevel,
  confidentialityLevel,
  className = "",
  testId = SECURITY_SUMMARY_TEST_IDS.WIDGET,
}) => {
  // Mark the entire destructured object with the same underscore-prefixed name to indicate it's unused
  const {
    availabilityOptions: _availabilityOptions,
    integrityOptions: _integrityOptions,
    confidentialityOptions: _confidentialityOptions,
  } = useCIAOptions();
 
  // Calculate overall security level
  const overallSecurityLevel = useMemo(
    () =>
      calculateOverallSecurityLevel(
        availabilityLevel,
        integrityLevel,
        confidentialityLevel
      ),
    [availabilityLevel, integrityLevel, confidentialityLevel]
  );
 
  // Fix the return type to match our StatusType
  const getStatusVariant = (level: string): StatusType => {
    const normalizedLevel = level.toLowerCase();
    if (normalizedLevel === "none") return "error";
    if (normalizedLevel === "low") return "warning";
    if (normalizedLevel === "moderate") return "info";
    if (normalizedLevel === "high") return "success";
    if (normalizedLevel === "very high") {
      // Now this is a valid StatusType
      return "purple";
    }
    return "neutral";
  };
 
  return (
    <WidgetContainer
      title={WIDGET_TITLES.SECURITY_SUMMARY}
      icon={WIDGET_ICONS.SECURITY_SUMMARY}
      className={className}
      testId={testId}
    >
      <div className="p-4">
        <div className="mb-4">
          <h3 className="text-lg font-medium mb-2">Overall Security Level</h3>
          <div
            className="p-3 bg-gray-50 dark:bg-gray-800 rounded-lg"
            data-testid={SECURITY_SUMMARY_TEST_IDS.OVERALL_LEVEL}
          >
            <div className="flex items-center justify-between">
              <span className="text-gray-600 dark:text-gray-400">
                Overall Security:
              </span>
              <SecurityLevelIndicator level={overallSecurityLevel} size="lg" />
            </div>
            <p
              className="mt-2 text-sm text-gray-600 dark:text-gray-400"
              data-testid={SECURITY_SUMMARY_TEST_IDS.SUMMARY_DESCRIPTION}
            >
              {`This security profile provides ${overallSecurityLevel.toLowerCase()} level protection based on your selected components.`}
            </p>
          </div>
        </div>
 
        <h3 className="text-lg font-medium mb-2">Component Security Levels</h3>
        <div className="grid grid-cols-1 md:grid-cols-3 gap-4">
          {/* Availability Card */}
          <div
            className="p-3 bg-blue-50 dark:bg-blue-900 dark:bg-opacity-20 rounded-lg"
            data-testid={SECURITY_SUMMARY_TEST_IDS.AVAILABILITY_CARD}
          >
            <div className="flex items-center mb-2">
              <span className="text-xl mr-2">⏱️</span>
              <h4 className="font-medium">Availability</h4>
            </div>
            <div className="flex items-center justify-between mb-2">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Level:
              </span>
              <span
                className="font-medium"
                data-testid={SECURITY_SUMMARY_TEST_IDS.AVAILABILITY_LEVEL}
              >
                <SecurityLevelIndicator level={availabilityLevel} />
              </span>
            </div>
            <div className="flex items-center justify-between">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Risk:
              </span>
              <span data-testid={SECURITY_SUMMARY_TEST_IDS.AVAILABILITY_RISK}>
                <StatusBadge
                  status={getStatusVariant(
                    getRiskLevelFromSecurityLevel(availabilityLevel)
                  )}
                  size="sm"
                >
                  {getRiskLevelFromSecurityLevel(availabilityLevel)}
                </StatusBadge>
              </span>
            </div>
          </div>
 
          {/* Integrity Card */}
          <div
            className="p-3 bg-green-50 dark:bg-green-900 dark:bg-opacity-20 rounded-lg"
            data-testid={SECURITY_SUMMARY_TEST_IDS.INTEGRITY_CARD}
          >
            <div className="flex items-center mb-2">
              <span className="text-xl mr-2">✓</span>
              <h4 className="font-medium">Integrity</h4>
            </div>
            <div className="flex items-center justify-between mb-2">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Level:
              </span>
              <span
                className="font-medium"
                data-testid={SECURITY_SUMMARY_TEST_IDS.INTEGRITY_LEVEL}
              >
                <SecurityLevelIndicator level={integrityLevel} />
              </span>
            </div>
            <div className="flex items-center justify-between">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Risk:
              </span>
              <span data-testid={SECURITY_SUMMARY_TEST_IDS.INTEGRITY_RISK}>
                <StatusBadge
                  status={getStatusVariant(
                    getRiskLevelFromSecurityLevel(integrityLevel)
                  )}
                  size="sm"
                >
                  {getRiskLevelFromSecurityLevel(integrityLevel)}
                </StatusBadge>
              </span>
            </div>
          </div>
 
          {/* Confidentiality Card */}
          <div
            className="p-3 bg-purple-50 dark:bg-purple-900 dark:bg-opacity-20 rounded-lg"
            data-testid={SECURITY_SUMMARY_TEST_IDS.CONFIDENTIALITY_CARD}
          >
            <div className="flex items-center mb-2">
              <span className="text-xl mr-2">🔒</span>
              <h4 className="font-medium">Confidentiality</h4>
            </div>
            <div className="flex items-center justify-between mb-2">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Level:
              </span>
              <span
                className="font-medium"
                data-testid={SECURITY_SUMMARY_TEST_IDS.CONFIDENTIALITY_LEVEL}
              >
                <SecurityLevelIndicator level={confidentialityLevel} />
              </span>
            </div>
            <div className="flex items-center justify-between">
              <span className="text-sm text-gray-600 dark:text-gray-400">
                Risk:
              </span>
              <span
                data-testid={SECURITY_SUMMARY_TEST_IDS.CONFIDENTIALITY_RISK}
              >
                <StatusBadge
                  status={getStatusVariant(
                    getRiskLevelFromSecurityLevel(confidentialityLevel)
                  )}
                  size="sm"
                >
                  {getRiskLevelFromSecurityLevel(confidentialityLevel)}
                </StatusBadge>
              </span>
            </div>
          </div>
        </div>
      </div>
    </WidgetContainer>
  );
};
 
export default SecuritySummaryWidget;