You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.4 KiB

9 years ago
import React from 'react';
import ReactDOM from 'react-dom';
import Animate from 'rc-animate';
9 years ago
import Icon from '../icon';
import classNames from 'classnames';
9 years ago
export default React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-alert',
showIcon: false,
9 years ago
onClose() {},
type: 'info',
};
9 years ago
},
getInitialState() {
return {
closing: true,
closed: false
};
9 years ago
},
handleClose(e) {
e.preventDefault();
let dom = ReactDOM.findDOMNode(this);
dom.style.height = `${dom.offsetHeight}px`;
// Magic code
// 重复一次后才能正确设置 height
dom.style.height = `${dom.offsetHeight}px`;
this.setState({
closing: false
});
this.props.onClose.call(this, e);
},
animationEnd() {
9 years ago
this.setState({
closed: true,
closing: true
9 years ago
});
},
render() {
let {
closable, description, type, prefixCls, message, closeText, showIcon
} = this.props;
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';
9 years ago
}
// use outline icon in alert with description
if (!!description) {
iconType += '-o';
}
let alertCls = classNames({
[prefixCls]: true,
[`${prefixCls}-${type}`]: true,
[`${prefixCls}-close`]: !this.state.closing,
[`${prefixCls}-with-description`]: !!description,
[`${prefixCls}-no-icon`]: !showIcon,
});
// closeable when closeText is assigned
if (closeText) {
closable = true;
9 years ago
}
return this.state.closed ? null : (
<Animate component=""
showProp="data-show"
transitionName="slide-up"
onEnd={this.animationEnd}>
<div data-show={this.state.closing} className={alertCls}>
{showIcon ? <Icon className="ant-alert-icon" type={iconType} /> : null}
<span className={`${prefixCls}-message`}>{message}</span>
<span className={`${prefixCls}-description`}>{description}</span>
{closable ? <a onClick={this.handleClose} className={`${prefixCls}-close-icon`}>
{closeText || <Icon type="cross" />}
</a> : null}
</div>
</Animate>
);
9 years ago
}
});