MediaWiki:Common.js:修订间差异

来自Raccon Wiki
无编辑摘要
标签移动版编辑 移动版网页编辑
无编辑摘要
 
第23行: 第23行:


$(function() {
$(function() {
     const RarityIndex = { Common: 0, Unusual: 1, Rare: 2, Epic: 3, Legendary: 4, Mythic: 5, Ultra: 6, Super: 7, Lunatic: 8 };
     const RarityIndex = { Common: 0, Unusual: 1, Rare: 2, Epic: 3, Legendary: 4, Mythic: 5, Ultimate: 6, Supreme: 7, Aracont: 8 };
     $('.portable-infobox').each(function() {
     $('.portable-infobox').each(function() {
         const initialRarity = $(this).find('.initial-rarity').text();
         const initialRarity = $(this).find('.initial-rarity').text();

2024年12月23日 (一) 21:44的最新版本

/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */

const html = $('html');
const themeSwitch = $('a:contains(切换到旧外观)');
if ((localStorage.getItem('theme') || 'true') == 'true') {
    html.addClass('theme');
    themeSwitch.text('切换到旧主题').attr('title', '更改您的设置来使用旧主题。');
} else {
    themeSwitch.text('切换到新主题').attr('title', '更改您的设置来使用新主题。');
}
themeSwitch.attr('href', 'javascript:switchTheme();');
function switchTheme() {
    if ((localStorage.getItem('theme') || 'true') == 'true') {
        html.removeClass('theme');
        localStorage.setItem('theme', 'false');
        themeSwitch.text('切换到新主题').attr('title', '更改您的设置来使用新主题。');
    } else {
        html.addClass('theme');
        localStorage.setItem('theme', 'true');
        themeSwitch.text('切换到旧主题').attr('title', '更改您的设置来使用旧主题。');
    }
}

$(function() {
    const RarityIndex = { Common: 0, Unusual: 1, Rare: 2, Epic: 3, Legendary: 4, Mythic: 5, Ultimate: 6, Supreme: 7, Aracont: 8 };
    $('.portable-infobox').each(function() {
        const initialRarity = $(this).find('.initial-rarity').text();
        const index = RarityIndex[initialRarity] || 0;
        const tabs = $(this).find('.pi-section-tab');
        tabs.slice(0, index).remove();
        const tab = $(this).find('.pi-section-tab:first');
        const id = setInterval(function () {
            tab.trigger('click');
            if (tab.hasClass('pi-section-active')) {
                clearInterval(id);
            }
        }, 0);
    });
});

importScript('MediaWiki:Icon.js');