ant-design/components/alert/index.jsx

92 lines
2.2 KiB
React
Raw Normal View History

2015-07-27 20:53:08 +08:00
import React from 'react';
2015-10-21 17:59:57 +08:00
import ReactDOM from 'react-dom';
2015-08-20 13:06:47 +08:00
import Animate from 'rc-animate';
2015-11-20 11:05:34 +08:00
import Icon from '../icon';
import classNames from 'classnames';
2015-07-27 20:53:08 +08:00
export default React.createClass({
getDefaultProps() {
2015-07-29 18:44:56 +08:00
return {
prefixCls: 'ant-alert',
showIcon: false,
closeText: <Icon type="cross" />,
onClose() {}
2015-07-29 18:44:56 +08:00
};
2015-07-27 20:53:08 +08:00
},
2015-07-29 18:44:56 +08:00
getInitialState() {
return {
2015-08-20 13:06:47 +08:00
closing: true,
closed: false
2015-07-29 18:44:56 +08:00
};
2015-07-27 20:53:08 +08:00
},
2015-07-29 18:44:56 +08:00
handleClose(e) {
e.preventDefault();
2015-10-21 17:59:57 +08:00
let dom = ReactDOM.findDOMNode(this);
2015-08-20 13:06:47 +08:00
dom.style.height = dom.offsetHeight + 'px';
// Magic code
2015-08-20 13:17:17 +08:00
// 重复一次后才能正确设置 height
2015-08-20 13:06:47 +08:00
dom.style.height = dom.offsetHeight + 'px';
this.setState({
closing: false
});
this.props.onClose.call(this, e);
2015-08-20 13:06:47 +08:00
},
2015-08-20 13:17:17 +08:00
animationEnd() {
2015-07-27 20:53:08 +08:00
this.setState({
2015-08-20 13:06:47 +08:00
closed: true,
closing: true
2015-07-27 20:53:08 +08:00
});
},
2015-08-20 13:06:47 +08:00
render() {
let {
closable, description, type, prefixCls, message, closeText
} = this.props;
2015-10-02 14:21:02 +08:00
let iconType = '';
switch (type) {
2015-09-01 16:18:46 +08:00
case 'success':
2015-10-02 14:21:02 +08:00
iconType = 'check-circle';
2015-09-01 16:18:46 +08:00
break;
case 'info':
2015-10-02 14:21:02 +08:00
iconType = 'info-circle';
2015-09-01 16:18:46 +08:00
break;
case 'error':
2015-10-02 14:21:02 +08:00
iconType = 'exclamation-circle';
2015-09-01 16:18:46 +08:00
break;
case 'warn':
2015-10-02 14:21:02 +08:00
iconType = 'question-circle';
2015-09-01 16:18:46 +08:00
break;
default:
2015-10-02 14:21:02 +08:00
iconType = 'default';
2015-07-27 20:53:08 +08:00
}
let alertCls = classNames({
[prefixCls]: true,
[prefixCls + '-' + type]: true,
[prefixCls + '-close']: !this.state.closing,
[prefixCls + '-with-description']: !!description,
});
if (closeText) {
closable = true;
2015-07-27 20:53:08 +08:00
}
return this.state.closed ? null : (
<Animate component=""
showProp="data-show"
transitionName="slide-up"
onEnd={this.animationEnd}>
<div data-show={this.state.closing} className={alertCls}>
<Icon className="ant-alert-icon" type={iconType} />
<span className={prefixCls + '-message'}>{message}</span>
<span className={prefixCls + '-description'}>{description}</span>
{closable ? <a onClick={this.handleClose} className={prefixCls + '-close-icon'}>
{closeText}
</a> : null}
</div>
</Animate>
);
2015-07-27 20:53:08 +08:00
}
});