|
|
|
import * as React from 'react';
|
|
|
|
import CloseOutlined from '@ant-design/icons/CloseOutlined';
|
|
|
|
import CheckCircleOutlined from '@ant-design/icons/CheckCircleOutlined';
|
|
|
|
import ExclamationCircleOutlined from '@ant-design/icons/ExclamationCircleOutlined';
|
|
|
|
import InfoCircleOutlined from '@ant-design/icons/InfoCircleOutlined';
|
|
|
|
import CloseCircleOutlined from '@ant-design/icons/CloseCircleOutlined';
|
|
|
|
import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled';
|
|
|
|
import ExclamationCircleFilled from '@ant-design/icons/ExclamationCircleFilled';
|
|
|
|
import InfoCircleFilled from '@ant-design/icons/InfoCircleFilled';
|
|
|
|
import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled';
|
|
|
|
import CSSMotion from 'rc-motion';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
|
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
import getDataOrAriaProps from '../_util/getDataOrAriaProps';
|
|
|
|
import ErrorBoundary from './ErrorBoundary';
|
|
|
|
import { replaceElement } from '../_util/reactNode';
|
|
|
|
|
|
|
|
export interface AlertProps {
|
|
|
|
/**
|
|
|
|
* Type of Alert styles, options:`success`, `info`, `warning`, `error`
|
|
|
|
*/
|
|
|
|
type?: 'success' | 'info' | 'warning' | 'error';
|
|
|
|
/** Whether Alert can be closed */
|
|
|
|
closable?: boolean;
|
|
|
|
/** Close text to show */
|
|
|
|
closeText?: React.ReactNode;
|
|
|
|
/** Content of Alert */
|
|
|
|
message: React.ReactNode;
|
|
|
|
/** Additional content of Alert */
|
|
|
|
description?: React.ReactNode;
|
|
|
|
/** Callback when close Alert */
|
|
|
|
onClose?: React.MouseEventHandler<HTMLButtonElement>;
|
|
|
|
/** Trigger when animation ending of Alert */
|
|
|
|
afterClose?: () => void;
|
|
|
|
/** Whether to show icon */
|
|
|
|
showIcon?: boolean;
|
|
|
|
/** https://www.w3.org/TR/2014/REC-html5-20141028/dom.html#aria-role-attribute */
|
|
|
|
role?: string;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
|
|
|
banner?: boolean;
|
|
|
|
icon?: React.ReactNode;
|
|
|
|
action?: React.ReactNode;
|
|
|
|
onMouseEnter?: React.MouseEventHandler<HTMLDivElement>;
|
|
|
|
onMouseLeave?: React.MouseEventHandler<HTMLDivElement>;
|
|
|
|
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const iconMapFilled = {
|
|
|
|
success: CheckCircleFilled,
|
|
|
|
info: InfoCircleFilled,
|
|
|
|
error: CloseCircleFilled,
|
|
|
|
warning: ExclamationCircleFilled,
|
|
|
|
};
|
|
|
|
|
|
|
|
const iconMapOutlined = {
|
|
|
|
success: CheckCircleOutlined,
|
|
|
|
info: InfoCircleOutlined,
|
|
|
|
error: CloseCircleOutlined,
|
|
|
|
warning: ExclamationCircleOutlined,
|
|
|
|
};
|
|
|
|
|
|
|
|
interface AlertInterface extends React.FC<AlertProps> {
|
|
|
|
ErrorBoundary: typeof ErrorBoundary;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Alert: AlertInterface = ({
|
|
|
|
description,
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
message,
|
|
|
|
banner,
|
|
|
|
className = '',
|
|
|
|
style,
|
|
|
|
onMouseEnter,
|
|
|
|
onMouseLeave,
|
|
|
|
onClick,
|
|
|
|
afterClose,
|
|
|
|
showIcon,
|
|
|
|
closable,
|
|
|
|
closeText,
|
|
|
|
action,
|
|
|
|
...props
|
|
|
|
}) => {
|
|
|
|
const [closed, setClosed] = React.useState(false);
|
|
|
|
|
|
|
|
const ref = React.useRef<HTMLElement>();
|
|
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
|
|
const prefixCls = getPrefixCls('alert', customizePrefixCls);
|
|
|
|
|
|
|
|
const handleClose = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
|
|
setClosed(true);
|
|
|
|