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.
51 lines
1.5 KiB
51 lines
1.5 KiB
import * as moment from 'moment';
|
|
import padStart from 'lodash/padStart';
|
|
|
|
import interopDefault from '../_util/interopDefault';
|
|
|
|
// Countdown
|
|
const timeUnits = [
|
|
['Y', 1000 * 60 * 60 * 24 * 365], // years
|
|
['M', 1000 * 60 * 60 * 24 * 30], // months
|
|
['D', 1000 * 60 * 60 * 24], // days
|
|
['H', 1000 * 60 * 60], // hours
|
|
['m', 1000 * 60], // minutes
|
|
['s', 1000], // seconds
|
|
['S', 1], // million seconds
|
|
];
|
|
|
|
export function formatTimeStr(duration, format) {
|
|
let leftDuration = duration;
|
|
|
|
const escapeRegex = /\[[^\]]*\]/g;
|
|
const keepList = (format.match(escapeRegex) || []).map(str => str.slice(1, -1));
|
|
const templateText = format.replace(escapeRegex, '[]');
|
|
|
|
const replacedText = timeUnits.reduce((current, [name, unit]) => {
|
|
if (current.indexOf(name) !== -1) {
|
|
const value = Math.floor(leftDuration / unit);
|
|
leftDuration -= value * unit;
|
|
return current.replace(new RegExp(`${name}+`, 'g'), match => {
|
|
const len = match.length;
|
|
return padStart(value.toString(), len, '0');
|
|
});
|
|
}
|
|
return current;
|
|
}, templateText);
|
|
|
|
let index = 0;
|
|
return replacedText.replace(escapeRegex, () => {
|
|
const match = keepList[index];
|
|
index += 1;
|
|
return match;
|
|
});
|
|
}
|
|
|
|
export function formatCountdown(value, config) {
|
|
const { format = '' } = config;
|
|
const target = interopDefault(moment)(value).valueOf();
|
|
const current = interopDefault(moment)().valueOf();
|
|
const diff = Math.max(target - current, 0);
|
|
return formatTimeStr(diff, format);
|
|
}
|