import { assertDataset, assertArrayShape, assertNumericType, assertNumDims, } from '@h5web/shared'; import { useDataContext } from '../../../providers/DataProvider'; import VisBoundary from '../../VisBoundary'; import type { VisContainerProps } from '../../models'; import ValueFetcher from '../ValueFetcher'; import MappedRgbVis from './MappedRgbVis'; import { useRgbConfig } from './config'; function RgbVisContainer(props: VisContainerProps) { const { entity, toolbarContainer } = props; assertDataset(entity); assertArrayShape(entity); assertNumDims(entity, 3); assertNumericType(entity); const { attrValuesStore } = useDataContext(); const subclassAttr = attrValuesStore.getSingle(entity, 'IMAGE_SUBCLASS'); if (subclassAttr && subclassAttr !== 'IMAGE_TRUECOLOR') { throw new Error('RGB Vis only supports IMAGE_TRUECOLOR.'); } const { shape: dims } = entity; const config = useRgbConfig(); return ( ( )} /> ); } export default RgbVisContainer;