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

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

来自LLWiki
跳转到导航 跳转到搜索
(// Edit via Wikiplus)
标签移动版网页编辑 移动版编辑
(// 使用Wikiplus小工具快速编辑)
标签移动版网页编辑 移动版编辑
 
(未显示2个用户的97个中间版本)
第1行: 第1行:
//<nowiki>
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
// 由ResourceLoader直接调用,不可使用ES6语法
/**
* @Description: 手机版全局JS
* @Author: 如无特殊说明,均为[[User:Bhsd]]
*/
"use strict";
/* global wgULS */
mw.hook( 'wikipage.content' ).add(function( $content ) {
// tabs-dropdown解析错误
$('.tabs-dropdown .tabs-content').append(function() { return $(this).next(); });
});


if (['Recentchanges', 'Watchlist'].includes( mw.config.get( 'wgCanonicalSpecialPageName' ) )) {
/* Add to MediaWiki:Mobile.js for custom Mobile Menu links
// 修改filter
for MW-1.34.2 with MobileFrontend and MinervaNeue
mw.hook( 'structuredChangeFilters.ui.initialized' ).add(function() {
Just replace span text and href to add links */
console.log('Hook: structuredChangeFilters.ui.initialized,开始修改filter');
/* 在匿名函数内定义变量 */
mw.loader.using( ['mediawiki.Uri', 'ext.gadget.site-lib'] ).then(function() {
(function() {
var uri = new mw.Uri(),
var recentchanges = '最近更改', sandbox = '沙盒', villagepump = '互助客栈', policy = '方针', help = '帮助';
invert = uri.query.invert || 0;
switch(mw.config.get('wgUserLanguage')) {
const node = $( '.mw-rcfilters-ui-itemMenuOptionWidget-view-namespaces' ).first().clone()
case 'zh-hant':
.insertAfter( $( '.mw-rcfilters-ui-filterMenuSectionOptionWidget' ).first() )
case 'zh-hk':
.attr('id', 'ooui-invert').removeClass( 'oo-ui-element-hidden' )
case 'zh-mo':
.on('click', function() {
case 'zh-tw':
recentchanges = '近期變更';
uri = new mw.Uri();
invert = uri.query.invert || 0;
villagepump = '互助客棧';
location.replace( uri.extend({ invert: 1 - invert }) );
policy = '方針';
help = '幫助';
});
node.find( 'span.oo-ui-labelElement-label' ).text( wgULS("排除选项", "排除所選") );
break;
node.find( 'input' ).prop('checked', invert > 0)
}
.next().addClass( 'oo-ui-image-invert' );
});
var timer = setInterval(function() {
});
if ($('.menu ul:first').length) {
}
console.log("mobile menu exists");
//</nowiki>
clearInterval(timer);
// [[category:作为模块的小工具]] [[category:不可关闭的小工具]] [[category:手机版小工具]]
$('.menu ul:first').append('<li><a href="/zh/special:recentchanges" class="mw-ui-icon mw-ui-icon-before"><span>' + recentchanges + '</span></a></li><li><a href="/zh/project:沙盒" class="mw-ui-icon mw-ui-icon-before"><span>' + sandbox + '</span></a></li><li><a href="/zh/project:互助客栈" class="mw-ui-icon mw-ui-icon-before"><span>' + villagepump + '</span></a></li><li><a href="/zh/project:方针" class="mw-ui-icon mw-ui-icon-before"><span>' + policy + '</span></a></li><li><a href="/zh/help:帮助总览" class="mw-ui-icon mw-ui-icon-before"><span>' + help + '</span></a></li>');
// {{DEFAULTSORT:*}}
}
}, 100); // check every 100ms
})();

/* 沙盒顶部 */
$('.page-LLWiki_沙盒 #mf-section-0').prepend('<table style="background-color:#F3F5F7;border:1px solid #D4DBE2;border-radius:5px;width:70%;border-left:10px solid #C5C5C5;margin:auto" cellpadding="4px" align="center"><tbody><tr><td width="15%"><div class="center"><img src="/mediawiki/img_auth.php/thumb/0/04/Bandeau-avertisement-3.png/50px-Bandeau-avertisement-3.png" decoding="async" srcset="/mediawiki/img_auth.php/0/04/Bandeau-avertisement-3.png 1.5x" width="50" height="50"></div></td><td style="padding-left:5px">欢迎来到沙盒!您可以在此进行编辑测试。</td></tr></tbody></table>');

2023年3月17日 (五) 13:28的最新版本

//<nowiki>
// 由ResourceLoader直接调用,不可使用ES6语法
/**
 * @Description: 手机版全局JS
 * @Author: 如无特殊说明,均为[[User:Bhsd]]
 */
"use strict";
/* global wgULS */
mw.hook( 'wikipage.content' ).add(function( $content ) {
	// tabs-dropdown解析错误
	$('.tabs-dropdown .tabs-content').append(function() { return $(this).next(); });
});

if (['Recentchanges', 'Watchlist'].includes( mw.config.get( 'wgCanonicalSpecialPageName' ) )) {
	// 修改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() {
			var uri = new mw.Uri(),
				invert = uri.query.invert || 0;
			const 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() {
				uri = new mw.Uri();
				invert = uri.query.invert || 0;
				location.replace( 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' );
		});
	});
}
//</nowiki>
// [[category:作为模块的小工具]] [[category:不可关闭的小工具]] [[category:手机版小工具]]
// {{DEFAULTSORT:*}}