| 123456789101112131415161718192021222324252627282930313233343536 |
- // Countdown
- const timeUnits = [['Y', 1000 * 60 * 60 * 24 * 365], ['M', 1000 * 60 * 60 * 24 * 30], ['D', 1000 * 60 * 60 * 24], ['H', 1000 * 60 * 60], ['m', 1000 * 60], ['s', 1000], ['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, _ref) => {
- let [name, unit] = _ref;
- if (current.includes(name)) {
- const value = Math.floor(leftDuration / unit);
- leftDuration -= value * unit;
- return current.replace(new RegExp(`${name}+`, 'g'), match => {
- const len = match.length;
- return value.toString().padStart(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 = new Date(value).getTime();
- const current = Date.now();
- const diff = Math.max(target - current, 0);
- return formatTimeStr(diff, format);
- }
|