forked from folio-org/stripes-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiDownshift.js
More file actions
145 lines (134 loc) · 3.99 KB
/
Copy pathMultiDownshift.js
File metadata and controls
145 lines (134 loc) · 3.99 KB
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
import React from 'react';
import PropTypes from 'prop-types';
import findIndex from 'lodash/findIndex';
import isEqual from 'lodash/isEqual';
import Downshift from 'downshift';
class MultiDownshift extends React.Component {
static propTypes = {
actionHelpers: PropTypes.func,
children: PropTypes.func,
downshiftRef: PropTypes.object,
onChange: PropTypes.func,
onSelect: PropTypes.func,
onStateChange: PropTypes.func,
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.arrayOf(PropTypes.string),
PropTypes.arrayOf(PropTypes.object),
]),
};
stateReducer(state, changes) {
switch (changes.type) {
case Downshift.stateChangeTypes.blurInput:
if (!changes.selectedItem) {
return {
isOpen: false
};
}
return {};
case Downshift.stateChangeTypes.keyDownEnter:
case Downshift.stateChangeTypes.clickItem:
if (Object.prototype.hasOwnProperty.call(changes.selectedItem, 'onSelect')) {
const params = {
...state,
...this.actionHelpers(),
filterText: state.inputValue
};
changes.selectedItem.onSelect(params);
return {
inputValue: '',
isOpen: false
};
}
return {
...changes,
highlightedIndex: state.highlightedIndex,
isOpen: true
};
default:
return changes;
}
}
changeCallback = (newValue, downshift) => {
if (this.props.onSelect) {
this.props.onSelect(
newValue,
this.getStateAndHelpers(downshift)
);
}
if (this.props.onChange) {
this.props.onChange(
newValue,
this.getStateAndHelpers(downshift)
);
}
};
handleSelection = (selectedItem, downshift) => {
if (findIndex(this.props.value, (item) => isEqual(item, selectedItem)) !== -1) {
this.removeItem(selectedItem, (newValue) => { this.changeCallback(newValue, downshift); });
} else {
this.addSelectedItem(selectedItem, (newValue) => { this.changeCallback(newValue, downshift); });
}
};
removeItem = (item, cb = () => {}) => {
const newValue = this.props.value.filter(i => !isEqual(i, item));
cb(newValue);
};
addSelectedItem(item, cb = () => {}) {
const newValue = [...this.props.value, item];
cb(newValue);
}
getSelectedItems = () => this.props.value;
getRemoveButtonProps = ({
onClick,
item,
index,
...props
} = {}) => {
return {
onClick: e => {
// TODO: use something like downshift's composeEventHandlers utility instead
if (onClick) {
onClick(e);
}
e.stopPropagation();
this.handleSelection(item, { removeButtonIndex: index });
},
...props
};
};
getStateAndHelpers(downshift) {
const selectedItems = this.props.value;
const { getRemoveButtonProps, removeItem } = this;
const { actionHelpers } = this.props;
const stateAndHelpers = {
getRemoveButtonProps,
removeItem,
selectedItems,
filterValue: downshift.inputValue,
removeButtonUsed: -1,
internalChangeCallback: (newValue) => { this.changeCallback(newValue, downshift); },
...actionHelpers(),
...downshift
};
return stateAndHelpers;
}
render() {
const { children, ...props } = this.props;
// TODO: compose together props (rather than overwriting them) like downshift does
return (
<Downshift
{...props}
ref={this.props.downshiftRef}
stateReducer={this.stateReducer}
onChange={this.handleSelection}
defaultHighlightedIndex={0}
selectedItem={null}
onStateChange={this.props.onStateChange}
>
{downshift => children(this.getStateAndHelpers(downshift))}
</Downshift>
);
}
}
export default MultiDownshift;