-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathSelectButton.jsx
272 lines (235 loc) · 7.36 KB
/
SelectButton.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
* @component
*/
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import ChooseButton from '../../react-chayns-button/component/ChooseButton';
import { isNumber } from '../../utils/is';
/**
* A choose button that opens a selection dialog when clicked.
*/
export default class SelectButton extends Component {
constructor(props) {
super(props);
this.state = {
selected: props.list.filter((item) => item[props.selectedFlag]),
};
this.onClick = this.onClick.bind(this);
this.getDialogList = this.getDialogList.bind(this);
}
componentDidUpdate(prevProps) {
const { list, listKey, listValue, selectedFlag } = this.props;
if (
list !== prevProps.list ||
listKey !== prevProps.listKey ||
listValue !== prevProps.listValue ||
selectedFlag !== prevProps.selectedFlag
) {
// eslint-disable-next-line react/no-did-update-set-state
this.setState({
selected: list.filter((item) => item[selectedFlag]),
});
}
}
onClick(e) {
const {
quickFind,
multiSelect,
title,
description,
list,
selectAllButton,
onSelect,
stopPropagation,
} = this.props;
const dialogList = this.getDialogList(list);
chayns.dialog
.select({
title,
selectAllButton,
message: description,
quickfind: quickFind,
multiselect: multiSelect,
list: dialogList,
buttons: multiSelect || [],
})
.then((result) => {
if (onSelect && result.buttonType > 0) {
onSelect(this.getReturnList(result));
}
})
.catch((err) => {
// eslint-disable-next-line no-console
console.error(err);
});
if (stopPropagation) e.stopPropagation();
}
getDialogList(_list) {
const { selected } = this.state;
const { showListSelection, listKey, listValue } = this.props;
const list = [];
if (_list) {
_list.forEach((item, i) => {
const curListKey = listKey || i;
if (item[curListKey] && item[listValue]) {
list.push({
name: item[listValue],
value: item[curListKey],
isSelected:
selected.indexOf(item) >= 0 && showListSelection,
});
}
});
}
return list;
}
getReturnList(selected) {
const { list, listKey } = this.props;
const { buttonType, selection: selectedItems } = selected;
const result = [];
selectedItems.forEach((item) => {
list.forEach((listItem) => {
if (listItem[listKey] === item.value) {
result.push(listItem);
}
});
});
this.setState({ selected: result });
return {
buttonType,
selection: result,
};
}
render() {
const {
className,
label,
disabled,
listValue,
showSelection,
style,
} = this.props;
const { selected } = this.state;
const numberOfItems = isNumber(showSelection) ? showSelection : 2;
return (
<ChooseButton
className={className}
disabled={disabled}
onClick={this.onClick}
style={style}
>
{selected && selected.length > 0 && showSelection
? selected.map((item, index) => {
let str =
index > 0 &&
index < selected.length &&
index < numberOfItems
? ', '
: '';
str += index < numberOfItems ? item[listValue] : '';
str += index === numberOfItems ? '...' : '';
return str;
})
: label}
</ChooseButton>
);
}
}
SelectButton.propTypes = {
/**
* A callback that is invoked when the selection has changed.
*/
onSelect: PropTypes.func,
/**
* A string that will be shown as a title in the selection dialog.
*/
title: PropTypes.string,
/**
* A string that will be shown as a description in the selection dialog.
*/
description: PropTypes.string,
/**
* Disables any user interaction and renders the button in a disabled style.
*/
disabled: PropTypes.bool,
/**
* The content of the button.
*/
label: PropTypes.string,
/**
* An array of items to select from. Items are provided in an object shape.
*/
list: PropTypes.arrayOf(PropTypes.object).isRequired,
/**
* The property name of the list item objects that will uniquely identify
* each one.
*/
listKey: PropTypes.string,
/**
* The property name of the list item objects that will be shown as its name
* in the selection dialog.
*/
listValue: PropTypes.string,
/**
* The property name of the list item objects that mark an item as selected.
*/
selectedFlag: PropTypes.string,
/**
* Wether multiple options can be selected.
*/
multiSelect: PropTypes.bool,
/**
* Wether a search field should be shown in the selection dialog.
*/
quickFind: PropTypes.bool,
/**
* Adds a checkbox with the given text of this property which allows you to
* enable and disable all elements of the select list at the same time.
* Based on the list items isSelected state the checkbox is enabled or
* disabled. If all elements of the list are selected, the checkbox will be
* checked.
*/
selectAllButton: PropTypes.string,
/**
* A classname string that will be applied to the button.
*/
className: PropTypes.string,
/**
* A React style object that will be applied ot the button
*/
style: PropTypes.objectOf(
PropTypes.oneOfType([PropTypes.number, PropTypes.string])
),
/**
* Wether the current selection should be shown in the button. Use a number
* to specify the maximum amount of items selected.
*/
showSelection: PropTypes.oneOfType([PropTypes.bool, PropTypes.number]),
/**
* Wether the current selection should be shown in the dialog list.
*/
showListSelection: PropTypes.bool,
/**
* Wether to stop propagation of click events to parent elements.
*/
stopPropagation: PropTypes.bool,
};
SelectButton.defaultProps = {
quickFind: false,
multiSelect: false,
title: '',
description: '',
label: 'Select',
showSelection: true,
selectAllButton: null,
className: null,
onSelect: null,
disabled: false,
listKey: 'name',
listValue: 'value',
selectedFlag: 'isSelected',
stopPropagation: false,
showListSelection: true,
style: null,
};
SelectButton.displayName = 'SelectButton';