-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelect.js
27 lines (24 loc) · 854 Bytes
/
Select.js
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
import * as React from 'react'
export default ({includeHidden= true, name=null, id=null, children, options=[], multiple=false, disabled=false, type=null, ...rest}) => {
const addHidden = includeHidden && multiple
const optionElements = options.map((option) => {
if (option.hasOwnProperty('options')) {
return (
<optgroup label={option.label} key={option.label}>
{option.options.map((opt) => <option key={opt.label} {...opt}/>)}
</optgroup>
)
} else {
return <option key={option.label} {...option}/>
}
});
return (
<>
{addHidden && <input type="hidden" disabled={disabled} name={name} value={""} autoComplete="off" />}
<select name={name} id={id} multiple={multiple} disabled={disabled} {...rest}>
{children}
{optionElements}
</select>
</>
)
}