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

“MediaWiki:Gadget-HotCat-zh-core.js”的版本间差异

来自LLWiki
跳转到导航 跳转到搜索
(skip the variants request when in the mobile mode)
(cleanup)
第5行: 第5行:
*/
*/
$(function() {
$(function() {
const mobileMode = mw.loader.getState( 'ext.gadget.MobileCategories' ) !== null;
const ns = mw.config.get('wgNamespaceNumber'),
mobileMode = mw.loader.getState( 'ext.gadget.MobileCategories' ) !== null;
if ( mw.config.get('wgCanonicalSpecialPageName') !== 'Upload' &&
(ns < 0 || // Special pages
ns === 10 || // Templates
ns === 274 || // Widget
ns === 828 || // Module (Lua)
ns === 8 || // MediaWiki
ns === 2 || // User
ns % 2 === 1 || // Talk page
!mw.config.get('wgArticleId') || // Non-existing file pages
mw.config.get("wgPageContentModel") !== "wikitext" ||
mw.config.get('wgAction') != 'view' ||
mw.config.get( 'wgIsRedirect' )) ) {
return;
}
if ( mobileMode ) {
if ( mobileMode ) {
mw.hook( 'wikipage.categories' ).add( main );
mw.hook( 'wikipage.categories' ).add( main );
第13行: 第28行:


function main() {
function main() {
const ns = mw.config.get('wgNamespaceNumber'),
const api = new mw.Api(),
specialPageName = mw.config.get('wgCanonicalSpecialPageName'),
categories = mw.config.get('wgCategories'),
categories = mw.config.get('wgCategories'),
noVariants = categories.length === 0 || mobileMode;
noVariants = categories.length === 0 || mobileMode,
if ( specialPageName !== 'Upload' &&
(ns < 0 || // Special pages
ns === 10 || // Templates
ns === 274 || // Widget
ns === 828 || // Module (Lua)
ns === 8 || // MediaWiki
ns === 2 || // User
ns % 2 === 1 || // Talk page
!mw.config.get('wgArticleId') || // Non-existing file pages
mw.config.get("wgPageContentModel") !== "wikitext" ||
mw.config.get('wgAction') != 'view' ||
mw.config.get( 'wgIsRedirect' )) ) {
return;
}
const pageName = mw.config.get('wgPageName'),
api = new mw.Api(),
canonicalCats = categories.map(ele => 'Category:' + ele).join('|');
canonicalCats = categories.map(ele => 'Category:' + ele).join('|');
var request1 = api.get({
var request1 = api.get({
action: 'query',
action: 'query',
titles: pageName,
titles: mw.config.get('wgPageName'),
prop: 'revisions|pageprops',
prop: 'revisions|pageprops',
rvprop: 'content',
rvprop: 'content',

2023年3月30日 (四) 23:48的版本

//<nowiki>
/**
 * @Function: 修改HotCat以识别繁简分类
 * @Contributors: [[User:Bhsd]]; [[User:葫芦又]]
 */
$(function() {
	const ns = mw.config.get('wgNamespaceNumber'),
		mobileMode = mw.loader.getState( 'ext.gadget.MobileCategories' ) !== null;
	if ( mw.config.get('wgCanonicalSpecialPageName') !== 'Upload' &&
		(ns < 0 || // Special pages
		ns === 10 || // Templates
		ns === 274 || // Widget
		ns === 828 || // Module (Lua)
		ns === 8 || // MediaWiki
		ns === 2 || // User
		ns % 2 === 1 || // Talk page
		!mw.config.get('wgArticleId') || // Non-existing file pages
		mw.config.get("wgPageContentModel") !== "wikitext" ||
		mw.config.get('wgAction') != 'view' ||
		mw.config.get( 'wgIsRedirect' )) ) {
		return;
	}
	if ( mobileMode ) {
		mw.hook( 'wikipage.categories' ).add( main );
	} else {
		main();
	}

	function main() {
		const api = new mw.Api(),
			categories = mw.config.get('wgCategories'),
			noVariants = categories.length === 0 || mobileMode,
			canonicalCats = categories.map(ele => 'Category:' + ele).join('|');
		var request1 = api.get({
			action: 'query',
			titles: mw.config.get('wgPageName'),
			prop: 'revisions|pageprops',
			rvprop: 'content',
			rvslots: 'main',
			ppprop: 'defaultsort',
			formatversion: 2,
		}), request2 = noVariants && $.Deferred().resolve() || api.get({
			action:'query',
			prop: 'info',
			inprop: 'varianttitles',
			formatversion: 2,
			titles: canonicalCats,
			converttitles: 1
		});
		$.when(request1, request2).then(function(data1, data2) {
			const pageInfo = data1[0].query.pages[0],
				obj1 = pageInfo.revisions[0].slots.main.content;
			window.hotcat_preload = obj1;
			mw.config.set( 'wgDefaultSortKey', (pageInfo.pageprops || {}).defaultsort || '' );
			mw.hook( 'gadget.hotcat.preloaded' ).fire();
			if ( noVariants ) {
				mw.loader.load('/zh?title=mediawiki:gadget-HotCat.js&action=raw&ctype=text/javascript');
				return;
			}
			const obj2 = data2[0].query.pages,
				cats = [...obj1.matchAll(/\[\[\s*(?:category|分类|分類)\s*:\s*(.*?)(?:\|.*)?\s*]]/ig)]
					.map( ele => ele[1].charAt(0).toUpperCase() + ele[1].slice(1).replace(/_/g, ' ') );
			obj2.forEach(function(ele) {
				const catVt = ele.varianttitles;
				if (!catVt) { return; }
				const catHans = catVt["zh-hans"].substring(3),
					catHant = catVt["zh-hant"].substring(3),
					catlink = $('#catlinks a[title="Category:' + catHans + '"], #catlinks a[title="Category:' + catHant + '"]');
				if (catlink.length === 0) { return; }
				if (cats.includes( catHans )) {
					catlink.attr('title','Category:' + catHans);
					catlink.attr('href','/zh/Category:' + catHans);
				}
				else {
					catlink.attr('title','Category:' + catHant);
					catlink.attr('href','/zh/Category:' + catHant);
				}
			});
			mw.loader.load('/zh?title=mediawiki:gadget-HotCat.js&action=raw&ctype=text/javascript');
		});
	}
});
//</nowiki>