antd
Version:
An enterprise-class UI design language and React components implementation
99 lines (81 loc) • 5.29 kB
JavaScript
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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
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 * as React from 'react';
import omit from 'omit.js';
import classNames from 'classnames';
import FieldForm, { List } from 'rc-field-form';
import { ConfigContext } from '../config-provider';
import { FormContext } from './context';
import { useForm } from './util';
import SizeContext, { SizeContextProvider } from '../config-provider/SizeContext';
var InternalForm = function InternalForm(props, ref) {
var _classNames;
var contextSize = React.useContext(SizeContext);
var _React$useContext = React.useContext(ConfigContext),
getPrefixCls = _React$useContext.getPrefixCls,
direction = _React$useContext.direction;
var form = props.form,
colon = props.colon,
name = props.name,
labelAlign = props.labelAlign,
labelCol = props.labelCol,
wrapperCol = props.wrapperCol,
customizePrefixCls = props.prefixCls,
hideRequiredMark = props.hideRequiredMark,
_props$className = props.className,
className = _props$className === void 0 ? '' : _props$className,
_props$layout = props.layout,
layout = _props$layout === void 0 ? 'horizontal' : _props$layout,
_props$size = props.size,
size = _props$size === void 0 ? contextSize : _props$size,
scrollToFirstError = props.scrollToFirstError,
onFinishFailed = props.onFinishFailed;
var prefixCls = getPrefixCls('form', customizePrefixCls);
var formClassName = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-").concat(layout), true), _defineProperty(_classNames, "".concat(prefixCls, "-hide-required-mark"), hideRequiredMark), _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _defineProperty(_classNames, "".concat(prefixCls, "-").concat(size), size), _classNames), className);
var formProps = omit(props, ['prefixCls', 'className', 'layout', 'hideRequiredMark', 'wrapperCol', 'labelAlign', 'labelCol', 'colon', 'scrollToFirstError']);
var _useForm = useForm(form),
_useForm2 = _slicedToArray(_useForm, 1),
wrapForm = _useForm2[0];
wrapForm.__INTERNAL__.name = name;
var formContextValue = React.useMemo(function () {
return {
name: name,
labelAlign: labelAlign,
labelCol: labelCol,
wrapperCol: wrapperCol,
vertical: layout === 'vertical',
colon: colon
};
}, [name, labelAlign, labelCol, wrapperCol, layout, colon]);
React.useImperativeHandle(ref, function () {
return wrapForm;
});
var onInternalFinishFailed = function onInternalFinishFailed(errorInfo) {
if (onFinishFailed) {
onFinishFailed(errorInfo);
}
if (scrollToFirstError && errorInfo.errorFields.length) {
wrapForm.scrollToField(errorInfo.errorFields[0].name);
}
};
return /*#__PURE__*/React.createElement(SizeContextProvider, {
size: size
}, /*#__PURE__*/React.createElement(FormContext.Provider, {
value: formContextValue
}, /*#__PURE__*/React.createElement(FieldForm, _extends({
id: name
}, formProps, {
onFinishFailed: onInternalFinishFailed,
form: wrapForm,
className: formClassName
}))));
};
var Form = /*#__PURE__*/React.forwardRef(InternalForm);
export { useForm, List };
export default Form;