import FilledInput from "@material-ui/core/FilledInput"; import FormControl from "@material-ui/core/FormControl"; import FormHelperText from "@material-ui/core/FormHelperText"; import InputLabel from "@material-ui/core/InputLabel"; import MenuItem from "@material-ui/core/MenuItem"; import Select, { SelectProps } from "@material-ui/core/Select"; import { createStyles, Theme, withStyles, WithStyles } from "@material-ui/core/styles"; import React from "react"; import i18n from "../../i18n"; import Checkbox from "../Checkbox"; const styles = (theme: Theme) => createStyles({ checkbox: { marginRight: -theme.spacing.unit * 2 }, formControl: { width: "100%" }, menuItem: { alignItems: "center", display: "flex", justifyContent: "space-between", width: "100%" } }); interface MultiSelectFieldProps extends WithStyles { choices: Array<{ value: string; label: string; }>; disabled?: boolean; error?: boolean; hint?: string; label?: string; name?: string; selectProps?: SelectProps; value?: string[]; onChange(event: any); } export const MultiSelectField = withStyles(styles, { name: "MultiSelectField" })( ({ classes, disabled, error, label, choices, value, onChange, name, hint, selectProps }: MultiSelectFieldProps) => { const choicesByKey = disabled ? {} : choices.reduce((prev, curr) => { prev[curr.value] = curr.label; return prev; }, {}); return ( {label && {label}} {hint && {hint}} ); } ); MultiSelectField.defaultProps = { value: [] }; MultiSelectField.displayName = "MultiSelectField"; export default MultiSelectField;