-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathDropdown.jsx
187 lines (155 loc) · 4.53 KB
/
Dropdown.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
import React from 'react';
import PropTypes from 'prop-types';
import { settings } from '../../constants/Settings';
import { Dropdown as CarbonDropdown } from '.';
const { iotPrefix } = settings;
const propTypes = {
/**
* 'aria-label' of the ListBox component.
*/
ariaLabel: PropTypes.string,
/**
* Provide a custom className to be applied on the bx--dropdown node
*/
className: PropTypes.string,
/**
* Specify the direction of the dropdown. Can be either top or bottom.
*/
direction: PropTypes.oneOf(['top', 'bottom']),
/**
* Disable the control
*/
disabled: PropTypes.bool,
/**
* Additional props passed to Downshift
*/
// eslint-disable-next-line react/forbid-prop-types
downshiftProps: PropTypes.object,
/**
* Provide helper text that is used alongside the control label for
* additional help
*/
helperText: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
/**
* Specify a custom `id`
*/
id: PropTypes.string.isRequired,
/**
* Allow users to pass in an arbitrary item or a string (in case their items are an array of strings)
* from their collection that are pre-selected
*/
initialSelectedItem: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
/**
* Specify if the currently selected value is invalid.
*/
invalid: PropTypes.bool,
/**
* Message which is displayed if the value is invalid.
*/
invalidText: PropTypes.string,
/**
* Function to render items as custom components instead of strings.
* Defaults to null and is overriden by a getter
*/
itemToElement: PropTypes.func,
/**
* Helper function passed to downshift that allows the library to render a
* given item to a string label. By default, it extracts the `label` field
* from a given item to serve as the item label in the list.
*/
itemToString: PropTypes.func,
/**
* We try to stay as generic as possible here to allow individuals to pass
* in a collection of whatever kind of data structure they prefer
*/
// eslint-disable-next-line react/forbid-prop-types
items: PropTypes.array.isRequired,
/**
* Generic `label` that will be used as the textual representation of what
* this field is for
*/
label: PropTypes.node.isRequired,
/**
* `true` to use the light version.
*/
light: PropTypes.bool,
/**
* `onChange` is a utility for this controlled component to communicate to a
* consuming component what kind of internal state changes are occuring.
*/
onChange: PropTypes.func,
/**
* In the case you want to control the dropdown selection entirely.
*/
selectedItem: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
/**
* Specify the size of the ListBox. Currently supports either `sm`, or `xl` as an option.
*/
size: PropTypes.oneOf(['sm', 'xl']),
/**
* Provide the title text that will be read by a screen reader when
* visiting this control
*/
titleText: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
/**
* Callback function for translating ListBoxMenuIcon SVG title
*/
translateWithId: PropTypes.func,
/**
* The dropdown type, `default` or `inline`
*/
type: PropTypes.oneOf(['default', 'inline']),
testId: PropTypes.string,
};
const defaultPropTypes = {
ariaLabel: undefined,
className: undefined,
downshiftProps: undefined,
initialSelectedItem: null,
invalid: false,
invalidText: '',
onChange: null,
selectedItem: undefined,
disabled: false,
size: undefined,
translateWithId: () => {},
type: 'default',
itemToString: null,
itemToElement: null,
light: false,
titleText: '',
helperText: '',
direction: 'bottom',
testId: 'dropdown',
};
const defaultItemToString = (item) => {
let content;
if (typeof item === 'string') {
content = item;
} else if (item?.icon) {
content = (
<div className={`${iotPrefix}--dropdown__item`} title={item.text}>
<div className={`${iotPrefix}--dropdown__label`}>
{React.createElement(item?.icon)}
<div className={`${iotPrefix}--dropdown__label__content`}>{item.text}</div>
</div>
</div>
);
} else {
content = item ? item.text : '';
}
return content;
};
const Dropdown = ({ itemToString, testId, ...other }) => {
return (
<CarbonDropdown
data-testid={testId}
{...other}
className={`${iotPrefix}--dropdown`}
itemToString={itemToString !== null ? itemToString : defaultItemToString}
/>
);
};
Dropdown.propTypes = propTypes;
Dropdown.defaultProps = defaultPropTypes;
export default Dropdown;