mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-28 17:55:15 +02:00
* refactor: update mui packages * refactor: run mui codemods * refactor: format files after codemods * refactor: fix broken types * refactor: clean up theme * refactor: fix broken tests * refactor: replace @mui/styles with tss-react * refactor: move breakpoints into classes for tss * refactor: fix crash on missing feature description * refactor: remove void classNames * refactor: adjust styles to new defaults * refactor: remove broken rollout slider e2e test * refactor: fix duplicate e2e testid * refactor: update makeStyles after rebase * refactor: add missing snapshot after rebase * refactor: fix TableCellSortable focus styles * refactor: use 1.4 as the default line-height * refactor: hide webkit search field icons * refactor: fix select box label * refactor: make AutocompleteBox smaller * refactor: make heading smaller * refactor: fix toast close icon color * refactor: update snapshots * refactor: add missing test event awaits * refactor: fix default button line-height
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { useStyles } from 'component/common/AutocompleteBox/AutocompleteBox.styles';
|
|
import { Search, ArrowDropDown } from '@mui/icons-material';
|
|
import { Autocomplete } from '@mui/material';
|
|
import { AutocompleteRenderInputParams } from '@mui/material/Autocomplete';
|
|
import { TextField } from '@mui/material';
|
|
import classNames from 'classnames';
|
|
|
|
interface IAutocompleteBoxProps {
|
|
label: string;
|
|
options: IAutocompleteBoxOption[];
|
|
value?: IAutocompleteBoxOption[];
|
|
onChange: (value: IAutocompleteBoxOption[]) => void;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export interface IAutocompleteBoxOption {
|
|
value: string;
|
|
label: string;
|
|
}
|
|
|
|
export const AutocompleteBox = ({
|
|
label,
|
|
options,
|
|
value = [],
|
|
onChange,
|
|
disabled,
|
|
}: IAutocompleteBoxProps) => {
|
|
const { classes: styles } = useStyles();
|
|
|
|
const renderInput = (params: AutocompleteRenderInputParams) => {
|
|
return <TextField {...params} variant="outlined" label={label} />;
|
|
};
|
|
|
|
return (
|
|
<div className={styles.container}>
|
|
<div
|
|
className={classNames(
|
|
styles.icon,
|
|
disabled && styles.iconDisabled
|
|
)}
|
|
aria-hidden
|
|
>
|
|
<Search />
|
|
</div>
|
|
<Autocomplete
|
|
className={styles.autocomplete}
|
|
classes={{ inputRoot: styles.inputRoot }}
|
|
options={options}
|
|
value={value}
|
|
popupIcon={<ArrowDropDown titleAccess="Toggle" />}
|
|
onChange={(event, value) => onChange(value || [])}
|
|
renderInput={renderInput}
|
|
getOptionLabel={value => value.label}
|
|
disabled={disabled}
|
|
size="small"
|
|
multiple
|
|
/>
|
|
</div>
|
|
);
|
|
};
|