|
|
|
import * as React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import Animate from 'rc-animate';
|
|
|
|
import isCssAnimationSupported from '../_util/isCssAnimationSupported';
|
|
|
|
import omit from 'omit.js';
|
|
|
|
|
|
|
|
export type SpinSize = 'small' | 'default' | 'large';
|
|
|
|
export type SpinIndicator = React.ReactElement<any>;
|
|
|
|
|
|
|
|
export interface SpinProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
className?: string;
|
|
|
|
spinning?: boolean;
|
|
|
|
style?: React.CSSProperties;
|
|
|
|
size?: SpinSize;
|
|
|
|
tip?: string;
|
|
|
|
delay?: number;
|
|
|
|
wrapperClassName?: string;
|
|
|
|
indicator?: SpinIndicator;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SpinState {
|
|
|
|
spinning?: boolean;
|
|
|
|
notCssAnimationSupported?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class Spin extends React.Component<SpinProps, SpinState> {
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-spin',
|
|
|
|
spinning: true,
|
|
|
|
size: 'default' as SpinSize,
|
|
|
|
wrapperClassName: '',
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
className: PropTypes.string,
|
|
|
|
spinning: PropTypes.bool,
|
|
|
|
size: PropTypes.oneOf(['small', 'default', 'large']),
|
|
|
|
wrapperClassName: PropTypes.string,
|
|
|
|
indicator: PropTypes.node,
|
|
|
|
};
|
|
|
|
|
|
|
|
debounceTimeout: number;
|
|
|
|
delayTimeout: number;
|
|
|
|
|
|
|
|
constructor(props: SpinProps) {
|
|
|
|
super(props);
|
|
|
|
const spinning = props.spinning;
|
|
|
|
this.state = {
|
|
|
|
spinning,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
isNestedPattern() {
|
|
|
|
return !!(this.props && this.props.children);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
if (!isCssAnimationSupported()) {
|
|
|
|
// Show text in IE9
|
|
|
|
this.setState({
|
|
|
|
notCssAnimationSupported: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.debounceTimeout) {
|
|
|
|
clearTimeout(this.debounceTimeout);
|
|
|
|
}
|
|
|
|
if (this.delayTimeout) {
|
|
|
|
clearTimeout(this.delayTimeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps: SpinProps) {
|
|
|
|
const currentSpinning = this.props.spinning;
|
|
|
|
const spinning = nextProps.spinning;
|
|
|
|
const { delay } = this.props;
|
|
|
|
|
|
|
|
if (this.debounceTimeout) {
|
|
|
|
clearTimeout(this.debounceTimeout);
|
|
|
|
}
|
|
|
|
if (currentSpinning && !spinning) {
|
|
|
|
this.debounceTimeout = window.setTimeout(() => this.setState({ spinning }), 200);
|
|
|
|
if (this.delayTimeout) {
|
|
|
|
clearTimeout(this.delayTimeout);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (spinning && delay && !isNaN(Number(delay))) {
|
|
|
|
if (this.delayTimeout) {
|
|
|
|
clearTimeout(this.delayTimeout);
|
|
|
|
}
|
|
|
|
this.delayTimeout = window.setTimeout(() => this.setState({ spinning }), delay);
|
|
|
|
} else {
|
|
|
|
this.setState({ spinning });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderIndicator() {
|
|
|
|
const { prefixCls, indicator } = this.props;
|
|
|
|
const dotClassName = `${prefixCls}-dot`;
|
|
|
|
if (React.isValidElement(indicator)) {
|
|
|
|
return React.cloneElement((indicator as SpinIndicator), {
|
|
|
|
className: classNames((indicator as SpinIndicator).props.className, dotClassName),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<span className={classNames(dotClassName, `${prefixCls}-dot-spin`)}>
|
|
|
|
<i />
|
|
|
|
<i />
|
|
|
|
<i />
|
|
|
|
<i />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { className, size, prefixCls, tip, wrapperClassName, ...restProps } = this.props;
|
|
|
|
const { spinning, notCssAnimationSupported } = this.state;
|
|
|
|
|
|
|
|
const spinClassName = classNames(prefixCls, {
|
|
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
|
|
[`${prefixCls}-spinning`]: spinning,
|
|
|
|
[`${prefixCls}-show-text`]: !!tip || notCssAnimationSupported,
|
|
|
|
}, className);
|
|
|
|
|
|
|
|
// fix https://fb.me/react-unknown-prop
|
|
|
|
const divProps = omit(restProps, [
|
|
|
|
'spinning',
|
|
|
|
'delay',
|
|
|
|
'indicator',
|
|
|
|
]);
|
|
|
|
|
|
|
|
const spinElement = (
|
|
|
|
<div {...divProps} className={spinClassName} >
|
|
|
|
{this.renderIndicator()}
|
|
|
|
{tip ? <div className={`${prefixCls}-text`}>{tip}</div> : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
if (this.isNestedPattern()) {
|
|
|
|
let animateClassName = prefixCls + '-nested-loading';
|
|
|
|
if (wrapperClassName) {
|
|
|
|
animateClassName += ' ' + wrapperClassName;
|
|
|
|
}
|
|
|
|
const containerClassName = classNames({
|
|
|
|
[`${prefixCls}-container`]: true,
|
|
|
|
[`${prefixCls}-blur`]: spinning,
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<Animate
|
|
|
|
{...divProps}
|
|
|
|
component="div"
|
|
|
|
className={animateClassName}
|
|
|
|
style={null}
|
|
|
|
transitionName="fade"
|
|
|
|
>
|
|
|
|
{spinning && <div key="loading">{spinElement}</div>}
|
|
|
|
<div className={containerClassName} key="container">
|
|
|
|
{this.props.children}
|
|
|
|
</div>
|
|
|
|
</Animate>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return spinElement;
|
|
|
|
}
|
|
|
|
}
|