mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
bb85712f71
* feat: Notification support aria-* in closable * feat: optimize code
74 lines
2.1 KiB
TypeScript
74 lines
2.1 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
import React from 'react';
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
import pickAttrs from 'rc-util/lib/pickAttrs';
|
|
|
|
export type ClosableType = boolean | ({ closeIcon?: React.ReactNode } & React.AriaAttributes);
|
|
|
|
export type UseClosableParams = {
|
|
closable?: ClosableType;
|
|
closeIcon?: ReactNode;
|
|
defaultClosable?: boolean;
|
|
defaultCloseIcon?: ReactNode;
|
|
customCloseIconRender?: (closeIcon: ReactNode) => ReactNode;
|
|
};
|
|
|
|
function useInnerClosable(
|
|
closable?: UseClosableParams['closable'],
|
|
closeIcon?: ReactNode,
|
|
defaultClosable?: boolean,
|
|
) {
|
|
if (typeof closable === 'boolean') {
|
|
return closable;
|
|
}
|
|
if (typeof closable === 'object') {
|
|
return true;
|
|
}
|
|
if (closeIcon === undefined) {
|
|
return !!defaultClosable;
|
|
}
|
|
return closeIcon !== false && closeIcon !== null;
|
|
}
|
|
|
|
function useClosable({
|
|
closable,
|
|
closeIcon,
|
|
customCloseIconRender,
|
|
defaultCloseIcon = <CloseOutlined />,
|
|
defaultClosable = false,
|
|
}: UseClosableParams): [closable: boolean, closeIcon: React.ReactNode | null] {
|
|
const mergedClosable = useInnerClosable(closable, closeIcon, defaultClosable);
|
|
|
|
if (!mergedClosable) {
|
|
return [false, null];
|
|
}
|
|
const { closeIcon: closableIcon, ...restProps } =
|
|
typeof closable === 'object'
|
|
? closable
|
|
: ({} as { closeIcon: React.ReactNode } & React.AriaAttributes);
|
|
// Priority: closable.closeIcon > closeIcon > defaultCloseIcon
|
|
const mergedCloseIcon: ReactNode = (() => {
|
|
if (typeof closable === 'object' && closableIcon !== undefined) {
|
|
return closableIcon;
|
|
}
|
|
return typeof closeIcon === 'boolean' || closeIcon === undefined || closeIcon === null
|
|
? defaultCloseIcon
|
|
: closeIcon;
|
|
})();
|
|
const ariaProps = pickAttrs(restProps, true);
|
|
|
|
const plainCloseIcon = customCloseIconRender
|
|
? customCloseIconRender(mergedCloseIcon)
|
|
: mergedCloseIcon;
|
|
|
|
const closeIconWithAria = React.isValidElement(plainCloseIcon) ? (
|
|
React.cloneElement(plainCloseIcon, ariaProps)
|
|
) : (
|
|
<span {...ariaProps}>{plainCloseIcon}</span>
|
|
);
|
|
|
|
return [true, closeIconWithAria];
|
|
}
|
|
|
|
export default useClosable;
|