2015-07-28 17:08:06 +08:00
|
|
|
import React from 'react';
|
2015-10-21 17:59:57 +08:00
|
|
|
import ReactDOM from 'react-dom';
|
2015-08-21 17:12:42 +08:00
|
|
|
import Animate from 'rc-animate';
|
2015-11-20 11:05:34 +08:00
|
|
|
import Icon from '../icon';
|
2016-01-27 01:47:12 +08:00
|
|
|
import classNames from 'classnames';
|
2015-08-21 17:12:42 +08:00
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
export default class Tag extends React.Component {
|
2016-03-29 14:01:10 +08:00
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-tag',
|
|
|
|
closable: false,
|
|
|
|
onClose() {},
|
|
|
|
afterClose() {},
|
|
|
|
}
|
|
|
|
|
2015-07-30 23:52:44 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2015-08-21 17:27:29 +08:00
|
|
|
closing: false,
|
2016-01-26 23:40:20 +08:00
|
|
|
closed: false,
|
2015-07-30 23:52:44 +08:00
|
|
|
};
|
|
|
|
}
|
2015-08-20 11:46:02 +08:00
|
|
|
|
2016-03-23 19:50:44 +08:00
|
|
|
close = (e) => {
|
2016-03-24 22:12:21 +08:00
|
|
|
this.props.onClose(e);
|
2016-03-27 18:06:09 +08:00
|
|
|
if (e.defaultPrevented) return;
|
2016-01-26 23:40:20 +08:00
|
|
|
const dom = ReactDOM.findDOMNode(this);
|
2016-05-08 18:21:59 +08:00
|
|
|
const domWidth = dom.getBoundingClientRect().width;
|
|
|
|
dom.style.width = `${domWidth}px`;
|
2015-08-20 13:56:08 +08:00
|
|
|
// It's Magic Code, don't know why
|
2016-05-08 18:21:59 +08:00
|
|
|
dom.style.width = `${domWidth}px`;
|
2015-07-30 23:52:44 +08:00
|
|
|
this.setState({
|
2016-01-26 23:40:20 +08:00
|
|
|
closing: true,
|
2015-07-30 23:52:44 +08:00
|
|
|
});
|
2015-07-28 17:08:06 +08:00
|
|
|
}
|
2015-08-21 17:27:29 +08:00
|
|
|
|
2016-03-23 19:50:44 +08:00
|
|
|
animationEnd = (key, existed) => {
|
2016-04-16 20:24:50 +08:00
|
|
|
if (!existed && !this.state.closed) {
|
2016-01-27 01:20:05 +08:00
|
|
|
this.setState({
|
|
|
|
closed: true,
|
|
|
|
closing: false,
|
|
|
|
});
|
|
|
|
this.props.afterClose();
|
|
|
|
}
|
2015-08-21 17:12:42 +08:00
|
|
|
}
|
2015-08-19 17:26:55 +08:00
|
|
|
|
2015-07-28 17:08:06 +08:00
|
|
|
render() {
|
2016-03-03 12:16:25 +08:00
|
|
|
const { prefixCls, closable, color, className, children, ...restProps } = this.props;
|
2016-03-23 19:50:44 +08:00
|
|
|
const close = closable ? <Icon type="cross" onClick={this.close} /> : '';
|
2016-03-03 12:16:25 +08:00
|
|
|
const classString = classNames({
|
2016-01-27 01:47:12 +08:00
|
|
|
[prefixCls]: true,
|
2016-02-17 18:04:42 +08:00
|
|
|
[`${prefixCls}-${color}`]: !!color,
|
|
|
|
[`${prefixCls}-close`]: this.state.closing,
|
2016-03-03 12:16:25 +08:00
|
|
|
[className]: !!className,
|
2016-01-27 01:47:12 +08:00
|
|
|
});
|
2016-01-27 01:51:54 +08:00
|
|
|
return (
|
2016-01-27 14:48:25 +08:00
|
|
|
<Animate component=""
|
|
|
|
showProp="data-show"
|
2016-02-17 18:04:42 +08:00
|
|
|
transitionName={`${prefixCls}-zoom`}
|
2016-01-27 14:48:25 +08:00
|
|
|
transitionAppear
|
2016-06-06 13:54:10 +08:00
|
|
|
onEnd={this.animationEnd}
|
|
|
|
>
|
2016-01-27 01:51:54 +08:00
|
|
|
{this.state.closed ? null : (
|
2016-03-03 12:16:25 +08:00
|
|
|
<div data-show={!this.state.closing} {...restProps} className={classString}>
|
|
|
|
<span className={`${prefixCls}-text`}>{children}</span>
|
2016-01-27 01:51:54 +08:00
|
|
|
{close}
|
|
|
|
</div>
|
|
|
|
)}
|
2016-01-26 23:40:20 +08:00
|
|
|
</Animate>
|
|
|
|
);
|
2015-07-28 17:08:06 +08:00
|
|
|
}
|
|
|
|
}
|