“MediaWiki:Mobile.js”的版本间差异

删除59字节 、​ 2021年10月10日 (日) 06:33
无编辑摘要
标签移动版网页编辑 移动版编辑
// 用户贡献页面不可创建
$('.mw-usertoollinks-contribs.new').off( 'click' ).click(function(e) { e.stopImmediatePropagation(); });
mw.hook( 'wikipage.content' ).add(function( $content ) {
const $collapsibleContent = $content.find( '.mw-collapsible:not(.mw-made-collapsible)' ),
$sortableContent = $content.find( 'table.sortable' );
/**
* @Function: 折叠
* @Source: [[moegirl:Mediawiki:Mobile.js]]
*/
if ($collapsibleContent.length) {
console.log('Hook: wikipage.content,开始执行折叠');
mw.loader.using( 'jquery.makeCollapsible' ).then(function() { $collapsibleContent.makeCollapsible(); });
}
}
// 表格排序
if ($sortableContent.length) {
console.log('Hook: wikipage.content,开始执行表格排序');
mw.loader.using( 'jquery.tablesorter' ).then(function() { $sortableContent.tablesorter(); });
}
}
// tabs-dropdown解析错误
$('.tabs-dropdown .tabs-content').append(function() { return $(this).next(); });
});
 
$(function() {
// 快速编辑工具
if (['edit', 'submit'].includes( mw.config.get('wgAction') )) {
$( '.mw-editTools' ).insertBefore( '#wpTextbox1' );
}
}
});
 
if (mw.config.get( 'wgCanonicalSpecialPageName' ) == "Recentchanges") {
// 修改filter
mw.hook( 'structuredChangeFilters.ui.initialized' ).add(function() {
console.log('Hook: structuredChangeFilters.ui.initialized,开始修改filter');
mw.loader.using( ['mediawiki.Uri', 'ext.gadget.site-lib'] ).then(function() {
const uri = new mw.Uri(),
invert = uri.query.invert || 0,
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() { window.location.href = uri.extend({ invert: 1 - invert }); });
node.find( 'span.oo-ui-labelElement-label' ).text( wgULS("排除选项", "排除所選") );
node.find( 'input' ).prop('checked', invert > 0)
.next().addClass( 'oo-ui-image-invert' );
});
});
} else if (mw.config.get( 'wgCanonicalSpecialPageName' ) == 'MobileMenu') {
const mw.hook( 'mobile.$menu' ).fire(= $('.menu') );
mw.loader.using( 'ext.gadget.site-lib' ).then(function() {
const nav = mw.addMobileLinks( mw.config.get( 'wgMinervaMenuData' ).extra );
$('<ul>', {html: nav}).insertAfter( $menu.children( 'ul' ).first() );
});
mw.hook( 'mobile.menu' ).fire( $menu );
}
 
if (mw.config.get('skin') == 'minerva' && mw.config.get('wgAction') == 'view' && mw.config.get( 'wgIsArticle' ) &&
mw.config.get( 'wgPageContentModel' ) == 'wikitext') {
$('body').on('click', '.language-selector:not(.disabled)', function() {
console.log( 'setInterval: 等待内容语言选单加载完毕' );
const timerStart = mw.now(),
timer = setInterval(function() {
if ($( '.suggested-languages > li' ).length === 0) { return; }
clearInterval(timer);
console.log('End setInterval: 内容语言选单加载完毕,用时 ' +
(mw.now() - timerStart) + ' ms,开始移除不转换、简体和繁体选项');
$( '.suggested-languages' ).find('.zh, .zh-hans, .zh-hant').parent().remove();
}, 100);
});
}
//</nowiki>
16,874

个编辑