All files / components/screens/intro/components AbilityListOverlayHtml.tsx

100% Statements 17/17
100% Branches 19/19
100% Functions 5/5
100% Lines 17/17

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                                                                                                                  5x     120x           120x 120x 236x         232x             4x                     120x 120x                         120x 120x 120x   120x 1x     119x                                                                     236x                                                                                                                           5x      
/**
 * AbilityList - Enhanced ability list component with Korean theming
 * 
 * Refactored to use useKoreanTheme hook for consistent styling
 * Displays a list of special abilities with bilingual support
 * 
 * Performance optimized with React.memo and useMemo
 * 
 * @module components/screens/intro
 * @category Intro UI
 * @korean 능력리스트
 */
 
import React, { useMemo } from "react";
import { useKoreanTheme } from "../../../shared/base/useKoreanTheme";
import { KOREAN_COLORS } from "../../../../types/constants";
import { hexToRgbaString, hexColorToCSS } from "../../../../utils/colorUtils";
 
export interface Ability {
  readonly korean: string;
  readonly english: string;
  readonly description?: {
    readonly korean: string;
    readonly english: string;
  };
}
 
export interface AbilityListProps {
  readonly abilities: readonly string[] | readonly Ability[];
  readonly maxAbilities?: number; // Maximum abilities to show
  readonly color?: number; // Accent color for abilities
  readonly isMobile?: boolean;
}
 
/**
 * AbilityList component - Displays a list of special abilities
 * 
 * Refactored to use useKoreanTheme for consistent Korean theming:
 * - Uses Korean typography configuration
 * - Applies Korean color palette
 * - Responsive sizing based on device type
 * - Memoized for optimal performance
 * 
 * Used in archetype cards to show key techniques and skills
 * 
 * @example
 * ```tsx
 * <AbilityList
 *   abilities={[
 *     { korean: "급소격", english: "Vital Strike" },
 *     { korean: "연격", english: "Chain Attack" }
 *   ]}
 *   color={KOREAN_COLORS.PRIMARY_CYAN}
 *   isMobile={false}
 * />
 * ```
 */
export const AbilityList: React.FC<AbilityListProps> = React.memo(
  ({ abilities, maxAbilities = 3, color = KOREAN_COLORS.ACCENT_GOLD, isMobile = false }) => {
    // Use Korean theme hook for consistent styling
    const { koreanTypography, calculateResponsiveSize, fontFamily } = useKoreanTheme({
      size: "small",
      isMobile,
    });
 
    // Normalize abilities to consistent format
    const normalizedAbilities = useMemo(() => {
      return abilities.slice(0, maxAbilities).map((ability, index) => {
        if (typeof ability === "string") {
          // TEMPORARY: This fallback violates PRIO 2 bilingual support guidelines.
          // All abilities should use the object format with Korean/English fields.
          // See: src/systems/types.ts PLAYER_ARCHETYPES_DATA for correct format.
          // Replace with proper bilingual objects as soon as translations are available.
          return {
            id: `ability-${index}`,
            english: ability,
            korean: ability, // TEMPORARY: English used as Korean fallback
          };
        } else {
          // Object format with Korean/English
          return {
            id: `ability-${index}`,
            english: ability.english,
            korean: ability.korean,
            description: ability.description,
          };
        }
      });
    }, [abilities, maxAbilities]);
 
    // Memoize color calculations with Korean theme
    const colors = useMemo(
      () => ({
        abilityBorder: hexToRgbaString(color, 0.5),
        abilityBackground: hexToRgbaString(
          KOREAN_COLORS.UI_BACKGROUND_MEDIUM,
          0.7
        ),
        abilityText: hexColorToCSS(color),
        descriptionText: hexColorToCSS(KOREAN_COLORS.TEXT_SECONDARY),
      }),
      [color]
    );
 
    // Responsive sizing using Korean theme utilities
    const fontSize = calculateResponsiveSize(isMobile ? 10 : 12);
    const descFontSize = calculateResponsiveSize(isMobile ? 8 : 10);
    const padding = isMobile ? `${calculateResponsiveSize(6)}px ${calculateResponsiveSize(10)}px` : `${calculateResponsiveSize(8)}px ${calculateResponsiveSize(12)}px`;
 
    if (normalizedAbilities.length === 0) {
      return null;
    }
 
    return (
      <div
        style={{
          width: "100%",
          display: "flex",
          flexDirection: "column",
          gap: `${calculateResponsiveSize(8)}px`,
        }}
        data-testid="ability-list"
      >
        {/* Header with Korean typography */}
        <div
          style={{
            fontSize: `${calculateResponsiveSize(isMobile ? 12 : 14)}px`,
            fontWeight: "bold",
            fontFamily: fontFamily.KOREAN,
            color: colors.abilityText,
            // Apply Korean typography optimization
            lineHeight: koreanTypography.lineHeight,
            letterSpacing: koreanTypography.letterSpacing,
          }}
          data-testid="ability-list-header"
        >
          특수 능력 | Special Abilities
        </div>
 
        {/* Ability items */}
        <div
          style={{
            display: "flex",
            flexDirection: "column",
            gap: `${calculateResponsiveSize(6)}px`,
          }}
        >
          {normalizedAbilities.map((ability) => (
            <div
              key={ability.id}
              style={{
                padding,
                background: colors.abilityBackground,
                border: `1px solid ${colors.abilityBorder}`,
                borderRadius: "4px",
                display: "flex",
                flexDirection: "column",
                gap: `${calculateResponsiveSize(4)}px`,
              }}
              data-testid={ability.id}
            >
              {/* Ability name with Korean typography */}
              <div
                style={{
                  fontSize: `${fontSize}px`,
                  fontWeight: "bold",
                  fontFamily: fontFamily.KOREAN,
                  color: colors.abilityText,
                  // Apply Korean typography optimization
                  lineHeight: koreanTypography.lineHeight,
                  letterSpacing: koreanTypography.letterSpacing,
                  wordBreak: koreanTypography.wordBreak,
                }}
                data-testid={`${ability.id}-name`}
              >
                {ability.korean} | {ability.english}
              </div>
 
              {/* Ability description (if available) */}
              {ability.description && (
                <div
                  style={{
                    fontSize: `${descFontSize}px`,
                    fontStyle: "italic",
                    fontFamily: fontFamily.KOREAN,
                    color: colors.descriptionText,
                    // Apply Korean typography optimization
                    lineHeight: koreanTypography.lineHeight,
                    letterSpacing: koreanTypography.letterSpacing,
                    wordBreak: koreanTypography.wordBreak,
                  }}
                  data-testid={`${ability.id}-description`}
                >
                  {ability.description.korean}
                  {ability.description.english && (
                    <>
                      <br />
                      {ability.description.english}
                    </>
                  )}
                </div>
              )}
            </div>
          ))}
        </div>
      </div>
    );
  }
);
 
AbilityList.displayName = "AbilityList";
 
export default AbilityList;