mirror of
https://github.com/flarum/core.git
synced 2025-07-17 06:41:21 +02:00
* Allow extra attrs provided to `<Select>` to be passed through to the DOM element * Allow direct passing attrs to the Select wrapper * Format
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
import Component from '../Component';
|
|
import icon from '../helpers/icon';
|
|
import withAttr from '../utils/withAttr';
|
|
import classList from '../utils/classList';
|
|
|
|
/**
|
|
* The `Select` component displays a <select> input, surrounded with some extra
|
|
* elements for styling. It accepts the following attrs:
|
|
*
|
|
* - `options` A map of option values to labels.
|
|
* - `onchange` A callback to run when the selected value is changed.
|
|
* - `value` The value of the selected option.
|
|
* - `disabled` Disabled state for the input.
|
|
* - `wrapperAttrs` A map of attrs to be passed to the DOM element wrapping the `<select>`
|
|
*
|
|
* Other attributes are passed directly to the `<select>` element rendered to the DOM.
|
|
*/
|
|
export default class Select extends Component {
|
|
view() {
|
|
const {
|
|
options,
|
|
onchange,
|
|
value,
|
|
disabled,
|
|
|
|
// Destructure the `wrapperAttrs` object to extract the `className` for passing to `classList()`
|
|
// `= {}` prevents errors when `wrapperAttrs` is undefined
|
|
wrapperAttrs: { className: wrapperClassName, ...wrapperAttrs } = {},
|
|
|
|
...domAttrs
|
|
} = this.attrs;
|
|
|
|
return (
|
|
<span className={classList('Select', wrapperClassName)} {...wrapperAttrs}>
|
|
<select
|
|
className="Select-input FormControl"
|
|
onchange={onchange ? withAttr('value', onchange.bind(this)) : undefined}
|
|
value={value}
|
|
disabled={disabled}
|
|
{...domAttrs}
|
|
>
|
|
{Object.keys(options).map((key) => (
|
|
<option value={key}>{options[key]}</option>
|
|
))}
|
|
</select>
|
|
{icon('fas fa-sort', { className: 'Select-caret' })}
|
|
</span>
|
|
);
|
|
}
|
|
}
|