Vulcan/packages/vulcan-ui-bootstrap/lib/components/forms/Select.jsx

25 lines
1 KiB
React
Raw Normal View History

import React from 'react';
import { intlShape } from 'meteor/vulcan:i18n';
import { Select } from 'formsy-react-components';
import { 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,
};
2018-06-25 08:39:00 +02:00
let otherOptions = Array.isArray(inputProperties.options) && inputProperties.options.length ? inputProperties.options : [];
const options = [noneOption, ...otherOptions];
return <Select {...inputProperties} options={options} ref={refFunction}/>;
};
SelectComponent.contextTypes = {
intl: intlShape,
};
registerComponent('FormComponentSelect', SelectComponent);