-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSelectMultipleSimple.jsx
executable file
·91 lines (83 loc) · 2.15 KB
/
SelectMultipleSimple.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import './_SelectMultipleSimple.scss';
class SelectMultipleSimple extends Component {
static defaultProps = {
onChange: () => {},
};
constructor(props) {
super(props);
this.state = {
value: this.props.multiple ? [] : this.props.value || '',
};
}
updateValue = value => {
this.setState({ value });
this.props.onChange(value);
};
handleChange = event => {
if (this.props.multiple) {
const selectedIndex = this.state.value.findIndex(
val => val === event.target.value
);
const isSelected = selectedIndex !== -1;
if (!isSelected && this.props.selectMultiple) {
this.updateValue([...this.state.value, event.target.value]);
return;
}
if (!isSelected) {
this.updateValue([event.target.value]);
return;
}
if (isSelected) {
this.updateValue([
...this.state.value.slice(0, selectedIndex),
...this.state.value.slice(selectedIndex + 1),
]);
return;
}
} else {
this.updateValue(event.target.value);
}
};
render() {
const { props } = this;
return (
<div className="SelectMultipleSimple">
<select
value={this.state.value}
onChange={this.handleChange}
disabled={this.props.isDisabled}
multiple
>
{props.options.map(option => (
<option
key={option.value.toString()}
value={option.value}
disabled={option.isDisabled}
>
<div>
{option.title ||
(typeof option.value === 'string' ? option.value : '')}
</div>
</option>
))}
</select>
</div>
);
}
}
SelectMultipleSimple.propTypes = {
multiple: PropTypes.bool,
onChange: PropTypes.func,
value: PropTypes.any,
isDisabled: PropTypes.bool,
options: PropTypes.arrayOf(
PropTypes.shape({
name: PropTypes.string,
value: PropTypes.any,
isDisabled: PropTypes.bool,
})
),
};
export default SelectMultipleSimple;