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.

129 lines
3.4 KiB

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
function noop() {}
export interface AlertProps {
8 years ago
/**
* Type of Alert styles, options:`success`, `info`, `warning`, `error`
*/
8 years ago
type?: 'success' | 'info' | 'warning' | 'error';
8 years ago
/** 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 */
8 years ago
onClose?: React.MouseEventHandler<any>;
8 years ago
/** Whether to show icon */
showIcon?: boolean;
style?: React.CSSProperties;
prefixCls?: string;
className?: string;
8 years ago
banner?: boolean;
8 years ago
}
export default class Alert extends React.Component<AlertProps, any> {
constructor(props) {
super(props);
this.state = {
closing: true,
closed: false,
};
}
handleClose = (e) => {
e.preventDefault();
8 years ago
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 = () => {
9 years ago
this.setState({
closed: true,
closing: true,
9 years ago
});
}
render() {
let {
closable, description, type, prefixCls = 'ant-alert', message, closeText, showIcon, banner,
className = '', style,
} = this.props;
8 years ago
// banner模式默认有 Icon
showIcon = banner && showIcon === undefined ? true : showIcon;
8 years ago
// banner模式默认为警告
type = banner && type === undefined ? 'warning' : type || 'info';
8 years ago
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, {
[`${prefixCls}-${type}`]: true,
[`${prefixCls}-close`]: !this.state.closing,
[`${prefixCls}-with-description`]: !!description,
[`${prefixCls}-no-icon`]: !showIcon,
8 years ago
[`${prefixCls}-banner`]: !!banner,
}, className);
// closeable when closeText is assigned
if (closeText) {
closable = true;
9 years ago
}
const closeIcon = closable ? (
<a onClick={this.handleClose} className={`${prefixCls}-close-icon`}>
{closeText || <Icon type="cross" />}
</a>
) : null;
return this.state.closed ? null : (
<Animate
component=""
showProp="data-show"
transitionName={`${prefixCls}-slide-up`}
onEnd={this.animationEnd}
>
<div data-show={this.state.closing} className={alertCls} style={style}>
{showIcon ? <Icon className={`${prefixCls}-icon`} type={iconType} /> : null}
<span className={`${prefixCls}-message`}>{message}</span>
<span className={`${prefixCls}-description`}>{description}</span>
{closeIcon}
</div>
</Animate>
);
9 years ago
}
}