mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
79 lines
1.8 KiB
TypeScript
79 lines
1.8 KiB
TypeScript
|
import * as React from 'react';
|
||
|
import { polyfill } from 'react-lifecycles-compat';
|
||
|
import * as moment from 'moment';
|
||
|
import interopDefault from '../_util/interopDefault';
|
||
|
import Statistic, { StatisticProps } from './Statistic';
|
||
|
import { formatCountdown, countdownValueType, FormatConfig } from './utils';
|
||
|
|
||
|
const REFRESH_INTERVAL = 1000 / 30;
|
||
|
|
||
|
interface CountdownProps extends StatisticProps {
|
||
|
value?: countdownValueType;
|
||
|
format?: string;
|
||
|
}
|
||
|
|
||
|
class Countdown extends React.Component<CountdownProps, {}> {
|
||
|
static defaultProps: Partial<CountdownProps> = {
|
||
|
format: 'HH:mm:ss',
|
||
|
};
|
||
|
|
||
|
countdownId?: number = undefined;
|
||
|
|
||
|
componentDidMount() {
|
||
|
this.syncTimer();
|
||
|
}
|
||
|
|
||
|
componentDidUpdate() {
|
||
|
this.syncTimer();
|
||
|
}
|
||
|
|
||
|
componentWillUnmount() {
|
||
|
this.stopTimer();
|
||
|
}
|
||
|
|
||
|
syncTimer = () => {
|
||
|
const { value } = this.props;
|
||
|
|
||
|
const timestamp = interopDefault(moment)(value).valueOf();
|
||
|
if (timestamp >= Date.now()) {
|
||
|
this.startTimer();
|
||
|
} else {
|
||
|
this.stopTimer();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
startTimer = () => {
|
||
|
if (this.countdownId !== undefined) return;
|
||
|
|
||
|
this.countdownId = window.setInterval(() => {
|
||
|
this.forceUpdate();
|
||
|
}, REFRESH_INTERVAL);
|
||
|
};
|
||
|
|
||
|
stopTimer = () => {
|
||
|
clearInterval(this.countdownId);
|
||
|
this.countdownId = undefined;
|
||
|
};
|
||
|
|
||
|
formatCountdown = (value: countdownValueType, config: FormatConfig) => {
|
||
|
const { format } = this.props;
|
||
|
return formatCountdown(value, { ...config, format });
|
||
|
};
|
||
|
|
||
|
// Countdown do not need display the timestamp
|
||
|
valueRender = (node: React.ReactElement<HTMLDivElement>) =>
|
||
|
React.cloneElement(node, {
|
||
|
title: undefined,
|
||
|
});
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<Statistic valueRender={this.valueRender} {...this.props} formatter={this.formatCountdown} />
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
polyfill(Countdown);
|
||
|
|
||
|
export default Countdown;
|