mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 11:39:28 +08:00
chore(tag): some code style
This commit is contained in:
parent
65b338de2b
commit
5719a83f36
@ -9,37 +9,36 @@ class AntTag extends React.Component {
|
||||
|
||||
this.state = {
|
||||
closing: false,
|
||||
closed: false
|
||||
closed: false,
|
||||
};
|
||||
}
|
||||
|
||||
close(e) {
|
||||
let dom = ReactDOM.findDOMNode(this);
|
||||
const dom = ReactDOM.findDOMNode(this);
|
||||
dom.style.width = dom.offsetWidth + 'px';
|
||||
// It's Magic Code, don't know why
|
||||
dom.style.width = dom.offsetWidth + 'px';
|
||||
this.setState({
|
||||
closing: true
|
||||
closing: true,
|
||||
});
|
||||
this.props.onClose.call(this, e);
|
||||
this.props.onClose(e);
|
||||
}
|
||||
|
||||
animationEnd() {
|
||||
this.setState({
|
||||
closed: true,
|
||||
closing: false
|
||||
closing: false,
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
let close = this.props.closable ?
|
||||
const close = this.props.closable ?
|
||||
<Icon type="cross" onClick={this.close.bind(this)} /> : '';
|
||||
let colorClass = this.props.color ? this.props.prefixCls + '-' + this.props.color : '';
|
||||
const colorClass = this.props.color ? this.props.prefixCls + '-' + this.props.color : '';
|
||||
let className = this.props.prefixCls + ' ' + colorClass;
|
||||
className = this.state.closing ? className + ' ' + this.props.prefixCls + '-close' : className;
|
||||
|
||||
return this.state.closed ? null
|
||||
: (
|
||||
return this.state.closed ? null : (
|
||||
<Animate component=""
|
||||
showProp="data-show"
|
||||
transitionName={this.props.prefixCls + '-zoom'}
|
||||
@ -53,11 +52,10 @@ class AntTag extends React.Component {
|
||||
}
|
||||
}
|
||||
|
||||
function NOOP() {}
|
||||
AntTag.defaultProps = {
|
||||
prefixCls: 'ant-tag',
|
||||
closable: false,
|
||||
onClose: NOOP,
|
||||
onClose() {},
|
||||
};
|
||||
|
||||
export default AntTag;
|
||||
|
Loading…
Reference in New Issue
Block a user