ant-design/components/tag/index.jsx

73 lines
1.8 KiB
React
Raw Normal View History

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
export default class Tag extends React.Component {
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
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
animationEnd = (key, existed) => {
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;
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,
[`${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"
transitionName={`${prefixCls}-zoom`}
2016-01-27 14:48:25 +08:00
transitionAppear
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
}
}