You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
4.8 KiB
160 lines
4.8 KiB
import classNames from 'classnames';
|
|
import FieldForm, { List, useWatch } from 'rc-field-form';
|
|
import type { FormProps as RcFormProps } from 'rc-field-form/lib/Form';
|
|
import type { ValidateErrorEntity } from 'rc-field-form/lib/interface';
|
|
import * as React from 'react';
|
|
import { useMemo } from 'react';
|
|
import type { Options } from 'scroll-into-view-if-needed';
|
|
import { ConfigContext } from '../config-provider';
|
|
import DisabledContext, { DisabledContextProvider } from '../config-provider/DisabledContext';
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
import SizeContext, { SizeContextProvider } from '../config-provider/SizeContext';
|
|
import type { ColProps } from '../grid/col';
|
|
import type { FormContextProps } from './context';
|
|
import { FormContext } from './context';
|
|
import useForm, { type FormInstance } from './hooks/useForm';
|
|
import type { FormLabelAlign } from './interface';
|
|
|
|
import useStyle from './style';
|
|
|
|
export type RequiredMark = boolean | 'optional';
|
|
export type FormLayout = 'horizontal' | 'inline' | 'vertical';
|
|
|
|
export interface FormProps<Values = any> extends Omit<RcFormProps<Values>, 'form'> {
|
|
prefixCls?: string;
|
|
colon?: boolean;
|
|
name?: string;
|
|
layout?: FormLayout;
|
|
labelAlign?: FormLabelAlign;
|
|
labelWrap?: boolean;
|
|
labelCol?: ColProps;
|
|
wrapperCol?: ColProps;
|
|
form?: FormInstance<Values>;
|
|
size?: SizeType;
|
|
disabled?: boolean;
|
|
scrollToFirstError?: Options | boolean;
|
|
requiredMark?: RequiredMark;
|
|
/** @deprecated Will warning in future branch. Pls use `requiredMark` instead. */
|
|
hideRequiredMark?: boolean;
|
|
}
|
|
|
|
const InternalForm: React.ForwardRefRenderFunction<FormInstance, FormProps> = (props, ref) => {
|
|
const contextSize = React.useContext(SizeContext);
|
|
const contextDisabled = React.useContext(DisabledContext);
|
|
const { getPrefixCls, direction, form: contextForm } = React.useContext(ConfigContext);
|
|
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className = '',
|
|
size = contextSize,
|
|
disabled = contextDisabled,
|
|
form,
|
|
colon,
|
|
labelAlign,
|
|
labelWrap,
|
|
labelCol,
|
|
wrapperCol,
|
|
hideRequiredMark,
|
|
layout = 'horizontal',
|
|
scrollToFirstError,
|
|
requiredMark,
|
|
onFinishFailed,
|
|
name,
|
|
...restFormProps
|
|
} = props;
|
|
|
|
const mergedRequiredMark = useMemo(() => {
|
|
if (requiredMark !== undefined) {
|
|
return requiredMark;
|
|
}
|
|
|
|
if (contextForm && contextForm.requiredMark !== undefined) {
|
|
return contextForm.requiredMark;
|
|
}
|
|
|
|
if (hideRequiredMark) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}, [hideRequiredMark, requiredMark, contextForm]);
|
|
|
|
const mergedColon = colon ?? contextForm?.colon;
|
|
|
|
const prefixCls = getPrefixCls('form', customizePrefixCls);
|
|
|
|
// Style
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
const formClassName = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-${layout}`]: true,
|
|
[`${prefixCls}-hide-required-mark`]: mergedRequiredMark === false,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-${size}`]: size,
|
|
},
|
|
hashId,
|
|
className,
|
|
);
|
|
|
|
const [wrapForm] = useForm(form);
|
|
const { __INTERNAL__ } = wrapForm;
|
|
__INTERNAL__.name = name;
|
|
|
|
const formContextValue = useMemo<FormContextProps>(
|
|
() => ({
|
|
name,
|
|
labelAlign,
|
|
labelCol,
|
|
labelWrap,
|
|
wrapperCol,
|
|
vertical: layout === 'vertical',
|
|
colon: mergedColon,
|
|
requiredMark: mergedRequiredMark,
|
|
itemRef: __INTERNAL__.itemRef,
|
|
form: wrapForm,
|
|
}),
|
|
[name, labelAlign, labelCol, wrapperCol, layout, mergedColon, mergedRequiredMark, wrapForm],
|
|
);
|
|
|
|
React.useImperativeHandle(ref, () => wrapForm);
|
|
|
|
const onInternalFinishFailed = (errorInfo: ValidateErrorEntity) => {
|
|
onFinishFailed?.(errorInfo);
|
|
|
|
let defaultScrollToFirstError: Options = { block: 'nearest' };
|
|
|
|
if (scrollToFirstError && errorInfo.errorFields.length) {
|
|
if (typeof scrollToFirstError === 'object') {
|
|
defaultScrollToFirstError = scrollToFirstError;
|
|
}
|
|
wrapForm.scrollToField(errorInfo.errorFields[0].name, defaultScrollToFirstError);
|
|
}
|
|
};
|
|
|
|
return wrapSSR(
|
|
<DisabledContextProvider disabled={disabled}>
|
|
<SizeContextProvider size={size}>
|
|
<FormContext.Provider value={formContextValue}>
|
|
<FieldForm
|
|
id={name}
|
|
{...restFormProps}
|
|
name={name}
|
|
onFinishFailed={onInternalFinishFailed}
|
|
form={wrapForm}
|
|
className={formClassName}
|
|
/>
|
|
</FormContext.Provider>
|
|
</SizeContextProvider>
|
|
</DisabledContextProvider>,
|
|
);
|
|
};
|
|
|
|
const Form = React.forwardRef<FormInstance, FormProps>(InternalForm) as <Values = any>(
|
|
props: React.PropsWithChildren<FormProps<Values>> & { ref?: React.Ref<FormInstance<Values>> },
|
|
) => React.ReactElement;
|
|
|
|
export { useForm, List, type FormInstance, useWatch };
|
|
|
|
export default Form;
|
|
|