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.

63 lines
1.6 KiB

import React from 'react';
import { classSet } from 'rc-util';
import { isCssAnimationSupported } from 'css-animation';
const AntSpin = React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-spin',
size: 'default',
spining: true
};
},
propTypes: {
className: React.PropTypes.string,
size: React.PropTypes.oneOf(['small', 'default', 'large'])
},
isNestedPattern() {
return !!(this.props && this.props.children);
},
render() {
9 years ago
const { className, size, prefixCls } = this.props;
let spinClassName = classSet({
[prefixCls]: true,
[`${prefixCls}-${size}`]: size,
[className]: !!className,
[`${prefixCls}-spining`]: this.props.spining,
});
let spinElement;
if (!isCssAnimationSupported) {
// not support for animation, just use text instead
spinElement = <div className={spinClassName}>加载中...</div>;
} else {
spinElement = (
<div className={spinClassName}>
<span className={`${prefixCls}-dot ${prefixCls}-dot-first`} />
<span className={`${prefixCls}-dot ${prefixCls}-dot-second`} />
<span className={`${prefixCls}-dot ${prefixCls}-dot-third`} />
</div>
);
}
if (this.isNestedPattern()) {
return (
<div className={this.props.spining ? (prefixCls + '-nested-loading') : ''}>
{spinElement}
<div className={prefixCls + '-container'}>
{this.props.children}
</div>
</div>
);
} else {
return spinElement;
}
}
});
export default AntSpin;