MediaWiki:Common.js

来自Raccon Wiki
Xianglanga讨论 | 贡献2024年3月30日 (六) 23: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, Ultra: 6, Super: 7, Lunatic: 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);
    });
});

$( function () {
    $('span.mw-charinsert').wrap( '<a href="#">' ).click( function () {
        var text = this.title || this.textContent;
        var parts = text.split( '+' );
        if ( text === '+' ) parts = [ text ];
        var front = decodeURIComponent( parts[0] || '' );
        var back  = decodeURIComponent( parts[1] || '' );
        insertTags( front, back, '' );
        return false;
    } );
} );