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.
134 lines
3.7 KiB
134 lines
3.7 KiB
import classNames from 'classnames';
|
|
import CSSMotion, { CSSMotionList } from 'rc-motion';
|
|
import * as React from 'react';
|
|
import { useMemo } from 'react';
|
|
import initCollapseMotion from '../_util/motion';
|
|
import { FormItemPrefixContext } from './context';
|
|
import type { ValidateStatus } from './FormItem';
|
|
import useDebounce from './hooks/useDebounce';
|
|
|
|
import useStyle from './style';
|
|
|
|
const EMPTY_LIST: React.ReactNode[] = [];
|
|
|
|
interface ErrorEntity {
|
|
error: React.ReactNode;
|
|
errorStatus?: ValidateStatus;
|
|
key: string;
|
|
}
|
|
|
|
function toErrorEntity(
|
|
error: React.ReactNode,
|
|
prefix: string,
|
|
errorStatus?: ValidateStatus,
|
|
index: number = 0,
|
|
): ErrorEntity {
|
|
return {
|
|
key: typeof error === 'string' ? error : `${prefix}-${index}`,
|
|
error,
|
|
errorStatus,
|
|
};
|
|
}
|
|
|
|
export interface ErrorListProps {
|
|
fieldId?: string;
|
|
help?: React.ReactNode;
|
|
helpStatus?: ValidateStatus;
|
|
errors?: React.ReactNode[];
|
|
warnings?: React.ReactNode[];
|
|
className?: string;
|
|
onVisibleChanged?: (visible: boolean) => void;
|
|
}
|
|
|
|
export default function ErrorList({
|
|
help,
|
|
helpStatus,
|
|
errors = EMPTY_LIST,
|
|
warnings = EMPTY_LIST,
|
|
className: rootClassName,
|
|
fieldId,
|
|
onVisibleChanged,
|
|
}: ErrorListProps) {
|
|
const { prefixCls } = React.useContext(FormItemPrefixContext);
|
|
|
|
const baseClassName = `${prefixCls}-item-explain`;
|
|
|
|
const [, hashId] = useStyle(prefixCls);
|
|
|
|
const collapseMotion = useMemo(() => initCollapseMotion(prefixCls), [prefixCls]);
|
|
|
|
// We have to debounce here again since somewhere use ErrorList directly still need no shaking
|
|
// ref: https://github.com/ant-design/ant-design/issues/36336
|
|
const debounceErrors = useDebounce(errors);
|
|
const debounceWarnings = useDebounce(warnings);
|
|
|
|
const fullKeyList = React.useMemo<ErrorEntity[]>(() => {
|
|
if (help !== undefined && help !== null) {
|
|
return [toErrorEntity(help, 'help', helpStatus)];
|
|
}
|
|
|
|
return [
|
|
...debounceErrors.map((error, index) => toErrorEntity(error, 'error', 'error', index)),
|
|
...debounceWarnings.map((warning, index) =>
|
|
toErrorEntity(warning, 'warning', 'warning', index),
|
|
),
|
|
];
|
|
}, [help, helpStatus, debounceErrors, debounceWarnings]);
|
|
|
|
const helpProps: { id?: string } = {};
|
|
|
|
if (fieldId) {
|
|
helpProps.id = `${fieldId}_help`;
|
|
}
|
|
|
|
return (
|
|
<CSSMotion
|
|
motionDeadline={collapseMotion.motionDeadline}
|
|
motionName={`${prefixCls}-show-help`}
|
|
visible={!!fullKeyList.length}
|
|
onVisibleChanged={onVisibleChanged}
|
|
>
|
|
{(holderProps) => {
|
|
const { className: holderClassName, style: holderStyle } = holderProps;
|
|
|
|
return (
|
|
<div
|
|
{...helpProps}
|
|
className={classNames(baseClassName, holderClassName, rootClassName, hashId)}
|
|
style={holderStyle}
|
|
role="alert"
|
|
>
|
|
<CSSMotionList
|
|
keys={fullKeyList}
|
|
{...initCollapseMotion(prefixCls)}
|
|
motionName={`${prefixCls}-show-help-item`}
|
|
component={false}
|
|
>
|
|
{(itemProps) => {
|
|
const {
|
|
key,
|
|
error,
|
|
errorStatus,
|
|
className: itemClassName,
|
|
style: itemStyle,
|
|
} = itemProps;
|
|
|
|
return (
|
|
<div
|
|
key={key}
|
|
className={classNames(itemClassName, {
|
|
[`${baseClassName}-${errorStatus}`]: errorStatus,
|
|
})}
|
|
style={itemStyle}
|
|
>
|
|
{error}
|
|
</div>
|
|
);
|
|
}}
|
|
</CSSMotionList>
|
|
</div>
|
|
);
|
|
}}
|
|
</CSSMotion>
|
|
);
|
|
}
|
|
|