All files / components/screens/controls/components ControlBindingsOverlayHtml.tsx

100% Statements 22/22
89.65% Branches 26/29
100% Functions 8/8
100% Lines 19/19

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                                                                                        2x       91x   91x 83x     91x                           1588x                       1588x                     91x             91x             91x     1588x         3x 3x 3x 3x     3x 3x 3x 3x                                                                                                                  
/**
 * ControlBindingsOverlayHtml - Display control bindings filtered by selected category
 * 
 * Shows key bindings in a clean, organized list with Korean-English bilingual labels.
 * Uses responsive grid/list layout based on device type.
 * 
 * @module components/screens/controls/components
 */
 
import React, { useMemo } from "react";
import { FONT_FAMILY } from "../../../../types/constants";
import { hexToRgbaString } from "../../../../utils/colorUtils";
import { useKoreanTheme } from "../../../shared/base/useKoreanTheme";
import {
  filterKeysByCategory,
  getKeyCategoryColor,
  KEYBOARD_LAYOUT,
  type KeyData,
} from "../constants/ControlsConstants";
 
/**
 * Props for ControlBindingsOverlayHtml component
 */
export interface ControlBindingsOverlayHtmlProps {
  /** Selected control category to filter and display */
  readonly selectedTab: 'combat' | 'movement' | 'system';
  /** Whether on mobile device (list layout vs grid) */
  readonly isMobile: boolean;
}
 
/**
 * ControlBindingsOverlayHtml Component
 * 
 * Displays control bindings filtered by selected category.
 * Uses grid layout on desktop and list layout on mobile.
 * 
 * @example
 * ```tsx
 * <ControlBindingsOverlayHtml
 *   selectedTab="combat"
 *   isMobile={false}
 * />
 * ```
 */
export const ControlBindingsOverlayHtml: React.FC<ControlBindingsOverlayHtmlProps> = ({
  selectedTab,
  isMobile,
}) => {
  const theme = useKoreanTheme({ variant: 'primary', size: 'md', isMobile });
 
  const filteredKeys = useMemo<readonly KeyData[]>(() => {
    return filterKeysByCategory(KEYBOARD_LAYOUT, selectedTab);
  }, [selectedTab]);
 
  const containerStyle = useMemo(() => ({
    display: 'grid',
    gridTemplateColumns: isMobile ? '1fr' : 'repeat(auto-fill, minmax(280px, 1fr))',
    gap: isMobile ? '12px' : '16px',
    padding: isMobile ? '15px' : '20px',
    maxHeight: isMobile ? '60vh' : '70vh',
    overflowY: 'auto' as const,
    overflowX: 'hidden' as const,
    background: hexToRgbaString(theme.colors.UI_BACKGROUND_DARK, 0.9),
    borderRadius: '12px',
    border: `2px solid ${hexToRgbaString(theme.colors.UI_BORDER, 0.6)}`,
    boxShadow: `0 4px 15px ${hexToRgbaString(theme.colors.BLACK_SOLID, 0.5)}`,
  }), [isMobile, theme]);
 
  const getBindingCardStyle = (keyData: KeyData) => ({
    display: 'flex',
    flexDirection: 'column' as const,
    gap: '8px',
    padding: isMobile ? '12px' : '14px',
    background: hexToRgbaString(theme.colors.UI_BACKGROUND_MEDIUM, 0.8),
    border: `2px solid ${hexToRgbaString(getKeyCategoryColor(keyData.category), 0.6)}`,
    borderRadius: '8px',
    transition: 'all 0.2s ease',
    cursor: 'default',
  });
 
  const keyLabelStyle = (keyData: KeyData) => ({
    fontFamily: FONT_FAMILY.KOREAN,
    fontSize: isMobile ? '16px' : '18px',
    fontWeight: 'bold' as const,
    color: hexToRgbaString(getKeyCategoryColor(keyData.category)),
    textShadow: `0 0 10px ${hexToRgbaString(getKeyCategoryColor(keyData.category), 0.5)}`,
    display: 'flex',
    alignItems: 'center',
    gap: '8px',
  });
 
  const koreanLabelStyle = {
    fontFamily: FONT_FAMILY.KOREAN,
    fontSize: isMobile ? '13px' : '14px',
    fontWeight: 'bold' as const,
    color: hexToRgbaString(theme.colors.ACCENT_GOLD),
  };
 
  const descriptionStyle = {
    fontFamily: FONT_FAMILY.KOREAN,
    fontSize: isMobile ? '11px' : '12px',
    color: hexToRgbaString(theme.colors.TEXT_SECONDARY),
    lineHeight: 1.4,
  };
 
  return (
    <div style={containerStyle} data-testid="control-bindings">
      {filteredKeys.map((keyData) => (
        <div
          key={keyData.code}
          style={getBindingCardStyle(keyData)}
          data-testid={`binding-${keyData.code}`}
          onMouseEnter={(e) => {
            e.currentTarget.style.background = hexToRgbaString(theme.colors.UI_BACKGROUND_MEDIUM, 1);
            e.currentTarget.style.borderColor = hexToRgbaString(getKeyCategoryColor(keyData.category), 1);
            e.currentTarget.style.transform = 'translateY(-2px)';
            e.currentTarget.style.boxShadow = `0 4px 15px ${hexToRgbaString(getKeyCategoryColor(keyData.category), 0.4)}`;
          }}
          onMouseLeave={(e) => {
            e.currentTarget.style.background = hexToRgbaString(theme.colors.UI_BACKGROUND_MEDIUM, 0.8);
            e.currentTarget.style.borderColor = hexToRgbaString(getKeyCategoryColor(keyData.category), 0.6);
            e.currentTarget.style.transform = 'translateY(0)';
            e.currentTarget.style.boxShadow = 'none';
          }}
        >
          {/* Key label */}
          <div style={keyLabelStyle(keyData)}>
            <span style={{ 
              padding: '4px 8px', 
              background: hexToRgbaString(getKeyCategoryColor(keyData.category), 0.2),
              borderRadius: '4px',
              minWidth: isMobile ? '40px' : '50px',
              textAlign: 'center' as const,
            }}>
              {keyData.label}
            </span>
            {keyData.labelKorean && (
              <span style={koreanLabelStyle}>
                {keyData.labelKorean}
              </span>
            )}
          </div>
 
          {/* Description (Korean | English) */}
          {keyData.description && keyData.descriptionKorean && (
            <div style={descriptionStyle}>
              {keyData.descriptionKorean} | {keyData.description}
            </div>
          )}
 
          {/* Category badge */}
          <div style={{
            fontSize: isMobile ? '9px' : '10px',
            color: hexToRgbaString(theme.colors.TEXT_TERTIARY),
            textTransform: 'uppercase' as const,
            letterSpacing: '0.5px',
          }}>
            {keyData.category}
          </div>
        </div>
      ))}
 
      {filteredKeys.length === 0 && (
        <div style={{
          gridColumn: '1 / -1',
          textAlign: 'center' as const,
          padding: '40px 20px',
          fontFamily: FONT_FAMILY.KOREAN,
          fontSize: isMobile ? '14px' : '16px',
          color: hexToRgbaString(theme.colors.TEXT_SECONDARY),
        }}>
          선택한 카테고리에 컨트롤이 없습니다 | No controls in selected category
        </div>
      )}
    </div>
  );
};
 
export default ControlBindingsOverlayHtml;