import * as React from 'react'; import * as ReactDOM from 'react-dom'; 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 Animate from 'rc-animate'; import classNames from 'classnames'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; import getDataOrAriaProps from '../_util/getDataOrAriaProps'; import ErrorBoundary from './ErrorBoundary'; function noop() {} 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; /** Trigger when animation ending of Alert */ afterClose?: () => void; /** Whether to show icon */ showIcon?: boolean; style?: React.CSSProperties; prefixCls?: string; className?: string; banner?: boolean; icon?: React.ReactNode; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; onClick?: React.MouseEventHandler; } export interface AlertState { closing: boolean; closed: boolean; } const iconMapFilled = { success: CheckCircleFilled, info: InfoCircleFilled, error: CloseCircleFilled, warning: ExclamationCircleFilled, }; const iconMapOutlined = { success: CheckCircleOutlined, info: InfoCircleOutlined, error: CloseCircleOutlined, warning: ExclamationCircleOutlined, }; export default class Alert extends React.Component { static ErrorBoundary = ErrorBoundary; state = { closing: false, closed: false, }; handleClose = (e: React.MouseEvent) => { e.preventDefault(); const dom = ReactDOM.findDOMNode(this) as HTMLElement; dom.style.height = `${dom.offsetHeight}px`; // Magic code // 重复一次后才能正确设置 height dom.style.height = `${dom.offsetHeight}px`; this.setState({ closing: true, }); (this.props.onClose || noop)(e); }; animationEnd = () => { this.setState({ closing: false, closed: true, }); (this.props.afterClose || noop)(); }; renderAlert = ({ getPrefixCls, direction }: ConfigConsumerProps) => { const { description, prefixCls: customizePrefixCls, message, closeText, banner, className = '', style, icon, onMouseEnter, onMouseLeave, onClick, } = this.props; let { closable, type, showIcon } = this.props; const { closing, closed } = this.state; const prefixCls = getPrefixCls('alert', customizePrefixCls); // banner模式默认有 Icon showIcon = banner && showIcon === undefined ? true : showIcon; // banner模式默认为警告 type = banner && type === undefined ? 'warning' : type || 'info'; // use outline icon in alert with description const iconType = (description ? iconMapOutlined : iconMapFilled)[type] || null; // closeable when closeText is assigned if (closeText) { closable = true; } const alertCls = classNames( prefixCls, `${prefixCls}-${type}`, { [`${prefixCls}-closing`]: closing, [`${prefixCls}-with-description`]: !!description, [`${prefixCls}-no-icon`]: !showIcon, [`${prefixCls}-banner`]: !!banner, [`${prefixCls}-closable`]: closable, [`${prefixCls}-rtl`]: direction === 'rtl', }, className, ); const closeIcon = closable ? ( ) : null; const dataOrAriaProps = getDataOrAriaProps(this.props); const iconNode = (icon && (React.isValidElement<{ className?: string }>(icon) ? ( React.cloneElement(icon, { className: classNames(`${prefixCls}-icon`, { [icon.props.className as string]: icon.props.className, }), }) ) : ( {icon} ))) || React.createElement(iconType, { className: `${prefixCls}-icon` }); return closed ? null : (
{showIcon ? iconNode : null} {message} {description} {closeIcon}
); }; render() { return {this.renderAlert}; } }