|
|
|
import * as React from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
|
|
import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
|
|
|
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
|
|
|
|
|
|
import Col, { ColProps } from '../grid/col';
|
|
|
|
import { ValidateStatus } from './FormItem';
|
|
|
|
import { FormContext, FormItemPrefixContext } from './context';
|
|
|
|
import ErrorList from './ErrorList';
|
|
|
|
|
|
|
|
interface FormItemInputMiscProps {
|
|
|
|
prefixCls: string;
|
|
|
|
children: React.ReactNode;
|
|
|
|
errors: React.ReactNode[];
|
|
|
|
hasFeedback?: boolean;
|
|
|
|
validateStatus?: ValidateStatus;
|
|
|
|
onDomErrorVisibleChange: (visible: boolean) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface FormItemInputProps {
|
|
|
|
wrapperCol?: ColProps;
|
|
|
|
help?: React.ReactNode;
|
|
|
|
extra?: React.ReactNode;
|
|
|
|
status?: ValidateStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
const iconMap: { [key: string]: any } = {
|
|
|
|
success: CheckCircleFilled,
|
|
|
|
warning: ExclamationCircleFilled,
|
|
|
|
error: CloseCircleFilled,
|
|
|
|
validating: LoadingOutlined,
|
|
|
|
};
|
|
|
|
|
|
|
|
const FormItemInput: React.FC<FormItemInputProps & FormItemInputMiscProps> = ({
|
|
|
|
prefixCls,
|
|
|
|
status,
|
|
|
|
wrapperCol,
|
|
|
|
children,
|
|
|
|
help,
|
|
|
|
errors,
|
|
|
|
onDomErrorVisibleChange,
|
|
|
|
hasFeedback,
|
|
|
|
validateStatus,
|
|
|
|
extra,
|
|
|
|
}) => {
|
|
|
|
const baseClassName = `${prefixCls}-item`;
|
|
|
|
|
|
|
|
const formContext = React.useContext(FormContext);
|
|
|
|
|
|
|
|
const mergedWrapperCol: ColProps = wrapperCol || formContext.wrapperCol || {};
|
|
|
|
|
|
|
|
const className = classNames(`${baseClassName}-control`, mergedWrapperCol.className);
|
|
|
|
|
|
|
|
React.useEffect(
|
|
|
|
() => () => {
|
|
|
|
onDomErrorVisibleChange(false);
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
);
|
|
|
|
|
|
|
|
// Should provides additional icon if `hasFeedback`
|
|
|
|
const IconNode = validateStatus && iconMap[validateStatus];
|
|
|
|
const icon =
|
|
|
|
hasFeedback && IconNode ? (
|
|
|
|
<span className={`${baseClassName}-children-icon`}>
|
|
|
|
<IconNode />
|
|
|
|
</span>
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
// Pass to sub FormItem should not with col info
|
|
|
|
const subFormContext = { ...formContext };
|
|
|
|
delete subFormContext.labelCol;
|
|
|
|
delete subFormContext.wrapperCol;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FormContext.Provider value={subFormContext}>
|
|
|
|
<Col {...mergedWrapperCol} className={className}>
|
|
|
|
<div className={`${baseClassName}-control-input`}>
|
|
|
|
<div className={`${baseClassName}-control-input-content`}>{children}</div>
|
|
|
|
{icon}
|
|
|
|
</div>
|
|
|
|
<FormItemPrefixContext.Provider value={{ prefixCls, status }}>
|
|
|
|
<ErrorList
|
|
|
|
errors={errors}
|
|
|
|
help={help}
|
|
|
|
onDomErrorVisibleChange={onDomErrorVisibleChange}
|
|
|
|
/>
|
|
|
|
</FormItemPrefixContext.Provider>
|
|
|
|
{extra && <div className={`${baseClassName}-extra`}>{extra}</div>}
|
|
|
|
</Col>
|
|
|
|
</FormContext.Provider>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default FormItemInput;
|