mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-05 07:26:56 +08:00

* feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
105 lines
2.9 KiB
TypeScript
105 lines
2.9 KiB
TypeScript
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { Loading, CloseCircleFilled, CheckCircleFilled, ExclamationCircleFilled } from '@ant-design/icons';
|
|
import CSSMotion from 'rc-animate/lib/CSSMotion';
|
|
|
|
import Col, { ColProps } from '../grid/col';
|
|
import { ValidateStatus } from './FormItem';
|
|
import { FormContext } from './context';
|
|
import { useCacheErrors } from './util';
|
|
|
|
interface FormItemInputMiscProps {
|
|
prefixCls: string;
|
|
children: React.ReactNode;
|
|
errors: React.ReactNode[];
|
|
touched: boolean;
|
|
validating: boolean;
|
|
hasFeedback?: boolean;
|
|
validateStatus?: ValidateStatus;
|
|
onDomErrorVisibleChange: (visible: boolean) => void;
|
|
}
|
|
|
|
export interface FormItemInputProps {
|
|
wrapperCol?: ColProps;
|
|
help?: React.ReactNode;
|
|
extra?: React.ReactNode;
|
|
}
|
|
|
|
const iconMap: { [key: string]: any } = {
|
|
success: CheckCircleFilled,
|
|
warning: ExclamationCircleFilled,
|
|
error: CloseCircleFilled,
|
|
validating: Loading,
|
|
}
|
|
|
|
const FormItemInput: React.FC<FormItemInputProps & FormItemInputMiscProps> = ({
|
|
prefixCls,
|
|
wrapperCol,
|
|
children,
|
|
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);
|
|
|
|
const [visible, cacheErrors] = useCacheErrors(errors, changedVisible => {
|
|
if (changedVisible) {
|
|
onDomErrorVisibleChange(true);
|
|
}
|
|
});
|
|
|
|
// Should provides additional icon if `hasFeedback`
|
|
// const iconType = getIconType(validateStatus);
|
|
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`}>
|
|
{children}
|
|
{icon}
|
|
</div>
|
|
<CSSMotion
|
|
visible={visible}
|
|
motionName="show-help"
|
|
onLeaveEnd={() => {
|
|
onDomErrorVisibleChange(false);
|
|
}}
|
|
motionAppear
|
|
removeOnLeave
|
|
>
|
|
{({ className: motionClassName }: { className: string }) => {
|
|
return (
|
|
<div className={classNames(`${baseClassName}-explain`, motionClassName)} key="help">
|
|
{cacheErrors}
|
|
</div>
|
|
);
|
|
}}
|
|
</CSSMotion>
|
|
{extra && <div className={`${baseClassName}-extra`}>{extra}</div>}
|
|
</Col>
|
|
</FormContext.Provider>
|
|
);
|
|
};
|
|
|
|
export default FormItemInput;
|