提交 75fca793 编写于 作者: A afc163

remove magic code, use getBoundingClientRect replace offsetWidth

上级 970aa4f8
...@@ -14,10 +14,6 @@ class AntTag extends React.Component { ...@@ -14,10 +14,6 @@ class AntTag extends React.Component {
close(e) { close(e) {
let dom = React.findDOMNode(this); let dom = React.findDOMNode(this);
dom.style.width = dom.offsetWidth + 'px';
// Magic code
// 重复是去除浏览器渲染bug;
dom.style.width = dom.offsetWidth + 'px';
this.setState({ this.setState({
closing: true closing: true
}); });
...@@ -30,6 +26,11 @@ class AntTag extends React.Component { ...@@ -30,6 +26,11 @@ class AntTag extends React.Component {
this.props.onClose.call(this, e); this.props.onClose.call(this, e);
} }
componentDidMount() {
let dom = React.findDOMNode(this);
dom.style.width = (dom.getBoundingClientRect().width || dom.offsetWidth) + 'px';
}
render() { render() {
let close = this.props.closable ? let close = this.props.closable ?
<i className="anticon anticon-cross" onClick={this.close.bind(this)}></i> : ''; <i className="anticon anticon-cross" onClick={this.close.bind(this)}></i> : '';
...@@ -38,17 +39,18 @@ class AntTag extends React.Component { ...@@ -38,17 +39,18 @@ class AntTag extends React.Component {
let className = this.props.prefixCls + ' ' + colorClass; let className = this.props.prefixCls + ' ' + colorClass;
className = this.state.closing ? className + ' ' + this.props.prefixCls + '-close' : className; className = this.state.closing ? className + ' ' + this.props.prefixCls + '-close' : className;
return (this.state.closed && !this.state.closing) ? null : <div className={className}> return (this.state.closed && !this.state.closing) ? null
<a className={this.props.prefixCls + '-text'} {...this.props} /> : <div className={className}>
{close} <a className={this.props.prefixCls + '-text'} {...this.props} />
</div>; {close}
</div>;
} }
} }
AntTag.defaultProps = { AntTag.defaultProps = {
prefixCls: prefixCls, prefixCls: prefixCls,
closable: false, closable: false,
onClose: function () {} onClose: function() {}
}; };
export default AntTag; export default AntTag;
...@@ -90,8 +90,7 @@ exports.middlewares = [ ...@@ -90,8 +90,7 @@ exports.middlewares = [
watchOptions: { watchOptions: {
aggregateTimeout: 300, aggregateTimeout: 300,
poll: true poll: true
}, }
quiet: true
}); });
try { try {
return handler(req, res, next); return handler(req, res, next);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册