Jump to content

User:SD0001/common.js

From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
mw.loader.load('http://localhost:5500');

// Enable caching for resource loads, see [[User:SD0001/Making_user_scripts_load_faster]], @revision 8
if(!/\bnocache=\b/.test(location.href)){let e=mw.config.values,t="text/javascript",o="text/css",n=(n,r,i)=>(n=n.replace(/special:mypage/i,"User:"+e.wgUserName),$.get("https://"+r+"/w/api.php?titles="+n+"&origin=*&format=json&formatversion=2&uselang=content&maxage=86400&smaxage=86400&action=query&prop=revisions|info&rvprop=content&rvlimit=1&inprop=protection").then((e=>{let a=e.query.pages[0];if(!a.missing){if(2!==a.ns&&8!==a.ns&&!a.protection.find((e=>"edit"===e.type&&"sysop"===e.level)))return $.Deferred().reject('Refused to load "'+n+'"@'+r+": unprotected page");let e=a.revisions[0].content;if(i&&i!==t||"javascript"!==a.contentmodel){if(i!==o||"css"!==a.contentmodel)return $.Deferred().reject('Refused to load "'+n+'"@'+r+": content type mismatch");mw.loader.addStyleTag(e)}else{let t=document.createElement("script");t.innerHTML=e,document.head.appendChild(t)}}}))),r=e.wgServerName,i=e=>{let t=/^(?:(?:https:)?\/\/(.*))?\/w\/index.php/.exec(e),o=/\btitle=([^=?&]*)/.exec(e);return t&&o&&/\baction=raw\b/.test(e)&&/\bctype=/.test(e)?[o[1],t[1]||r]:null};window.importScript=e=>{n(encodeURIComponent(e),r,t)},window.importStyleSheet=e=>{n(encodeURIComponent(e),r,o)};let a=mw.loader.load;mw.loader.load=function(e,t){let o=i(e);o?n(o[0],o[1],t):a.apply(mw.loader,[...arguments])};let l=mw.loader.getScript;mw.loader.getScript=function(e){let o=i(e);return o?n(o[0],o[1],t):l.apply(mw.loader,[...arguments])}}


var onMobile = /Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);

if (mw.config.get('skin') === 'vector-2022') {
	importScript('User:Jdlrobson/responsiveVector2022.js');
}

$.ready.then(function() {
	// When redirected to a section, show the "Redirected from" text at the top of the section too, and add section name at the top
	if( $('.mw-redirectedfrom')[0] && window.location.hash ) {
		var hash = window.location.hash, sectionName = hash.slice(1).replace(/_/g, ' ');
		var redirectedFromSpan = $('.mw-redirectedfrom')[0];
		$('#' + $.escapeSelector(hash.slice(1))).parent().after(
			$(redirectedFromSpan).clone().attr('id', 'contentSub2')
		);
        redirectedFromSpan.innerHTML = redirectedFromSpan.innerHTML
        	.replace(/\)$/, ' to section <a href="' + hash + '">' + decodeURIComponent(sectionName) + '</a>)');
	}

	if (mw.config.get('skin') === 'vector') {
		// Make the subject page button not follow the redirect
		if ($("#p-namespaces a")[0].className.includes('mw-redirect')) {
			$("#p-namespaces a")[0].href += '?redirect=no';
		}
	}

	// reduce font size of code on mobile
	// disable syntax highlightening of large code blocks as it causes mobile browser to crash 
	if (onMobile) {
		mw.loader.addStyleTag('.mw-highlight pre { font-size: 70%; }');
		$('pre').each(function() {
			if (this.childElementCount > 2000) {
				this.textContent = this.textContent;
		    }
		});
	}
});

// pop-ups
window.popupFixDabs = true;
window.popupDabsAutoClick = 'wpPreview';

// MoreMenu
mw.hook('moremenu.ready').add(function (config) {
	MoreMenu.addLink('page', 'ORES',
		'https://ores.wikimedia.org/scores/enwiki/?models=articlequality|articletopic|draftquality|drafttopic&revids=' + mw.config.get('wgRevisionId'));
});

// dark-mode-toggle
window.wpDarkModeAutoToggle = true;

mw.loader.using('mediawiki.util').then(function() {
	if (mw.util.getParamValue('action') === 'history') {
		importScript('User:Ale_jrb/Scripts/userhist.js');  // [[User:Ale_jrb/Scripts/userhist.js]]
		importScript('User:SD0001/hide-reverted-edits.js'); // Backlink: [[User:SD0001/hide-reverted-edits.js]]
	} else if (mw.util.getParamValue('diff') || mw.config.get('wgPageName') === 'Special:ComparePages') {
		importScript('User:Enterprisey/diff-permalink.js'); // [[User:Enterprisey/diff-permalink.js]]
		importScript('User:Nardog/SmartDiff.js'); // [[User:Nardog/SmartDiff.js]]
	}	
});

if (mw.config.get('wgNamespaceNumber') === 0) {
	if (!onMobile) {
		importScript('User:Titodutta/scripts/SearchHelper.js'); // Backlink: [[User:Titodutta/scripts/SearchHelper.js]]	
	}
	// also imported below for draftspace
	importScript('User:Headbomb/unreliable.js'); // [[User:Headbomb/unreliable.js]]
} else if (mw.config.get('wgNamespaceNumber') % 2 === 1 || mw.config.get('wgCanonicalNamespace') === 'Project') {
	importScript('User:Jackmcbarn/editProtectedHelper.js'); // [[User:Jackmcbarn/editProtectedHelper.js]]
	
	if (mw.config.get('wgCanonicalNamespace') === 'Project') {
		if (mw.config.get('wgPageName').startsWith('Wikipedia:Requested_articles')) {
			importScript('User:Enterprisey/req-helper.js'); // [[User:Enterprisey/req-helper.js]]
		} else if (mw.config.get('wgPageName') === 'Wikipedia:AutoWikiBrowser/Script') {
			importScript('User:Joeytje50/JWB.js/load.js'); // [[User:Joeytje50/JWB.js/load.js]]
		} else if (mw.config.get('wgPageName') === 'Wikipedia:Requests_for_undeletion') {
			importScript('User:SD0001/RFUD-helper.js'); // [[User:SD0001/RFUD-helper.js]]
		}
	}
} else if (['Template', 'Module'].includes(mw.config.get("wgCanonicalNamespace"))) {
	importScript('User:Enterprisey/sync-template-sandbox.js'); // [[User:Enterprisey/sync-template-sandbox.js]] 
	importScript('User:SD0001/sandbox4.js'); // [[User:Jackmcbarn/advancedtemplatesandbox.js]], [[User:SD0001/sandbox4.js]]
} else if (mw.config.get('wgCanonicalNamespace') === 'Draft') {
	importScript('User:SD0001/draft-sort-burst.js'); // [[User:SD0001/draft-sort-burst.js]]
	draft_sort_burst_watchlistOption = 'watch';
	importScript('User:SD0001/edits-since-decline.js'); // Backlink: [[User:SD0001/edits-since-decline.js]]
	importScript('User:Headbomb/unreliable.js'); // also imported for mainspace
} else if (mw.config.get('wgCanonicalNamespace') === 'Category') {
	importScript('User:קיפודנחש/cat-a-lot.js'); // Backlink: [[User:קיפודנחש/cat-a-lot.js]]
	importScript('User:SD0001/shortdescs-in-category.js'); // Backlink: [[User:SD0001/shortdescs-in-category.js]]
	importScript('User:Nardog/CatChangesViewer.js'); // Backlink: [[User:Nardog/CatChangesViewer.js]]
} else if (mw.config.get('wgCanonicalNamespace') === 'Special') {
	if (mw.config.get('wgCanonicalSpecialPageName') === 'Watchlist') {
		importScript('User:SD0001/watchlist-update-title.js'); // Backlink: [[User:SD0001/watchlist-update-title.js]]
	} else if (mw.config.get('wgCanonicalSpecialPageName') === 'Whatlinkshere') {
		mw.loader.load('//www.wikidata.org/w/index.php?title=MediaWiki:Linkscount.js&action=raw&ctype=text/javascript'); // [[wikidata:MediaWiki:Linkscount.js]]
	} else if (mw.config.get('wgPageName') === 'Special:RecentChanges') {
		importScript('User:SD0001/RC-links-new-tab.js'); // Backlink: [[User:SD0001/RC-links-new-tab.js]]
	} else if (mw.config.get('wgCanonicalSpecialPageName') === 'Log') {
		importScript('User:Amorymeltzer/logSwap.js'); // Backlink: [[User:Amorymeltzer/logSwap.js]]
	} else if (mw.config.get('wgPageName') === 'Special:PrivateSandbox') {
		importScript('User:SD0001/private-sandbox.js'); // Backlink: [[User:SD0001/private-sandbox.js]]
	}
} else if (mw.config.get('wgPageName') === 'MediaWiki:Gadgets-definition') {
	mw.loader.load('//en.wiktionary.org/w/index.php?title=User:Erutuon/scripts/gadgets-definition.js&action=raw&ctype=text/javascript'); // [[wikt:User:Erutuon/scripts/gadgets-definition.js]]
}

var codePage = ['javascript', 'json', 'css', 'sanitized-css', 'Scribunto'].includes(mw.config.get('wgPageContentModel'));
var templatePage = mw.config.get('wgCanonicalNamespace') === 'Template' && !mw.config.get('wgPageName').endsWith('/doc');
if (codePage || templatePage) {
	$.ready.then(function() {
		$('#mw-script-doc .mbox-text').append(" Install using <code>importScript('"+mw.config.get('wgPageName').replace(/_/g, ' ')+"');</code>");
	});
	importScript('User:Danski454/codeEditWindowSize.js'); // Backlink: [[User:Danski454/codeEditWindowSize.js]]
	window.codeEditorHeight = 661;
	importScript('User:Nardog/CodeEditorAssist.js'); // Backlink: [[User:Nardog/CodeEditorAssist.js]]
}

importScript('User:Ale_jrb/Scripts/csdhelper.js');   // [[User:Ale_jrb/Scripts/csdhelper.js]]
importScript('User:SD0001/deleted-metadata-link.js'); // [[User:SD0001/deleted-metadata-link.js]]
importScript('User:SD0001/quickViewDeleted.js'); // [[User:SD0001/quickViewDeleted.js]]
importScript('User:Evad37/rater.js'); // [[User:Evad37/rater.js]]
importScript('User:SD0001/DYK-helper.js'); // Backlink: [[User:SD0001/DYK-helper.js]]
importScript('User:SD0001/StubSorter.js'); // Backlink: [[User:SD0001/StubSorter.js]]
importScript('User:SD0001/W-Ping.js'); // Backlink: [[User:SD0001/W-Ping.js]]
// importScript('User:SD0001/easy-merge.js'); // Backlink: [[User:SD0001/easy-merge.js]]
importScript('User:BrandonXLF/QuickEdit.js'); // Backlink: [[User:BrandonXLF/QuickEdit.js]]

importScript('User:Jack who built the house/convenientDiscussions.js'); // [[commons:User:Jack who built the house/Convenient Discussions]]
// Remove own comment marker in CD
mw.hook('convenientDiscussions.pageReadyFirstTime').add(() => {
	mw.loader.addStyleTag(`:root { --cd-comment-own-marker-color: unset; }`);
});