import React, {useState} from 'react'; type Props = { values: string[]; setValue: (field: string, value: string[]) => Promise; field: string; options: {[key: string]: string}; placeholder?: string; } const EditableSelection: React.FC = ({ setValue, field, values: currentValues, options, placeholder }) => { const [active, setActive] = useState(false); currentValues = currentValues || []; function onClick(ev) { ev.stopPropagation(); setActive(!active); } function addOption(optionKey: string, selected: boolean) { if (selected) { if (currentValues.indexOf(optionKey) < 0) { setValue(field, [...currentValues, optionKey]); } } else { setValue(field, currentValues.filter(value => value !== optionKey)); } } return (<> {currentValues?.join(', ') || placeholder} {active &&
    {Object.keys(options).map(key => { const label = options[key]; return (
  • -1} value="1" onChange={(ev) => addOption(key, ev.target.checked)} />
  • ); })}
} ); }; export default EditableSelection;