mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
import { useMemo } from 'react';
|
|
import Select, { GroupBase, Props, StylesConfig } from 'react-select';
|
|
|
|
import { useConceptTheme } from '../../context/ThemeContext';
|
|
import { selectDarkT, selectLightT } from '../../utils/color';
|
|
|
|
interface SelectMultiProps<
|
|
Option,
|
|
Group extends GroupBase<Option> = GroupBase<Option>
|
|
>
|
|
extends Omit<Props<Option, true, Group>, 'theme' | 'menuPortalTarget'> {
|
|
noPortal?: boolean
|
|
}
|
|
|
|
function SelectMulti<Option, Group extends GroupBase<Option> = GroupBase<Option>> ({
|
|
noPortal, ...restProps
|
|
}: SelectMultiProps<Option, Group>) {
|
|
const { darkMode, colors } = useConceptTheme();
|
|
const themeColors = useMemo(
|
|
() => !darkMode ? selectLightT : selectDarkT
|
|
, [darkMode]);
|
|
|
|
const adjustedStyles: StylesConfig<Option, true, Group> = useMemo(
|
|
() => ({
|
|
control: (styles, { isDisabled }) => ({
|
|
...styles,
|
|
borderRadius: '0.25rem',
|
|
cursor: isDisabled ? 'not-allowed' : 'pointer',
|
|
boxShadow: 'none'
|
|
}),
|
|
option: (styles, { isSelected }) => ({
|
|
...styles,
|
|
backgroundColor: isSelected ? colors.bgSelected : styles.backgroundColor,
|
|
color: isSelected ? colors.fgSelected : styles.color,
|
|
borderWidth: '1px',
|
|
borderColor: colors.border
|
|
}),
|
|
menuPortal: (styles) => ({
|
|
...styles,
|
|
zIndex: 9999
|
|
}),
|
|
menuList: (styles) => ({
|
|
...styles,
|
|
padding: '0px'
|
|
}),
|
|
input: (styles) => ({...styles}),
|
|
placeholder: (styles) => ({...styles}),
|
|
multiValue: styles => ({
|
|
...styles,
|
|
borderRadius: '0.5rem',
|
|
backgroundColor: colors.bgSelected,
|
|
}),
|
|
|
|
}), [colors]);
|
|
|
|
return (
|
|
<Select isMulti
|
|
noOptionsMessage={() => 'Список пуст'}
|
|
theme={theme => ({
|
|
...theme,
|
|
borderRadius: 0,
|
|
colors: {
|
|
...theme.colors,
|
|
...themeColors
|
|
},
|
|
})}
|
|
menuPortalTarget={!noPortal ? document.body : null}
|
|
styles={adjustedStyles}
|
|
{...restProps}
|
|
/>);
|
|
}
|
|
|
|
export default SelectMulti;
|