99 lines
No EOL
3 KiB
TypeScript
99 lines
No EOL
3 KiB
TypeScript
import React from 'react';
|
|
import Select, { components, DropdownIndicatorProps } from 'react-select';
|
|
import { Icon } from 'UI';
|
|
import colors from 'App/theme/colors';
|
|
|
|
interface Props {
|
|
options: any[];
|
|
isSearchable?: boolean;
|
|
defaultValue?: string;
|
|
plain?: boolean;
|
|
components?: any;
|
|
[x:string]: any;
|
|
}
|
|
export default function({ right = false, plain = false, options, isSearchable = false, components = {}, defaultValue = '', ...rest }: Props) {
|
|
const customStyles = {
|
|
option: (provided: any, state: any) => ({
|
|
...provided,
|
|
whiteSpace: 'nowrap',
|
|
}),
|
|
menu: (provided: any, state: any) => ({
|
|
...provided,
|
|
top: 31,
|
|
borderRadius: '3px',
|
|
right: right ? 0 : undefined,
|
|
minWidth: 'fit-content',
|
|
zIndex: 99,
|
|
}),
|
|
control: (provided: any) => {
|
|
const obj = {
|
|
...provided,
|
|
border: 'solid thin #ddd',
|
|
cursor: 'pointer',
|
|
minHeight: '36px',
|
|
}
|
|
if (plain) {
|
|
obj['backgroundColor'] = 'transparent';
|
|
obj['border'] = '1px solid transparent'
|
|
obj['&:hover'] = {
|
|
borderColor: 'transparent',
|
|
backgroundColor: colors['gray-light']
|
|
}
|
|
obj['&:focus'] = {
|
|
borderColor: 'transparent'
|
|
}
|
|
obj['&:active'] = {
|
|
borderColor: 'transparent'
|
|
}
|
|
}
|
|
return obj;
|
|
},
|
|
indicatorsContainer: (provided: any) => ({
|
|
...provided,
|
|
padding: 0,
|
|
}),
|
|
valueContainer: (provided: any) => ({
|
|
...provided,
|
|
paddingRight: '0px',
|
|
}),
|
|
singleValue: (provided: any, state: { isDisabled: any; }) => {
|
|
const opacity = state.isDisabled ? 0.5 : 1;
|
|
const transition = 'opacity 300ms';
|
|
|
|
return { ...provided, opacity, transition };
|
|
}
|
|
}
|
|
const defaultSelected = defaultValue ? options.find(x => x.value === defaultValue) : null;
|
|
return (
|
|
<Select
|
|
options={options}
|
|
isSearchable={isSearchable}
|
|
defaultValue={defaultSelected}
|
|
components={{
|
|
IndicatorSeparator: () => null,
|
|
DropdownIndicator,
|
|
...components,
|
|
}}
|
|
styles={customStyles}
|
|
theme={(theme) => ({
|
|
...theme,
|
|
colors: {
|
|
...theme.colors,
|
|
primary: '#394EFF',
|
|
}
|
|
})}
|
|
blurInputOnSelect={true}
|
|
{...rest}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const DropdownIndicator = (
|
|
props: DropdownIndicatorProps<true>
|
|
) => {
|
|
return (
|
|
<components.DropdownIndicator {...props}>
|
|
<Icon name="chevron-down" size="16" />
|
|
</components.DropdownIndicator>
|
|
);
|
|
}; |