import React, { useCallback } from 'react'; import { SelectActionType, useSelect } from 'App/SelectContext'; import IconButton from 'Components/Link/IconButton'; import { icons } from 'Helpers/Props'; import styles from './SeriesIndexPosterSelect.css'; interface SeriesIndexPosterSelectProps { seriesId: number; } function SeriesIndexPosterSelect(props: SeriesIndexPosterSelectProps) { const { seriesId } = props; const [selectState, selectDispatch] = useSelect(); const isSelected = selectState.selectedState[seriesId]; const onSelectPress = useCallback( (event) => { const shiftKey = event.nativeEvent.shiftKey; selectDispatch({ type: SelectActionType.ToggleSelected, id: seriesId, isSelected: !isSelected, shiftKey, }); }, [seriesId, isSelected, selectDispatch] ); return ( ); } export default SeriesIndexPosterSelect;