X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/be58082b621a95f96bcb0c61495e8186f10e5528..40d96a9dafd0db3497a997a48ee223509de05de0:/src/components/chips-input/chips-input.tsx diff --git a/src/components/chips-input/chips-input.tsx b/src/components/chips-input/chips-input.tsx index fc5fda01..790d49eb 100644 --- a/src/components/chips-input/chips-input.tsx +++ b/src/components/chips-input/chips-input.tsx @@ -9,7 +9,7 @@ import { StyleRulesCallback } from '@material-ui/core/styles'; import { InputProps } from '@material-ui/core/Input'; interface ChipsInputProps { - value: Value[]; + values: Value[]; getLabel?: (value: Value) => string; onChange: (value: Value[]) => void; createNewValue: (value: string) => Value; @@ -17,6 +17,7 @@ interface ChipsInputProps { inputProps?: InputProps; deletable?: boolean; orderable?: boolean; + disabled?: boolean; } type CssRules = 'chips' | 'input' | 'inputContainer'; @@ -63,13 +64,13 @@ export const ChipsInput = withStyles(styles)( if (this.state.text) { const newValue = this.props.createNewValue(this.state.text); this.setState({ text: '' }); - this.props.onChange([...this.props.value, newValue]); + this.props.onChange([...this.props.values, newValue]); } } deleteLastValue = () => { - if (this.state.text.length === 0 && this.props.value.length > 0) { - this.props.onChange(this.props.value.slice(0, -1)); + if (this.state.text.length === 0 && this.props.values.length > 0) { + this.props.onChange(this.props.values.slice(0, -1)); } } @@ -102,11 +103,11 @@ export const ChipsInput = withStyles(styles)( } renderChips() { - const { classes, value, ...props } = this.props; + const { classes, ...props } = this.props; return
} />
; @@ -118,6 +119,7 @@ export const ChipsInput = withStyles(styles)( {...InputProps} value={this.state.text} onChange={this.setText} + disabled={this.props.disabled} onKeyDown={this.handleKeyPress} inputProps={{ ...(InputProps && InputProps.inputProps), @@ -129,7 +131,7 @@ export const ChipsInput = withStyles(styles)( } componentDidUpdate(prevProps: ChipsInputProps) { - if (prevProps.value !== this.props.value) { + if (prevProps.values !== this.props.values) { this.updateCursorPosition(); } }