import React from 'react'; import Animate from 'rc-animate'; export default React.createClass({ getDefaultProps() { return { prefixCls: 'ant-alert' }; }, getInitialState() { return { closing: true, closed: false }; }, handleClose(e) { let dom = React.findDOMNode(this); dom.style.height = dom.offsetHeight + 'px'; // Magic code // 重复一次后才能正确设置 height dom.style.height = dom.offsetHeight + 'px'; this.setState({ closing: false }); if (this.props.onClose) { this.props.onClose.call(this, e); } }, animationEnd() { this.setState({ closed: true, closing: true }); }, render() { let iconClass = this.props.description ? 'ant-alert-with-description-icon anticon-' : 'ant-alert-icon anticon-'; switch (this.props.type) { case 'success': iconClass += 'check-circle'; break; case 'info': iconClass += 'info-circle'; break; case 'error': iconClass += 'exclamation-circle'; break; case 'warn': iconClass += 'question-circle'; break; default: iconClass += 'default'; } let html; let closeName = !this.state.closing ? ' ' + this.props.prefixCls + '-close' : ''; if (this.props.description) { let close = this.props.closable ? : ''; html =
{this.props.message}
{this.props.description} {close}