Spaces:
Build error
Build error
File size: 1,154 Bytes
eec7490 80f9a97 eec7490 80f9a97 eec7490 80f9a97 eec7490 80f9a97 eec7490 80f9a97 eec7490 80f9a97 eec7490 | 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 | import type { FC } from 'react'
import { RetroCheckbox } from './retro'
const LAYER_LABELS: Record<string, string> = {
image: 'Image',
ocr_diplomatic: 'Transcription',
ocr_normalized: 'Normalise',
translation_fr: 'Traduction FR',
translation_en: 'Traduction EN',
summary: 'Resume',
scholarly_commentary: 'Comm. savant',
public_commentary: 'Comm. public',
iconography_detection: 'Iconographie',
material_notes: 'Notes mat.',
uncertainty: 'Incertitudes',
}
interface Props {
activeLayers: string[]
visibleLayers: Set<string>
onToggle: (layer: string) => void
}
const LayerPanel: FC<Props> = ({ activeLayers, visibleLayers, onToggle }) => (
<div className="px-2 py-2 shrink-0 border-b border-retro-black bg-retro-gray">
<div className="text-retro-xs font-bold mb-1">Couches</div>
<div className="flex flex-wrap gap-x-3 gap-y-1">
{activeLayers.map((layer) => (
<RetroCheckbox
key={layer}
label={LAYER_LABELS[layer] ?? layer}
checked={visibleLayers.has(layer)}
onChange={() => onToggle(layer)}
/>
))}
</div>
</div>
)
export default LayerPanel
|