|
|
|
import classNames from 'classnames';
|
|
|
|
import React from 'react';
|
|
|
|
import type { ColProps } from '../grid/col';
|
|
|
|
import Col from '../grid/col';
|
|
|
|
import { FormContext, FormItemPrefixContext } from './context';
|
|
|
|
import ErrorList from './ErrorList';
|
|
|
|
import type { ValidateStatus } from './FormItem';
|
|
|
|
|
|
|
|
interface FormItemInputMiscProps {
|
|
|
|
prefixCls: string;
|
|
|
|
children: React.ReactNode;
|
|
|
|
errors: React.ReactNode[];
|
|
|
|
warnings: React.ReactNode[];
|
|
|
|
marginBottom?: number | null;
|
|
|
|
onErrorVisibleChanged?: (visible: boolean) => void;
|
|
|
|
/** @internal do not use in any of your production. */
|
|
|
|
_internalItemRender?: {
|
|
|
|
mark: string;
|
|
|
|
render: (
|
|
|
|
props: FormItemInputProps & FormItemInputMiscProps,
|
|
|
|
domList: {
|
|
|
|
input: JSX.Element;
|
|
|
|
errorList: JSX.Element | null;
|
|
|
|
extra: JSX.Element | null;
|
|
|
|
},
|
|
|
|
) => React.ReactNode;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface FormItemInputProps {
|
|
|
|
wrapperCol?: ColProps;
|
|
|
|
extra?: React.ReactNode;
|
|
|
|
status?: ValidateStatus;
|
|
|
|
help?: React.ReactNode;
|
|
|
|
fieldId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FormItemInput: React.FC<FormItemInputProps & FormItemInputMiscProps> = (props) => {
|
|
|
|
const {
|
|
|
|
prefixCls,
|
|
|
|
status,
|
|
|
|
wrapperCol,
|
|
|
|
children,
|
|
|
|
errors,
|
|
|
|
warnings,
|
|
|
|
_internalItemRender: formItemRender,
|
|
|
|
extra,
|
|
|
|
help,
|
|
|
|
fieldId,
|
|
|
|
marginBottom,
|
|
|
|
onErrorVisibleChanged,
|
|
|
|
} = props;
|
|
|
|
const baseClassName = `${prefixCls}-item`;
|
|
|
|
|
|
|
|
const formContext = React.useContext(FormContext);
|
|
|
|
|
|
|
|
const mergedWrapperCol: ColProps = wrapperCol || formContext.wrapperCol || {};
|
|
|
|
|
|
|
|
const className = classNames(`${baseClassName}-control`, mergedWrapperCol.className);
|
|
|
|
|
|
|
|
// Pass to sub FormItem should not with col info
|
|
|
|
const subFormContext = React.useMemo(() => ({ ...formContext }), [formContext]);
|
|
|
|
delete subFormContext.labelCol;
|
|
|
|
delete subFormContext.wrapperCol;
|
|
|
|
|
|
|
|
const inputDom = (
|
|
|
|
<div className={`${baseClassName}-control-input`}>
|
|
|
|
<div className={`${baseClassName}-control-input-content`}>{children}</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
const formItemContext = React.useMemo(() => ({ prefixCls, status }), [prefixCls, status]);
|
|
|
|
const errorListDom =
|
|
|
|
marginBottom !== null || errors.length || warnings.length ? (
|
|
|
|
<div style={{ display: 'flex', flexWrap: 'nowrap' }}>
|
|
|
|
<FormItemPrefixContext.Provider value={formItemContext}>
|
|
|
|
<ErrorList
|
|
|
|
fieldId={fieldId}
|
|
|
|
errors={errors}
|
|
|
|
warnings={warnings}
|
|
|
|
help={help}
|
|
|
|
helpStatus={status}
|
|
|
|
className={`${baseClassName}-explain-connected`}
|
|
|
|
onVisibleChanged={onErrorVisibleChanged}
|
|
|
|
/>
|
|
|
|
</FormItemPrefixContext.Provider>
|
|
|
|
{!!marginBottom && <div style={{ width: 0, height: marginBottom }} />}
|
|
|
|
</div>
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
const extraProps: { id?: string } = {};
|
|
|
|
|
|
|
|
if (fieldId) {
|
|
|
|
extraProps.id = `${fieldId}_extra`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If extra = 0, && will goes wrong
|
|
|
|
// 0&&error -> 0
|
|
|
|
const extraDom = extra ? (
|
|
|
|
<div {...extraProps} className={`${baseClassName}-extra`}>
|
|
|
|
{extra}
|
|
|
|
</div>
|
|
|
|
) : null;
|
|
|
|
|
|
|
|
const dom =
|
|
|
|
formItemRender && formItemRender.mark === 'pro_table_render' && formItemRender.render ? (
|
|
|
|
formItemRender.render(props, { input: inputDom, errorList: errorListDom, extra: extraDom })
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{inputDom}
|
|
|
|
{errorListDom}
|
|
|
|
{extraDom}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
return (
|
|
|
|
<FormContext.Provider value={subFormContext}>
|
|
|
|
<Col {...mergedWrapperCol} className={className}>
|
|
|
|
{dom}
|
|
|
|
</Col>
|
|
|
|
</FormContext.Provider>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default FormItemInput;
|