All files / web/src/app/vision-training/train/components/data-panel ColumnGridItem.tsx

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

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                                                                                                                                                                                                                                                                                                                                                                                 
'use client'

import { css } from '../../../../../../styled-system/css'
import type { ColumnDataItem } from './types'

export interface ColumnGridItemProps {
  /** The column image data */
  item: ColumnDataItem
  /** Whether this item is selected (for multi-select) */
  isSelected: boolean
  /** Whether this item is focused (showing in detail panel) */
  isFocused: boolean
  /** Handler for selection toggle (receives shiftKey for range selection) */
  onSelect: (shiftKey: boolean) => void
  /** Handler for viewing item details (double-click or button) */
  onViewDetails: () => void
  /** Handler for deleting this item */
  onDelete: () => void
}

/**
 * Grid item for column classifier images.
 * Shows the image with digit badge, selection checkbox, and hover actions.
 * Fills parent container (sized by UnifiedDataPanel grid),
 * with objectFit: contain to preserve image proportions.
 */
export function ColumnGridItem({
  item,
  isSelected,
  isFocused,
  onSelect,
  onViewDetails,
  onDelete,
}: ColumnGridItemProps) {
  return (
    <div
      data-item-id={item.id}
      data-selected={isSelected}
      data-focused={isFocused}
      className={css({
        position: 'relative',
        width: '100%',
        height: '100%',
        bg: 'gray.900',
        border: '2px solid',
        borderColor: isFocused ? 'purple.500' : isSelected ? 'blue.500' : 'gray.700',
        borderRadius: 'lg',
        // Note: NO overflow:hidden here - allows dropdown to escape
        cursor: 'pointer',
        transition: 'all 0.15s ease',
        _hover: {
          borderColor: isFocused ? 'purple.400' : isSelected ? 'blue.400' : 'gray.600',
          '& [data-element="hover-actions"]': {
            opacity: 1,
          },
        },
      })}
      onClick={(e) => onSelect(e.shiftKey)}
      onDoubleClick={onViewDetails}
    >
      {/* Image wrapper with overflow hidden for rounded corners */}
      <div
        data-element="image-wrapper"
        className={css({
          position: 'absolute',
          inset: 0,
          borderRadius: 'md',
          overflow: 'hidden',
        })}
      >
        {/* eslint-disable-next-line @next/next/no-img-element */}
        <img
          src={item.imagePath}
          alt={`Digit ${item.digit}`}
          className={css({
            width: '100%',
            height: '100%',
            objectFit: 'contain',
          })}
        />
      </div>

      {/* Selection checkbox indicator */}
      {isSelected && (
        <div
          data-element="selection-indicator"
          className={css({
            position: 'absolute',
            top: 1,
            left: 1,
            width: '20px',
            height: '20px',
            display: 'flex',
            alignItems: 'center',
            justifyContent: 'center',
            bg: 'blue.500',
            color: 'white',
            borderRadius: 'sm',
            fontSize: 'xs',
            fontWeight: 'bold',
          })}
        >

        </div>
      )}

      {/* Digit badge */}
      <div
        className={css({
          position: 'absolute',
          bottom: 1,
          right: 1,
          px: 1.5,
          py: 0.5,
          bg: 'black/70',
          color: 'white',
          fontSize: 'xs',
          fontWeight: 'bold',
          borderRadius: 'sm',
        })}
      >
        {item.digit}
      </div>

      {/* Hover actions */}
      <div
        data-element="hover-actions"
        className={css({
          position: 'absolute',
          bottom: 0,
          left: 0,
          right: 0,
          display: 'flex',
          gap: 1,
          p: 1,
          bg: 'linear-gradient(transparent, rgba(0,0,0,0.8))',
          opacity: 0,
          transition: 'opacity 0.15s ease',
        })}
        onClick={(e) => e.stopPropagation()}
      >
        {/* View details button */}
        <button
          type="button"
          data-action="view-details"
          onClick={onViewDetails}
          className={css({
            flex: 1,
            py: 1,
            fontSize: '2xs',
            color: 'blue.400',
            bg: 'gray.900/80',
            border: 'none',
            borderRadius: 'sm',
            cursor: 'pointer',
            _hover: { bg: 'blue.900/80' },
          })}
        >
          👁
        </button>

        {/* Delete button */}
        <button
          type="button"
          data-action="delete-image"
          onClick={onDelete}
          className={css({
            flex: 1,
            py: 1,
            fontSize: '2xs',
            color: 'red.400',
            bg: 'gray.900/80',
            border: 'none',
            borderRadius: 'sm',
            cursor: 'pointer',
            _hover: { bg: 'red.900/80' },
          })}
        >
          🗑️
        </button>
      </div>
    </div>
  )
}