16086: Enhances readability by using plural on Array var's name.
[arvados-workbench2.git] / src / components / chips-input / chips-input.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import { Chips } from '~/components/chips/chips';
7 import { Input as MuiInput, withStyles, WithStyles } from '@material-ui/core';
8 import { StyleRulesCallback } from '@material-ui/core/styles';
9 import { InputProps } from '@material-ui/core/Input';
10
11 interface ChipsInputProps<Value> {
12     values: Value[];
13     getLabel?: (value: Value) => string;
14     onChange: (value: Value[]) => void;
15     createNewValue: (value: string) => Value;
16     inputComponent?: React.ComponentType<InputProps>;
17     inputProps?: InputProps;
18     deletable?: boolean;
19     orderable?: boolean;
20     disabled?: boolean;
21 }
22
23 type CssRules = 'chips' | 'input' | 'inputContainer';
24
25 const styles: StyleRulesCallback = ({ spacing }) => ({
26     chips: {
27         minHeight: spacing.unit * 5,
28         zIndex: 1,
29         position: 'relative',
30     },
31     input: {
32         zIndex: 1,
33         marginBottom: 8,
34         position: 'relative',
35     },
36     inputContainer: {
37         marginTop: -34
38     },
39 });
40
41 export const ChipsInput = withStyles(styles)(
42     class ChipsInput<Value> extends React.Component<ChipsInputProps<Value> & WithStyles<CssRules>> {
43
44         state = {
45             text: '',
46         };
47
48         filler = React.createRef<HTMLDivElement>();
49         timeout = -1;
50
51         setText = (event: React.ChangeEvent<HTMLInputElement>) => {
52             this.setState({ text: event.target.value });
53         }
54
55         handleKeyPress = ({ key }: React.KeyboardEvent<HTMLInputElement>) => {
56             if (key === 'Enter') {
57                 this.createNewValue();
58             } else if (key === 'Backspace') {
59                 this.deleteLastValue();
60             }
61         }
62
63         createNewValue = () => {
64             if (this.state.text) {
65                 const newValue = this.props.createNewValue(this.state.text);
66                 this.setState({ text: '' });
67                 this.props.onChange([...this.props.values, newValue]);
68             }
69         }
70
71         deleteLastValue = () => {
72             if (this.state.text.length === 0 && this.props.values.length > 0) {
73                 this.props.onChange(this.props.values.slice(0, -1));
74             }
75         }
76
77         updateCursorPosition = () => {
78             if (this.timeout) {
79                 clearTimeout(this.timeout);
80             }
81             this.timeout = setTimeout(() => this.setState({ ...this.state }));
82         }
83
84         getInputStyles = (): React.CSSProperties => ({
85             width: this.filler.current
86                 ? this.filler.current.offsetWidth
87                 : '100%',
88             right: this.filler.current
89                 ? `calc(${this.filler.current.offsetWidth}px - 100%)`
90                 : 0,
91
92         })
93
94         componentDidMount() {
95             this.updateCursorPosition();
96         }
97
98         render() {
99             return <>
100                 {this.renderChips()}
101                 {this.renderInput()}
102             </>;
103         }
104
105         renderChips() {
106             const { classes, ...props } = this.props;
107             return <div className={classes.chips}>
108                 <Chips
109                     {...props}
110                     clickable={!props.disabled}
111                     filler={<div ref={this.filler} />}
112                 />
113             </div>;
114         }
115
116         renderInput() {
117             const { inputProps: InputProps, inputComponent: Input = MuiInput, classes } = this.props;
118             return <Input
119                 {...InputProps}
120                 value={this.state.text}
121                 onChange={this.setText}
122                 disabled={this.props.disabled}
123                 onKeyDown={this.handleKeyPress}
124                 inputProps={{
125                     ...(InputProps && InputProps.inputProps),
126                     className: classes.input,
127                     style: this.getInputStyles(),
128                 }}
129                 fullWidth
130                 className={classes.inputContainer} />;
131         }
132
133         componentDidUpdate(prevProps: ChipsInputProps<Value>) {
134             if (prevProps.values !== this.props.values) {
135                 this.updateCursorPosition();
136             }
137         }
138         componentWillUnmount() {
139             clearTimeout(this.timeout);
140         }
141     });