mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
35 lines
1.3 KiB
JavaScript
35 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import { intlShape } from 'meteor/vulcan:i18n';
|
|
import Form from 'react-bootstrap/lib/Form';
|
|
import { Components, registerComponent } from 'meteor/vulcan:core';
|
|
|
|
// copied from vulcan:forms/utils.js to avoid extra dependency
|
|
const getFieldType = datatype => datatype && datatype[0].type;
|
|
|
|
const SelectComponent = ({ refFunction, inputProperties, datatype, ...properties }, { intl }) => {
|
|
const noneOption = {
|
|
label: intl.formatMessage({ id: 'forms.select_option' }),
|
|
value: getFieldType(datatype) === String || getFieldType(datatype) === Number ? '' : null, // depending on field type, empty value can be '' or null
|
|
disabled: true,
|
|
};
|
|
let otherOptions =
|
|
Array.isArray(inputProperties.options) && inputProperties.options.length
|
|
? inputProperties.options
|
|
: [];
|
|
const options = [noneOption, ...otherOptions];
|
|
return (
|
|
<Components.FormItem {...inputProperties}>
|
|
<Form.Control as="select" {...inputProperties} ref={refFunction}>
|
|
{options.map((option, i) => (
|
|
<option key={i} {...option}>{option.value}</option>
|
|
))}
|
|
</Form.Control>
|
|
</Components.FormItem>
|
|
);
|
|
};
|
|
|
|
SelectComponent.contextTypes = {
|
|
intl: intlShape,
|
|
};
|
|
|
|
registerComponent('FormComponentSelect', SelectComponent);
|