MediaWiki:Common.js

来自Raccon Wiki
XNOR讨论 | 贡献2024年12月23日 (一) 21:44的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
/* 这里的任何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');