import * as React from 'react'; import * as ReactDOM from 'react-dom'; import Animate from 'rc-animate'; import Icon from '../icon'; import classNames from 'classnames'; 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; /** Whether to show icon */ showIcon?: boolean; style?: React.CSSProperties; prefixCls?: string; className?: string; banner?: boolean; } export default class Alert extends React.Component { constructor(props: AlertProps) { super(props); this.state = { closing: true, closed: false, }; } handleClose = (e: React.MouseEvent) => { e.preventDefault(); let dom = ReactDOM.findDOMNode(this) as HTMLElement; dom.style.height = `${dom.offsetHeight}px`; // Magic code // 重复一次后才能正确设置 height dom.style.height = `${dom.offsetHeight}px`; this.setState({ closing: false, }); (this.props.onClose || noop)(e); } animationEnd = () => { this.setState({ closed: true, closing: true, }); } render() { let { closable, description, type, prefixCls = 'ant-alert', message, closeText, showIcon, banner, className = '', style, } = this.props; // banner模式默认有 Icon showIcon = banner && showIcon === undefined ? true : showIcon; // banner模式默认为警告 type = banner && type === undefined ? 'warning' : type || 'info'; let iconType = ''; switch (type) { case 'success': iconType = 'check-circle'; break; case 'info': iconType = 'info-circle'; break; case 'error': iconType = 'cross-circle'; break; case 'warning': iconType = 'exclamation-circle'; break; default: iconType = 'default'; } // use outline icon in alert with description if (!!description) { iconType += '-o'; } let alertCls = classNames(prefixCls, { [`${prefixCls}-${type}`]: true, [`${prefixCls}-close`]: !this.state.closing, [`${prefixCls}-with-description`]: !!description, [`${prefixCls}-no-icon`]: !showIcon, [`${prefixCls}-banner`]: !!banner, }, className); // closeable when closeText is assigned if (closeText) { closable = true; } const closeIcon = closable ? ( {closeText || } ) : null; return this.state.closed ? null : (
{showIcon ? : null} {message} {description} {closeIcon}
); } }