|
|
|
import * as React from 'react';
|
|
|
|
import isEqual from 'lodash/isEqual';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { Field, FormInstance } from 'rc-field-form';
|
|
|
|
import { FieldProps } from 'rc-field-form/lib/Field';
|
|
|
|
import FieldContext from 'rc-field-form/lib/FieldContext';
|
|
|
|
import { Meta, NamePath } from 'rc-field-form/lib/interface';
|
|
|
|
import { supportRef } from 'rc-util/lib/ref';
|
|
|
|
import omit from 'omit.js';
|
|
|
|
import Row from '../grid/row';
|
|
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
import { tuple } from '../_util/type';
|
|
|
|
import devWarning from '../_util/devWarning';
|
|
|
|
import FormItemLabel, { FormItemLabelProps } from './FormItemLabel';
|
|
|
|
import FormItemInput, { FormItemInputProps } from './FormItemInput';
|
|
|
|
import { FormContext, FormItemContext } from './context';
|
|
|
|
import { toArray, getFieldId } from './util';
|
|
|
|
import { cloneElement, isValidElement } from '../_util/reactNode';
|
|
|
|
import useFrameState from './hooks/useFrameState';
|
|
|
|
import useItemRef from './hooks/useItemRef';
|
|
|
|
|
|
|
|
const ValidateStatuses = tuple('success', 'warning', 'error', 'validating', '');
|
|
|
|
export type ValidateStatus = typeof ValidateStatuses[number];
|
|
|
|
|
|
|
|
type RenderChildren = (form: FormInstance) => React.ReactNode;
|
|
|
|
type RcFieldProps = Omit<FieldProps, 'children'>;
|
|
|
|
type ChildrenType = RenderChildren | React.ReactNode;
|
|
|
|
|
|
|
|
interface MemoInputProps {
|
|
|
|
value: any;
|
|
|
|
update: number;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MemoInput = React.memo(
|
|
|
|
({ children }: MemoInputProps) => children as JSX.Element,
|
|
|
|
(prev, next) => {
|
|
|
|
return prev.value === next.value && prev.update === next.update;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
export interface FormItemProps extends FormItemLabelProps, FormItemInputProps, RcFieldProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
noStyle?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
className?: string;
|
|
|
|
children?: ChildrenType;
|
|
|
|
id?: string;
|
|
|
|
hasFeedback?: boolean;
|
|
|
|
validateStatus?: ValidateStatus;
|
|
|
|
required?: boolean;
|
|
|
|
hidden?: boolean;
|
|
|
|
|
|
|
|
/** Auto passed by List render props. User should not use this. */
|
|
|
|
fieldKey?: React.Key | React.Key[];
|
|
|
|
}
|
|
|
|
|
|
|
|
function hasValidName(name?: NamePath): Boolean {
|
|
|
|
if (name === null) {
|
|
|
|
devWarning(false, 'Form.Item', '`null` is passed as `name` property');
|
|
|
|
}
|
|
|
|
return !(name === undefined || name === null);
|
|
|
|
}
|
|
|
|
|
|
|
|
function FormItem(props: FormItemProps): React.ReactElement {
|
|
|
|
const {
|
|
|
|
name,
|
|
|
|
fieldKey,
|
|
|
|
noStyle,
|
|
|
|
dependencies,
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
style,
|
|
|
|
className,
|
|
|
|
shouldUpdate,
|
|
|
|
hasFeedback,
|
|
|
|
help,
|
|
|
|
rules,
|
|
|
|
validateStatus,
|
|
|
|
children,
|
|
|
|
required,
|
|
|
|
label,
|
|
|
|
trigger = 'onChange',
|
|
|
|
validateTrigger,
|
|
|
|
hidden,
|
|
|
|
...restProps
|
|
|
|
} = props;
|
|
|
|
const destroyRef = React.useRef(false);
|
|
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
|
|
const { name: formName } = React.useContext(FormContext);
|
|
|
|
const { updateItemErrors } = React.useContext(FormItemContext);
|
|
|
|
const [domErrorVisible, innerSetDomErrorVisible] = React.useState(!!help);
|
|
|
|
const prevValidateStatusRef = React.useRef<ValidateStatus | undefined>(validateStatus);
|
|
|
|
const [inlineErrors, setInlineErrors] = useFrameState<Record<string, string[]>>({});
|
|
|
|
|
|
|
|
const { validateTrigger: contextValidateTrigger } = React.useContext(FieldContext);
|
|
|
|
const mergedValidateTrigger =
|
|
|
|
validateTrigger !== undefined ? validateTrigger : contextValidateTrigger;
|
|
|
|
|
|
|
|
function setDomErrorVisible(visible: boolean) {
|
|
|
|
if (!destroyRef.current) {
|
|
|
|
innerSetDomErrorVisible(visible);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const hasName = hasValidName(name);
|
|
|
|
|
|
|
|
// Cache Field NamePath
|
|
|
|
const nameRef = React.useRef<(string | number)[]>([]);
|
|
|
|
|
|
|
|
// Should clean up if Field removed
|
|
|
|
React.useEffect(() => {
|
|
|
|
return () => {
|
|
|
|
destroyRef.current = true;
|
|
|
|
updateItemErrors(nameRef.current.join('__SPLIT__'), []);
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const prefixCls = getPrefixCls('form', customizePrefixCls);
|
|
|
|
|
|
|
|
// ======================== Errors ========================
|
|
|
|
// Collect noStyle Field error to the top FormItem
|
|
|
|
const updateChildItemErrors = noStyle
|
|
|
|
? updateItemErrors
|
|
|
|
: (subName: string, subErrors: string[]) => {
|
|
|
|
setInlineErrors((prevInlineErrors = {}) => {
|
|
|
|
if (!isEqual(prevInlineErrors[subName], subErrors)) {
|
|
|
|
return {
|
|
|
|
...prevInlineErrors,
|
|
|
|
[subName]: subErrors,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return prevInlineErrors;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// ===================== Children Ref =====================
|
|
|
|
const getItemRef = useItemRef();
|
|
|
|
|
|
|
|
function renderLayout(
|
|
|
|
baseChildren: React.ReactNode,
|
|
|
|
fieldId?: string,
|
|
|
|
meta?: Meta,
|
|
|
|
isRequired?: boolean,
|
|
|
|
): React.ReactNode {
|
|
|
|
if (noStyle && !hidden) {
|
|
|
|
return baseChildren;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ======================== Errors ========================
|
|
|
|
// >>> collect sub errors
|
|
|
|
let subErrorList: string[] = [];
|
|
|
|
Object.keys(inlineErrors).forEach(subName => {
|
|
|
|
subErrorList = [...subErrorList, ...(inlineErrors[subName] || [])];
|
|
|
|
});
|
|
|
|
|
|
|
|
// >>> merged errors
|
|
|
|
let mergedErrors: React.ReactNode[];
|
|
|
|
if (help !== undefined && help !== null) {
|
|
|
|
mergedErrors = toArray(help);
|
|
|
|
} else {
|
|
|
|
mergedErrors = meta ? meta.errors : [];
|
|
|
|
mergedErrors = [...mergedErrors, ...subErrorList];
|
|
|
|
}
|
|
|
|
|
|
|
|
// ======================== Status ========================
|
|
|
|
let mergedValidateStatus: ValidateStatus = '';
|
|
|
|
if (validateStatus !== undefined) {
|
|
|
|
mergedValidateStatus = validateStatus;
|
|
|
|
} else if (meta?.validating) {
|
|
|
|
mergedValidateStatus = 'validating';
|
|
|
|
} else if (meta?.errors?.length || subErrorList.length) {
|
|
|
|
mergedValidateStatus = 'error';
|
|
|