mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-21 10:31:10 +08:00

Some checks failed
Publish Any Commit / build (push) Has been cancelled
🔀 Sync mirror to Gitee / mirror (push) Has been cancelled
✅ test / lint (push) Has been cancelled
✅ test / test-react-legacy (16, 1/2) (push) Has been cancelled
✅ test / test-react-legacy (16, 2/2) (push) Has been cancelled
✅ test / test-react-legacy (17, 1/2) (push) Has been cancelled
✅ test / test-react-legacy (17, 2/2) (push) Has been cancelled
✅ test / test-node (push) Has been cancelled
✅ test / test-react-latest (dom, 1/2) (push) Has been cancelled
✅ test / test-react-latest (dom, 2/2) (push) Has been cancelled
✅ test / build (push) Has been cancelled
✅ test / test lib/es module (es, 1/2) (push) Has been cancelled
✅ test / test lib/es module (es, 2/2) (push) Has been cancelled
✅ test / test lib/es module (lib, 1/2) (push) Has been cancelled
✅ test / test lib/es module (lib, 2/2) (push) Has been cancelled
👁️ Visual Regression Persist Start / test image (push) Has been cancelled
✅ test / test-react-latest-dist (dist, 1/2) (push) Has been cancelled
✅ test / test-react-latest-dist (dist, 2/2) (push) Has been cancelled
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Has been cancelled
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Has been cancelled
✅ test / test-coverage (push) Has been cancelled
* feat: notification support actions * fix * fix
138 lines
4.3 KiB
TypeScript
138 lines
4.3 KiB
TypeScript
import * as React from 'react';
|
|
import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
import InfoCircleFilled from '@ant-design/icons/InfoCircleFilled';
|
|
import LoadingOutlined from '@ant-design/icons/LoadingOutlined';
|
|
import classNames from 'classnames';
|
|
import { Notice } from 'rc-notification';
|
|
import type { NoticeProps } from 'rc-notification/lib/Notice';
|
|
|
|
import { devUseWarning } from '../_util/warning';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useCSSVarCls from '../config-provider/hooks/useCSSVarCls';
|
|
import type { IconType } from './interface';
|
|
import useStyle from './style';
|
|
import PurePanelStyle from './style/pure-panel';
|
|
|
|
export const TypeIcon = {
|
|
info: <InfoCircleFilled />,
|
|
success: <CheckCircleFilled />,
|
|
error: <CloseCircleFilled />,
|
|
warning: <ExclamationCircleFilled />,
|
|
loading: <LoadingOutlined />,
|
|
};
|
|
|
|
export function getCloseIcon(prefixCls: string, closeIcon?: React.ReactNode): React.ReactNode {
|
|
if (closeIcon === null || closeIcon === false) {
|
|
return null;
|
|
}
|
|
return closeIcon || <CloseOutlined className={`${prefixCls}-close-icon`} />;
|
|
}
|
|
|
|
export interface PureContentProps {
|
|
prefixCls: string;
|
|
icon?: React.ReactNode;
|
|
message?: React.ReactNode;
|
|
description?: React.ReactNode;
|
|
/** @deprecated Please use `actions` instead */
|
|
btn?: React.ReactNode;
|
|
actions?: React.ReactNode;
|
|
type?: IconType;
|
|
role?: 'alert' | 'status';
|
|
}
|
|
|
|
const typeToIcon = {
|
|
success: CheckCircleFilled,
|
|
info: InfoCircleFilled,
|
|
error: CloseCircleFilled,
|
|
warning: ExclamationCircleFilled,
|
|
};
|
|
|
|
export const PureContent: React.FC<PureContentProps> = (props) => {
|
|
const { prefixCls, icon, type, message, description, actions, role = 'alert' } = props;
|
|
let iconNode: React.ReactNode = null;
|
|
if (icon) {
|
|
iconNode = <span className={`${prefixCls}-icon`}>{icon}</span>;
|
|
} else if (type) {
|
|
iconNode = React.createElement(typeToIcon[type] || null, {
|
|
className: classNames(`${prefixCls}-icon`, `${prefixCls}-icon-${type}`),
|
|
});
|
|
}
|
|
return (
|
|
<div className={classNames({ [`${prefixCls}-with-icon`]: iconNode })} role={role}>
|
|
{iconNode}
|
|
<div className={`${prefixCls}-message`}>{message}</div>
|
|
<div className={`${prefixCls}-description`}>{description}</div>
|
|
{actions && <div className={`${prefixCls}-actions`}>{actions}</div>}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export interface PurePanelProps
|
|
extends Omit<NoticeProps, 'prefixCls' | 'eventKey'>,
|
|
Omit<PureContentProps, 'prefixCls' | 'children'> {
|
|
prefixCls?: string;
|
|
}
|
|
|
|
/** @private Internal Component. Do not use in your production. */
|
|
const PurePanel: React.FC<PurePanelProps> = (props) => {
|
|
const {
|
|
prefixCls: staticPrefixCls,
|
|
className,
|
|
icon,
|
|
type,
|
|
message,
|
|
description,
|
|
btn,
|
|
actions,
|
|
closable = true,
|
|
closeIcon,
|
|
className: notificationClassName,
|
|
...restProps
|
|
} = props;
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const mergedActions = actions ?? btn;
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
const warning = devUseWarning('Notification');
|
|
warning.deprecated(!btn, 'btn', 'actions');
|
|
}
|
|
const prefixCls = staticPrefixCls || getPrefixCls('notification');
|
|
const noticePrefixCls = `${prefixCls}-notice`;
|
|
|
|
const rootCls = useCSSVarCls(prefixCls);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls, rootCls);
|
|
|
|
return wrapCSSVar(
|
|
<div
|
|
className={classNames(`${noticePrefixCls}-pure-panel`, hashId, className, cssVarCls, rootCls)}
|
|
>
|
|
<PurePanelStyle prefixCls={prefixCls} />
|
|
<Notice
|
|
{...restProps}
|
|
prefixCls={prefixCls}
|
|
eventKey="pure"
|
|
duration={null}
|
|
closable={closable}
|
|
className={classNames({
|
|
notificationClassName,
|
|
})}
|
|
closeIcon={getCloseIcon(prefixCls, closeIcon)}
|
|
content={
|
|
<PureContent
|
|
prefixCls={noticePrefixCls}
|
|
icon={icon}
|
|
type={type}
|
|
message={message}
|
|
description={description}
|
|
actions={mergedActions}
|
|
/>
|
|
}
|
|
/>
|
|
</div>,
|
|
);
|
|
};
|
|
|
|
export default PurePanel;
|