@txdfe/at
Version:
一个设计体系组件库
267 lines (215 loc) • 10.9 kB
JavaScript
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
function _extends() { _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; }; return _extends.apply(this, arguments); }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { obj, func } from '../util';
import Field from '../field';
function pickerDefined(obj) {
var newObj = {};
Object.keys(obj).forEach(function (i) {
if (typeof obj[i] !== 'undefined') {
newObj[i] = obj[i];
}
});
return newObj;
}
function preventDefault(e) {
e.preventDefault();
}
/** Form */
var Form = /*#__PURE__*/function (_React$Component) {
_inherits(Form, _React$Component);
var _super = _createSuper(Form);
function Form(props) {
var _this;
_classCallCheck(this, Form);
_this = _super.call(this, props);
_defineProperty(_assertThisInitialized(_this), "onChange", function (name, value) {
_this.props.onChange(_this._formField.getValues(), {
name: name,
value: value,
field: _this._formField
});
});
var options = _objectSpread(_objectSpread({}, props.fieldOptions), {}, {
onChange: _this.onChange
});
if (props.field) {
_this._formField = props.field;
var onChange = _this._formField.options.onChange;
options.onChange = func.makeChain(onChange, _this.onChange);
_this._formField.setOptions && _this._formField.setOptions(options);
} else {
if ('value' in props) {
options.values = props.value;
}
_this._formField = new Field(_assertThisInitialized(_this), options);
}
props.saveField(_this._formField);
return _this;
}
_createClass(Form, [{
key: "getChildContext",
value: function getChildContext() {
return {
_formField: this.props.field ? this.props.field : this._formField,
_formSize: this.props.size
};
}
}, {
key: "UNSAFE_componentWillReceiveProps",
value: function UNSAFE_componentWillReceiveProps(nextProps) {
if ('value' in nextProps) {
this._formField.setValues(nextProps.value);
}
if ('error' in nextProps) {
this._formField.setErrors(nextProps.error);
}
}
}, {
key: "render",
value: function render() {
var _classNames;
var _this$props = this.props,
className = _this$props.className,
inline = _this$props.inline,
size = _this$props.size,
labelAlign = _this$props.labelAlign,
labelTextAlign = _this$props.labelTextAlign,
onSubmit = _this$props.onSubmit,
children = _this$props.children,
labelCol = _this$props.labelCol,
wrapperCol = _this$props.wrapperCol,
style = _this$props.style,
prefix = _this$props.prefix,
rtl = _this$props.rtl,
Tag = _this$props.component;
var formClassName = classNames((_classNames = {}, _defineProperty(_classNames, "".concat(prefix, "form"), true), _defineProperty(_classNames, "".concat(prefix, "inline"), inline), _defineProperty(_classNames, "".concat(prefix).concat(size), size), _defineProperty(_classNames, "".concat(prefix, "top"), labelAlign === 'top'), _defineProperty(_classNames, className, !!className), _classNames));
return /*#__PURE__*/React.createElement(Tag, _extends({
role: "grid"
}, obj.pickOthers(Form.propTypes, this.props), {
className: formClassName,
style: style,
dir: rtl ? 'rtl' : undefined,
onSubmit: onSubmit
}), React.Children.map(children, function (child) {
if (child && typeof child.type === 'function' && child.type._typeMark === 'form_item') {
var childrenProps = {
labelCol: child.props.labelCol ? child.props.labelCol : labelCol,
wrapperCol: child.props.wrapperCol ? child.props.wrapperCol : wrapperCol,
labelAlign: child.props.labelAlign ? child.props.labelAlign : labelAlign,
labelTextAlign: child.props.labelTextAlign ? child.props.labelTextAlign : labelTextAlign,
size: child.props.size ? child.props.size : size
};
return /*#__PURE__*/React.cloneElement(child, pickerDefined(childrenProps));
}
return child;
}));
}
}]);
return Form;
}(React.Component);
_defineProperty(Form, "propTypes", {
/**
* 样式前缀
*/
prefix: PropTypes.string,
/**
* 内联表单
*/
inline: PropTypes.bool,
/**
* 单个 Item 的 size 自定义,优先级高于 Form 的 size, 并且当组件与 Item 一起使用时,组件自身设置 size 属性无效。
* @enumdesc 中, 小
*/
size: PropTypes.oneOf(['medium', 'small']),
/**
* 标签的位置
* @enumdesc 上, 左, 内
*/
labelAlign: PropTypes.oneOf(['top', 'left', 'inset']),
/**
* 标签的左右对齐方式
* @enumdesc 左, 右
*/
labelTextAlign: PropTypes.oneOf(['left', 'right']),
/**
* 经 `new Field(this)` 初始化后,直接传给 Form 即可 用到表单校验则不可忽略此项
*/
field: PropTypes.any,
/**
* 保存 Form 自动生成的 field 对象
*/
saveField: PropTypes.func,
/**
* 控制第一级 Item 的 labelCol
*/
labelCol: PropTypes.object,
/**
* 控制第一级 Item 的 wrapperCol
*/
wrapperCol: PropTypes.object,
/**
* form内有 `htmlType="submit"` 的元素的时候会触发
*/
onSubmit: PropTypes.func,
/**
* 子元素
*/
children: PropTypes.any,
/**
* 扩展class
*/
className: PropTypes.string,
/**
* 自定义内联样式
*/
style: PropTypes.object,
/**
* 表单数值
*/
value: PropTypes.object,
/**
* 表单变化回调
* @param {Object} values 表单数据
* @param {Object} item 详细
* @param {String} item.name 变化的组件名
* @param {String} item.value 变化的数据
* @param {Object} item.field field 实例
*/
onChange: PropTypes.func,
/**
* 设置标签类型
*/
component: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),
fieldOptions: PropTypes.object,
rtl: PropTypes.bool
});
_defineProperty(Form, "defaultProps", {
prefix: 'next-',
onSubmit: preventDefault,
size: 'medium',
labelAlign: 'left',
onChange: func.noop,
component: 'form',
saveField: func.noop
});
_defineProperty(Form, "childContextTypes", {
_formField: PropTypes.object,
_formSize: PropTypes.string
});
export { Form as default };