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

MediaWiki:Mobile.js

来自LLWiki
Bhsd讨论 | 贡献2020年11月16日 (一) 21:56的版本
跳转到导航 跳转到搜索

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

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:前往菜单 → 设置(Mac为Opera → Preferences),然后隐私和安全 → 清除浏览数据 → 缓存的图片和文件
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
//<nowiki>
(function($, mw) {
    mw.hook('wikipage.content').add( function($content) {
        /* 引自[[moegirl:mediawiki:mobile.js]] */
        /* jquery.collapsible */
        if ($content.find('.mw-collapsible').length) {
            mw.loader.using('jquery.makeCollapsible').then(function() {
                $('.mw-collapsible').makeCollapsible();
            });
        }

        /* jquery.tablesorter */
        if ($content.find('table.sortable').length) {
            mw.loader.using('jquery.tablesorter').then(function() {
                $('table.sortable').tablesorter();
            });
        }
    });

    $.when( $.ready, mw.loader.using( 'ext.gadget.site-lib' ) ).then(function () {
        if ( ['edit', 'submit'].includes( mw.config.get('wgAction') )) { $('.mw-editTools').insertBefore('#wpTextbox1'); }

        // 页顶图标
        const restrictionEdit = mw.config.get('wgRestrictionEdit') || [],
            restrictionMove = mw.config.get('wgRestrictionMove') || [],
            isSysop = mw.config.get('wgUserGroups').includes('sysop'),
            isProtected = restrictionEdit.length + restrictionMove.length,
            fullurl = '/zh?title=' + mw.config.get('wgPageName'),
            isMovable = (restrictionMove.length === 0 && mw.config.get( 'wgUserGroups' ).includes('user')) ||
                mw.config.get('wgUserGroups').includes(restrictionMove[0]);
        if (mw.config.get('wgAction') == 'view' && mw.config.get('wgIsArticle')) {
            $( (isSysop ? '<li id="page-actions-protect" class="page-actions-menu__list-item"><a id="ca-protect" href="' + fullurl + '&action=protect" data-event-name="menu.protect" role="button" title="更改保护"><i class="fa fa-' + (isProtected? 'unlock' : 'lock') + '"></i></a></li><li id="page-actions-delete" class="page-actions-menu__list-item"><a id="ca-delete" href="' + fullurl + '&action=delete" data-event-name="menu.delete" role="button" title="删除"><i class="fa fa-cut"></i></a></li>' : '') +
                (isMovable ? '<li id="page-actions-move" class="page-actions-menu__list-item"><a id="ca-move" href="/zh/special:移动页面/' + mw.config.get('wgPageName') + '" data-event-name="menu.move" role="button" title="移动"><i class="fa fa-truck"></i></a></li>' : '') ).insertAfter('#language-selector');
        }

        /* 添加撤销链接 */
        const isUser = mw.config.get('wgUserGroups').includes('user'),
            title = mw.config.get('wgRelevantPageName');
        if (mw.config.get('wgCanonicalSpecialPageName') == "MobileDiff" && isUser && $('.revision-history-prev').length) {
            const pagename = mw.config.get('wgPageName');
            if ( /\.\.\./.test(pagename) ) { return; }
            const undo = pagename.match(/\/(\d*)$/)[1],
                undoafter = $('.revision-history-prev a').attr('href').match(/\/(\d*)$/)[1];
            $('.mw-mf-diff-info__link-latest a:last-child').after('<a href="/zh?title=' + title + '&action=edit&undo=' + undo + '&undoafter=' + undoafter + '">(' + wgULS("撤销","復原") + ')</a>');
        }
        if (mw.config.get('wgCanonicalSpecialPageName') == "History" && isUser) {
            var list = $('.page-summary a'),
                oldid = [];
            list.each(function() {
                oldid.push( this.href.match(/[\/=](\d*)$/)[1] );
            });
            for(var i = 0; i < list.length - 1; i++) {
                list.eq(i).append('<span style="font-size:0.9em">(<a href="/zh?title=' + title + '&action=edit&undo=' + oldid[i] + '&undoafter=' + oldid[i+1] + '">' + wgULS("撤销","復原") + '</a>)</span>');
            }
        }

        if (mw.config.get('wgCanonicalSpecialPageName') == "Recentchanges") {
            var timerFilter = setInterval(function() {
                if ($( '.mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces' ).length) {
                    clearInterval(timerFilter);
                    const isReverted = /invert=1/.test(window.location.href);
                    var node = $( '.mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces' ).first().clone().insertAfter( $( '.mw-rcfilters-ui-filterMenuSectionOptionWidget' ).first() )
                        .attr('id','ooui-invert')
                        .removeClass('oo-ui-element-hidden')
                        .on('click',function() {
                            if (isReverted) { window.location.href = window.location.href + '&invert=0'; }
                            else { window.location.href = window.location.href + '&invert=1'; }
                        }),
                        inputbox = node.find( 'input' );
                    inputbox[0].checked = isReverted;
                    if (isReverted) { inputbox.next().addClass('oo-ui-icon-check'); }
                    else { inputbox.next().removeClass('oo-ui-icon-check'); }
                    node.find( 'span.oo-ui-labelElement-label' ).text( wgULS("排除选项", "排除所選") );
                }
            }, 100);
        }

        /* Mobile Navmenu by GFwiki */
        var menu = $('<div>');
        menu.load('/zh?title=MediaWiki:MFSidebar&variant=' + mw.config.get('wgUserLanguage') + ' #mw-content-text ul', function() {
            var navlist = menu.children();
            if (mw.config.get('wgNamespaceNumber') >= 0) {
                navlist.append('<li><a href="/zh/Special:链入页面/' + mw.config.get("wgPageName") + '"><i class="fa fa-quote-right"></i><span>' + wgULS("链入页面", "連結至此的頁面") + '</span></a></li><li><a href="/zh/Special:链出更改/' + mw.config.get("wgPageName") + '"><i class="fa fa-share-alt"></i><span>' + wgULS("相关更改", "相關變更") + '</span></a></li><li><a href="/zh?title=Special:前缀索引&prefix=' + mw.config.get("wgTitle") + '/&namespace=' + mw.config.get("wgNamespaceNumber") + '&stripprefix=1"><i class="fa fa-folder-open"></i><span>' + wgULS("子页面", "子頁面") + '</span>');
            }
            var timer = setInterval(function() {
                    if ($('.menu ul').length) {
                        console.log("Mobile menu exists");
                        clearInterval(timer);
                        navlist.insertAfter($(".menu > ul").first());
                    }
                }, 100);
        });
    });
})(jQuery, mediaWiki);
//</nowiki>