mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
d78c0f2707
* adjust table fixed column z-index (#14036) fix #13930 * 📝 Add instruction for one column without width left in fixed table * Add full PR template link in template (#14061) * add full tmpl link * adjust * simplify it * add cn link * Fix Affix flickering when scrolling * update * fix: top border disappeared under some ie9 * fix calendar month range display (#14049) * Fix tslint warning * Correct typescript usage (#14074) * 🐛 Fix steps style under IE9 close #14001 * 🐛 tweak style for not affecting vertical steps * 📝 enhance upload documentation * Input.Group with TimePicker disappear icon: https://codepen.io/mraiguo/pen/QzvvvE?editors=0010 * 🐛 Fix disabled button style in DatePicker panel https://user-images.githubusercontent.com/507615/50693143-17505400-1071-11e9-9114-b150bef8f7f6.png * 📝 site: fix BackTop been covered by footer close #14093 * Update PULL_REQUEST_TEMPLATE.md * Update pr_cn.md * 🐛 Fix nested Timeline last item missing line (#14110) close #14108 * init Spin should also support delay trigger (#14105) fix #14100 * Update table docs * bugfix * Format * update snapshot * test: fix spin test
200 lines
5.1 KiB
TypeScript
200 lines
5.1 KiB
TypeScript
import * as React from 'react';
|
|
import * as PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import omit from 'omit.js';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
import { tuple } from '../_util/type';
|
|
|
|
const SpinSizes = tuple('small', 'default', 'large');
|
|
export type SpinSize = (typeof SpinSizes)[number];
|
|
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;
|
|
}
|
|
|
|
// Render indicator
|
|
let defaultIndicator: React.ReactNode = null;
|
|
|
|
function renderIndicator(prefixCls: string, props: SpinProps): React.ReactNode {
|
|
const { indicator } = props;
|
|
const dotClassName = `${prefixCls}-dot`;
|
|
if (React.isValidElement(indicator)) {
|
|
return React.cloneElement(indicator as SpinIndicator, {
|
|
className: classNames((indicator as SpinIndicator).props.className, dotClassName),
|
|
});
|
|
}
|
|
|
|
if (React.isValidElement(defaultIndicator)) {
|
|
return React.cloneElement(defaultIndicator as SpinIndicator, {
|
|
className: classNames((defaultIndicator as SpinIndicator).props.className, dotClassName),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<span className={classNames(dotClassName, `${prefixCls}-dot-spin`)}>
|
|
<i />
|
|
<i />
|
|
<i />
|
|
<i />
|
|
</span>
|
|
);
|
|
}
|
|
|
|
function shouldDelay(spinning?: boolean, delay?: number): boolean {
|
|
return !!spinning && !!delay && !isNaN(Number(delay));
|
|
}
|
|
|
|
class Spin extends React.Component<SpinProps, SpinState> {
|
|
static defaultProps = {
|
|
spinning: true,
|
|
size: 'default' as SpinSize,
|
|
wrapperClassName: '',
|
|
};
|
|
|
|
static propTypes = {
|
|
prefixCls: PropTypes.string,
|
|
className: PropTypes.string,
|
|
spinning: PropTypes.bool,
|
|
size: PropTypes.oneOf(SpinSizes),
|
|
wrapperClassName: PropTypes.string,
|
|
indicator: PropTypes.element,
|
|
};
|
|
|
|
static setDefaultIndicator(indicator: React.ReactNode) {
|
|
defaultIndicator = indicator;
|
|
}
|
|
|
|
debounceTimeout: number;
|
|
delayTimeout: number;
|
|
|
|
constructor(props: SpinProps) {
|
|
super(props);
|
|
|
|
const { spinning, delay } = props;
|
|
this.state = {
|
|
spinning: spinning && !shouldDelay(spinning, delay),
|
|
};
|
|
}
|
|
|
|
isNestedPattern() {
|
|
return !!(this.props && this.props.children);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.componentDidUpdate();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this.debounceTimeout) {
|
|
clearTimeout(this.debounceTimeout);
|
|
}
|
|
if (this.delayTimeout) {
|
|
clearTimeout(this.delayTimeout);
|
|
}
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
const currentSpinning = this.state.spinning;
|
|
const spinning = this.props.spinning;
|
|
if (currentSpinning === spinning) {
|
|
return;
|
|
}
|
|
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 (shouldDelay(spinning, delay)) {
|
|
if (this.delayTimeout) {
|
|
clearTimeout(this.delayTimeout);
|
|
}
|
|
this.delayTimeout = window.setTimeout(this.delayUpdateSpinning, delay);
|
|
} else {
|
|
this.setState({ spinning });
|
|
}
|
|
}
|
|
}
|
|
|
|
delayUpdateSpinning = () => {
|
|
const { spinning } = this.props;
|
|
if (this.state.spinning !== spinning) {
|
|
this.setState({ spinning });
|
|
}
|
|
};
|
|
|
|
renderSpin = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
size,
|
|
tip,
|
|
wrapperClassName,
|
|
style,
|
|
...restProps
|
|
} = this.props;
|
|
const { spinning } = this.state;
|
|
|
|
const prefixCls = getPrefixCls('spin', customizePrefixCls);
|
|
const spinClassName = classNames(
|
|
prefixCls,
|
|
{
|
|
[`${prefixCls}-sm`]: size === 'small',
|
|
[`${prefixCls}-lg`]: size === 'large',
|
|
[`${prefixCls}-spinning`]: spinning,
|
|
[`${prefixCls}-show-text`]: !!tip,
|
|
},
|
|
className,
|
|
);
|
|
|
|
// fix https://fb.me/react-unknown-prop
|
|
const divProps = omit(restProps, ['spinning', 'delay', 'indicator']);
|
|
|
|
const spinElement = (
|
|
<div {...divProps} style={style} className={spinClassName}>
|
|
{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)}>
|
|
{spinning && <div key="loading">{spinElement}</div>}
|
|
<div className={containerClassName} key="container">
|
|
{this.props.children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
return spinElement;
|
|
};
|
|
|
|
render() {
|
|
return <ConfigConsumer>{this.renderSpin}</ConfigConsumer>;
|
|
}
|
|
}
|
|
|
|
export default Spin;
|