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.
228 lines
5.9 KiB
228 lines
5.9 KiB
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import omit from 'rc-util/lib/omit';
|
|
import debounce from 'lodash/debounce';
|
|
import { ConfigConsumer, ConfigConsumerProps, ConfigContext } from '../config-provider';
|
|
import { tuple } from '../_util/type';
|
|
import { isValidElement, cloneElement } from '../_util/reactNode';
|
|
import useStyle from './style/index';
|
|
|
|
const SpinSizes = tuple('small', 'default', 'large');
|
|
export type SpinSize = typeof SpinSizes[number];
|
|
export type SpinIndicator = React.ReactElement<HTMLElement>;
|
|
|
|
export interface SpinProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
spinning?: boolean;
|
|
style?: React.CSSProperties;
|
|
size?: SpinSize;
|
|
tip?: React.ReactNode;
|
|
delay?: number;
|
|
wrapperClassName?: string;
|
|
indicator?: SpinIndicator;
|
|
}
|
|
|
|
export interface SpinClassProps extends SpinProps {
|
|
hashId: string;
|
|
spinPrefixCls: string;
|
|
}
|
|
|
|
export type SpinFCType = React.FC<SpinProps> & {
|
|
setDefaultIndicator: (indicator: React.ReactNode) => void;
|
|
};
|
|
|
|
export interface SpinState {
|
|
spinning?: boolean;
|
|
notCssAnimationSupported?: boolean;
|
|
}
|
|
|
|
// Render indicator
|
|
let defaultIndicator: React.ReactNode = null;
|
|
|
|
function renderIndicator(prefixCls: string, props: SpinClassProps): React.ReactNode {
|
|
const { indicator } = props;
|
|
const dotClassName = `${prefixCls}-dot`;
|
|
|
|
// should not be render default indicator when indicator value is null
|
|
if (indicator === null) {
|
|
return null;
|
|
}
|
|
|
|
if (isValidElement(indicator)) {
|
|
return cloneElement(indicator, {
|
|
className: classNames(indicator.props.className, dotClassName),
|
|
});
|
|
}
|
|
|
|
if (isValidElement(defaultIndicator)) {
|
|
return cloneElement(defaultIndicator as SpinIndicator, {
|
|
className: classNames((defaultIndicator as SpinIndicator).props.className, dotClassName),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<span className={classNames(dotClassName, `${prefixCls}-dot-spin`)}>
|
|
<i className={`${prefixCls}-dot-item`} />
|
|
<i className={`${prefixCls}-dot-item`} />
|
|
<i className={`${prefixCls}-dot-item`} />
|
|
<i className={`${prefixCls}-dot-item`} />
|
|
</span>
|
|
);
|
|
}
|
|
|
|
function shouldDelay(spinning?: boolean, delay?: number): boolean {
|
|
return !!spinning && !!delay && !isNaN(Number(delay));
|
|
}
|
|
|
|
export class Spin extends React.Component<SpinClassProps, SpinState> {
|
|
static defaultProps = {
|
|
spinning: true,
|
|
size: 'default' as SpinSize,
|
|
wrapperClassName: '',
|
|
};
|
|
|
|
originalUpdateSpinning: () => void;
|
|
|
|
constructor(props: SpinClassProps) {
|
|
super(props);
|
|
|
|
const { spinning, delay } = props;
|
|
const shouldBeDelayed = shouldDelay(spinning, delay);
|
|
this.state = {
|
|
spinning: spinning && !shouldBeDelayed,
|
|
};
|
|
this.originalUpdateSpinning = this.updateSpinning;
|
|
this.debouncifyUpdateSpinning(props);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.updateSpinning();
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.debouncifyUpdateSpinning();
|
|
this.updateSpinning();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.cancelExistingSpin();
|
|
}
|
|
|
|
debouncifyUpdateSpinning = (props?: SpinClassProps) => {
|
|
const { delay } = props || this.props;
|
|
if (delay) {
|
|
this.cancelExistingSpin();
|
|
this.updateSpinning = debounce(this.originalUpdateSpinning, delay);
|
|
}
|
|
};
|
|
|
|
updateSpinning = () => {
|
|
const { spinning } = this.props;
|
|
const { spinning: currentSpinning } = this.state;
|
|
if (currentSpinning !== spinning) {
|
|
this.setState({ spinning });
|
|
}
|
|
};
|
|
|
|
cancelExistingSpin() {
|
|
const { updateSpinning } = this;
|
|
if (updateSpinning && (updateSpinning as any).cancel) {
|
|
(updateSpinning as any).cancel();
|
|
}
|
|
}
|
|
|
|
isNestedPattern() {
|
|
return !!(this.props && typeof this.props.children !== 'undefined');
|
|
}
|
|
|
|
renderSpin = ({ direction }: ConfigConsumerProps) => {
|
|
const {
|
|
spinPrefixCls: prefixCls,
|
|
hashId,
|
|
className,
|
|
size,
|
|
tip,
|
|
wrapperClassName,
|
|
style,
|
|
...restProps
|
|
} = this.props;
|
|
const { spinning } = this.state;
|
|
|
|
const spinClassName = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-spinning`]: spinning,
|
|
[`${prefixCls}-show-text`]: !!tip,
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
},
|
|
className,
|
|
hashId,
|
|
);
|
|
|
|
// fix https://fb.me/react-unknown-prop
|
|
const divProps = omit(restProps, ['spinning', 'delay', 'indicator', 'prefixCls']);
|
|
|
|
const spinElement = (
|
|
<div
|
|
{...divProps}
|
|
style={style}
|
|
className={spinClassName}
|
|
aria-live="polite"
|
|
aria-busy={spinning}
|
|
>
|
|
{renderIndicator(prefixCls, this.props)}
|
|
{tip ? <div className={`${prefixCls}-text`}>{tip}</div> : null}
|
|
</div>
|
|
);
|
|
if (this.isNestedPattern()) {
|
|
const containerClassName = classNames(`${prefixCls}-container`, {
|
|
[`${prefixCls}-blur`]: spinning,
|
|
});
|
|
return (
|
|
<div
|
|
{...divProps}
|
|
className={classNames(`${prefixCls}-nested-loading`, wrapperClassName, hashId)}
|
|
>
|
|
{spinning && <div key="loading">{spinElement}</div>}
|
|
<div className={containerClassName} key="container">
|
|
{this.props.children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return spinElement;
|
|
};
|
|
|
|
render() {
|
|
return <ConfigConsumer>{this.renderSpin}</ConfigConsumer>;
|
|
}
|
|
}
|
|
|
|
const SpinFC: SpinFCType = (props: SpinProps) => {
|
|
const { prefixCls: customizePrefixCls } = props;
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
|
|
const spinPrefixCls = getPrefixCls('spin', customizePrefixCls);
|
|
|
|
const [wrapSSR, hashId] = useStyle(spinPrefixCls);
|
|
|
|
const spinClassProps: SpinClassProps = {
|
|
...props,
|
|
spinPrefixCls,
|
|
hashId,
|
|
};
|
|
return wrapSSR(<Spin {...spinClassProps} />);
|
|
};
|
|
|
|
SpinFC.setDefaultIndicator = (indicator: React.ReactNode) => {
|
|
defaultIndicator = indicator;
|
|
};
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
SpinFC.displayName = 'Spin';
|
|
}
|
|
|
|
export default SpinFC;
|
|
|