formsy-material-ui-react16
Version:
A formsy-react compatibility wrapper for Material-UI form components with React 16
127 lines (97 loc) • 6.14 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FormsySelect = undefined;
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _formsyReact = require('formsy-react');
var _SelectField = require('material-ui/SelectField');
var _SelectField2 = _interopRequireDefault(_SelectField);
var _FormsyComponent2 = require('./FormsyComponent');
var _FormsyComponent3 = _interopRequireDefault(_FormsyComponent2);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var FormsySelect = exports.FormsySelect = function (_FormsyComponent) {
_inherits(FormsySelect, _FormsyComponent);
function FormsySelect() {
var _ref;
var _temp, _this, _ret;
_classCallCheck(this, FormsySelect);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = FormsySelect.__proto__ || Object.getPrototypeOf(FormsySelect)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
hasChanged: false
}, _this.handleChange = function (event, index, value) {
_this.props.setValue(value);
_this.setState({
hasChanged: value !== ''
});
if (_this.props.onChange) _this.props.onChange(event, value, index);
}, _temp), _possibleConstructorReturn(_this, _ret);
}
_createClass(FormsySelect, [{
key: 'render',
value: function render() {
/* eslint no-unused-vars: 0 */
var _props = this.props,
getErrorMessage = _props.getErrorMessage,
getErrorMessages = _props.getErrorMessages,
getValue = _props.getValue,
hasValue = _props.hasValue,
innerRef = _props.innerRef,
isFormDisabled = _props.isFormDisabled,
isFormSubmitted = _props.isFormSubmitted,
isPristine = _props.isPristine,
isRequired = _props.isRequired,
isValid = _props.isValid,
isValidValue = _props.isValidValue,
onChange = _props.onChange,
resetValue = _props.resetValue,
requiredError = _props.requiredError,
setValidations = _props.setValidations,
setValue = _props.setValue,
showError = _props.showError,
showRequired = _props.showRequired,
validationError = _props.validationError,
validationErrors = _props.validationErrors,
validations = _props.validations,
valueProp = _props.value,
rest = _objectWithoutProperties(_props, ['getErrorMessage', 'getErrorMessages', 'getValue', 'hasValue', 'innerRef', 'isFormDisabled', 'isFormSubmitted', 'isPristine', 'isRequired', 'isValid', 'isValidValue', 'onChange', 'resetValue', 'requiredError', 'setValidations', 'setValue', 'showError', 'showRequired', 'validationError', 'validationErrors', 'validations', 'value']);
var isRequiredError = isRequired() && !isPristine() && !isValid() && isFormSubmitted() && requiredError;
var errorText = getErrorMessage() || isRequiredError;
var value = this.state.hasChanged ? getValue() : valueProp;
return _react2.default.createElement(
_SelectField2.default,
_extends({
disabled: isFormDisabled(),
errorText: errorText,
onChange: this.handleChange,
ref: this.setMuiComponentAndMaybeFocus,
value: value
}, rest),
this.props.children
);
}
}]);
return FormsySelect;
}(_FormsyComponent3.default);
FormsySelect.propTypes = {
children: _propTypes2.default.node,
name: _propTypes2.default.string.isRequired,
onChange: _propTypes2.default.func,
requiredError: _propTypes2.default.string,
validationError: _propTypes2.default.string,
validationErrors: _propTypes2.default.object,
validations: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.object]),
value: _propTypes2.default.any
};
exports.default = (0, _formsyReact.withFormsy)(FormsySelect);