LLWiki正在建设中,欢迎加入我们

“User:Bhsd/widget/countdown.js”的版本间差异

来自LLWiki
跳转到导航 跳转到搜索
 
(未显示同一用户的6个中间版本)
第1行: 第1行:
//<nowiki>
//<nowiki>
// 用于[[Widget:Countdown]],可以使用ES6语法
// 用于[[Widget:Countdown]],可以使用ES6语法
/**
* @Function: 生成倒计时
* @Source: [[moegirl:Widget:Countdown]]
* @Dependencies: moment, ext.gadget.site-lib
* @EditedBy: [[User:Bhsd]]
*/
"use strict";
"use strict";
/*global mw, $, moment, wgUCS*/
/*global mw, $, moment, wgUCS*/
(function() {
(() => {
let counter, $num;
const monthsHave31Days = [0, 2, 4, 6, 7, 9, 11], // 月份从0开始
fromNow = function(ele) {
const fromNow = function() { // 处理一个 .counting 节点,显示时间
const now = moment(),
const $ele = $(this),
then = ele.data('target'),
now = moment(), // now必须是一个新的moment对象
before = ele.children().first(),
then = moment( $ele.data('target') ), // 必需复制一个moment对象再进行操作
after = ele.children().last(),
isBefore = then.isBefore( now ),
isBefore = then.isBefore( now ),
early = isBefore ? then : now,
[early, late] = isBefore ? [then, now] : [now, then],
textMonth = wgUCS('个月', '個月'),
year = late.diff( early, 'year' ),
textHour = wgUCS('小时', '小時');
month = late.diff( early.add(year, 'year'), 'month' ),
let year = isBefore ? now.year() - then.year() : then.year() - now.year(),
day = year ? null : late.diff( early.add(month, 'month'), 'day' ),
month = isBefore ? now.month() - then.month() : then.month() - now.month(),
hour = year || month ? null : late.diff( early.add(day, 'day'), 'hour' ),
day = isBefore ? now.date() - then.date() : then.date() - now.date(),
minute = year || month || day ? null : late.diff( early.add(hour, 'hour'), 'minute' ),
hour = isBefore ? now.hour() - then.hour() : then.hour() - now.hour(),
second = year || month || day ? null : late.diff( early.add(minute, 'minute'), 'second' ),
result = [
minute = isBefore ? now.minute() - then.minute() : then.minute() - now.minute(),
second = isBefore ? now.second() - then.second() : then.second() - now.second(),
... year ? [$num.clone().text( year ), '年'] : [],
... month ? [$num.clone().text( month ), mw.msg('widget-cd-mm')] : [],
result = "";
... day ? [$num.clone().text( day ), '天'] : [],
if (second < 0) {
... hour ? [$num.clone().text( hour ), mw.msg('widget-cd-hh')] : [],
minute--;
... minute !== null ? [$num.clone().text( minute ), '分'] : [],
second += 60;
... second !== null ? [$num.clone().text( second ), '秒'] : []
}
if (minute < 0) {
];
$ele.toggleClass('isBefore', isBefore).children().eq(isBefore ? 0 : 1).find( '.countdown' ).html( result );
hour--;
minute += 60;
}
if (hour < 0) {
day--;
hour += 24;
}
if (day < 0) {
month--;
if (early.month() === 1) { day += early.year() % 4 === 0 ? 29 : 28; }
else { day += monthsHave31Days.includes( early.month() ) ? 31 : 30; }
}
if (month < 0) {
year--;
month += 12;
}
if (year > 0) { result += `<span class="countdown-num">${year}</span>年`; }
if (month > 0) { result += `<span class="countdown-num">${month}</span>${textMonth}`; }
if (year === 0 && day > 0) { result += `<span class="countdown-num">${day}</span>天`; }
if (year === 0 && month === 0) {
if (hour > 0) { result += `<span class="countdown-num">${hour}</span>${textHour}`; }
if (day === 0) {
if (minute > 0 || hour > 0) { result += `<span class="countdown-num">${minute}</span>分`; }
result += `<span class="countdown-num">${second}</span>秒`;
}
}
ele.toggleCLass('isBefore', isBefore);
if (isBefore) { before.find( '.countdown' ).html( result ); }
else { after.find( '.countdown' ).html( result ); }
},
},
run = () => { $( '.counting' ).each( fromNow ); }, // 每秒循环一遍所有 .counting 节点
run = function() {
mw.loader.using( 'ext.gadget.site-lib' ).then(() => {
main = ($content) => {
$( '.counting' ).each(function() { fromNow( $(this) ); });
const $nodes = $content.find( '.countdownNode' );
});
if ($nodes.length === 0) { return; }
mw.loader.using( ['moment', 'ext.gadget.site-lib'] ).then(() => {
},
mw.messages.set( wgUCS({ 'widget-cd-error': "时间格式错误!", 'widget-cd-mm': '个月', 'widget-cd-hh': '小时' },
main = function($content) {
{ 'widget-cd-error': "時間格式錯誤!", 'widget-cd-mm': '個月', 'widget-cd-hh': '小時' }) );
if ($content.find( '.countdownNode' ).length === 0) { return; }
mw.loader.using( 'moment' ).then(() => {
$nodes.each(function() {
$content.find( '.countdownNode' ).each(function() {
const $ele = $(this),
const ele = $(this),
then = moment(this.title, 'YYYY-MM-DD HH:mm Z');
then = moment(this.title, 'YYYY-MM-DD HH:mm Z');
if (then.isValid()) { ele.data('target', then).addClass( 'counting' ); }
if (then.isValid()) {
else { ele.toggleClass('error countdownNode').text( "(时间格式错误!)" ); }
$ele.data('target', then).addClass( 'counting' )
// 以本地时间替换title,之后交给[[Widget:Abbr]]就好
.attr('title', then.format( 'llll ([UTC]Z' ).slice(0, -3) + ')');
}
else { $ele.toggleClass('error countdownNode').text( mw.msg('widget-cd-error') ); }
});
});
if ($content.find( '.counting' ).length === 0) { return; }
const $counting = $nodes.filter( '.counting' );
if ($counting.length === 0) { return; }
console.log('Hook: wikipage.content,开始处理新增的倒计时');
console.log('Hook: wikipage.content,开始添加倒计时');
run();
run();
// 新節點至少要一次run()才能移除countdownNode
$counting.removeClass( 'countdownNode' ); // 新节点至少要一次run()才能移除countdownNode
counter = counter || setInterval(run, 1000); // 防止重复setInterval
$content.find( '.counting' ).removeClass( 'countdownNode' );
mw.countdown = mw.countdown || setInterval(() => { run(); }, 1000 );
});
});
},
handler = () => {
$num = $('<span>', {class: 'countdown-num'});
mw.widget = mw.widget || {};
if (mw.widget.countdown) { return; } // 不要和mw.countdown搞混
mw.hook( 'wikipage.content' ).add( main );
mw.widget.countdown = true;
};
};
if (window.jQuery) { handler(); }
console.log( 'setInterval: 等待jQuery加载完毕' );
else { window.addEventListener( 'jquery', handler ); }
const timerStart = Date.now(),
timer = setInterval(() => {
if (!window.jQuery) { return; }
clearInterval(timer);
console.log(`End setInterval: jQuery加载完毕,用时 ${Date.now() - timerStart} ms`);
mw.hook( 'wikipage.content' ).add($content => { main($content); });
}, 500);
}) ();
}) ();
//</nowiki>
//</nowiki>
// [[category:jQuery小部件]] {{DEFAULTSORT:Countdown}}
// [[category:jQuery小部件]] {{DEFAULTSORT:Countdown.js}}

2021年2月10日 (三) 06:40的最新版本

//<nowiki>
// 用于[[Widget:Countdown]],可以使用ES6语法
/**
 * @Function: 生成倒计时
 * @Source: [[moegirl:Widget:Countdown]]
 * @Dependencies: moment, ext.gadget.site-lib
 * @EditedBy: [[User:Bhsd]]
 */
"use strict";
/*global mw, $, moment, wgUCS*/
(() => {
    let counter, $num;
    const fromNow = function() { // 处理一个 .counting 节点,显示时间
        const $ele = $(this),
            now = moment(), // now必须是一个新的moment对象
            then = moment( $ele.data('target') ), // 必需复制一个moment对象再进行操作
            isBefore = then.isBefore( now ),
            [early, late] = isBefore ? [then, now] : [now, then],
            year = late.diff( early, 'year' ),
            month = late.diff( early.add(year, 'year'), 'month' ),
            day = year ? null : late.diff( early.add(month, 'month'), 'day' ),
            hour = year || month ? null : late.diff( early.add(day, 'day'), 'hour' ),
            minute = year || month || day ? null : late.diff( early.add(hour, 'hour'), 'minute' ),
            second = year || month || day ? null : late.diff( early.add(minute, 'minute'), 'second' ),
            result = [
            ... year ? [$num.clone().text( year ), '年'] : [],
            ... month ? [$num.clone().text( month ), mw.msg('widget-cd-mm')] : [],
            ... day ? [$num.clone().text( day ), '天'] : [],
            ... hour ? [$num.clone().text( hour ), mw.msg('widget-cd-hh')] : [],
            ... minute !== null ? [$num.clone().text( minute ), '分'] : [],
            ... second !== null ? [$num.clone().text( second ), '秒'] : []
        ];
        $ele.toggleClass('isBefore', isBefore).children().eq(isBefore ? 0 : 1).find( '.countdown' ).html( result );
    },
        run = () => { $( '.counting' ).each( fromNow ); }, // 每秒循环一遍所有 .counting 节点
        main = ($content) => {
        const $nodes = $content.find( '.countdownNode' );
        if ($nodes.length === 0) { return; }
        mw.loader.using( ['moment', 'ext.gadget.site-lib'] ).then(() => {
            mw.messages.set( wgUCS({ 'widget-cd-error': "时间格式错误!", 'widget-cd-mm': '个月', 'widget-cd-hh': '小时' },
               { 'widget-cd-error': "時間格式錯誤!", 'widget-cd-mm': '個月', 'widget-cd-hh': '小時' }) );
            $nodes.each(function() {
                const $ele = $(this),
                    then = moment(this.title, 'YYYY-MM-DD HH:mm Z');
                if (then.isValid()) {
                    $ele.data('target', then).addClass( 'counting' )
                         // 以本地时间替换title,之后交给[[Widget:Abbr]]就好
                        .attr('title', then.format( 'llll ([UTC]Z' ).slice(0, -3) + ')');
                }
                else { $ele.toggleClass('error countdownNode').text( mw.msg('widget-cd-error') ); }
            });
            const $counting = $nodes.filter( '.counting' );
            if ($counting.length === 0) { return; }
            console.log('Hook: wikipage.content,开始添加倒计时');
            run();
            $counting.removeClass( 'countdownNode' ); // 新节点至少要执行过一次run()后才能移除countdownNode类
            counter = counter || setInterval(run, 1000); // 防止重复setInterval
        });
    },
        handler = () => {
        $num = $('<span>', {class: 'countdown-num'});
        mw.widget = mw.widget || {};
        if (mw.widget.countdown) { return; } // 不要和mw.countdown搞混
        mw.hook( 'wikipage.content' ).add( main );
        mw.widget.countdown = true;
    };
    if (window.jQuery) { handler(); }
    else { window.addEventListener( 'jquery', handler ); }
}) ();
//</nowiki>
// [[category:jQuery小部件]] {{DEFAULTSORT:Countdown.js}}