User:Andrybak/Scripts/user-tabs-on-contribs.js
Appearance
< User:Andrybak | Scripts
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump.
This code will be executed when previewing this page.
This code will be executed when previewing this page.
This user script seems to have a documentation page at User:Andrybak/Scripts/user-tabs-on-contribs.
/*
* This is a fork of [[User:Enterprisey/user-tabs-on-contribs.js]],
* as of https://en.wikipedia.org/w/index.php?oldid=916388347
*/
(() => {
if ((mw.config.get('wgNamespaceNumber') !== -1) ||
(mw.config.get('wgCanonicalSpecialPageName') !== 'Contributions'))
{
return;
}
/**
* Makes a tab linking to the given page name. `redlink`` is a boolean
* indicating whether the page should be linked as a red link.
*/
function utocMakeTab(label, pageName, redlink, accesskey, id) {
setTimeout(() => {
const previousVersion = document.querySelector(".emptyPortlet #" + id);
if (previousVersion) {
previousVersion.remove();
}
}, 0);
const link = $("<a>")
.text(label)
.attr("accesskey", accesskey)
.attr("title", pageName + " (access key " + accesskey + ")")
.attr("href", mw.util.getUrl(pageName));
var tab = $("<li>")
.append(link)
.attr("id", id);
if (redlink) {
link.addClass("new");
}
tab.addClass('vector-tab-noicon mw-list-item');
return tab;
}
function getUserPageTabName() {
const nsTabUser = mw.message('Nstab-user');
if (!nsTabUser) {
return "User page";
}
return nsTabUser.text();
}
function getUserTalkPageTabName() {
const candidateKeys = ['Nstab-user_talk', 'Nstab-talk', 'Talk'];
for (const k of candidateKeys) {
const candidate = mw.message(k);
if (candidate && candidate.exists() && candidate.text().length > 0) {
return candidate.text();
}
}
return "Talk";
}
$.when(
mw.loader.using( [ "mediawiki.api", "mediawiki.util" ] ),
$.ready
).then( function () {
/*
* Load localization messages:
* [[MediaWiki:Nstab-user talk]], [[MediaWiki:Nstab-user]], [[MediaWiki:Talk]]
*/
new mw.Api().loadMessagesIfMissing(['Nstab-user', 'Nstab-user_talk', 'Nstab-talk', 'Talk']).done(() => {
const username = mw.config.get('wgRelevantUserName') || mw.util.getParamValue( "target" );
let userPageTitle = "User:" + username;
let userTalkPageTitle = "User talk:" + username;
new mw.Api().get( {
action: "query",
titles: userPageTitle + "|" + userTalkPageTitle,
formatversion: "2"
} ).done( function ( data ) {
if( data && data.query && data.query.pages ) {
let userPageRedlink;
let userTalkPageRedlink;
if (data.query.normalized) {
for (const n of data.query.normalized) {
if (n.from === userPageTitle) {
userPageTitle = n.to;
}
if (n.from === userTalkPageTitle) {
userTalkPageTitle = n.to;
}
}
}
Object.values( data.query.pages ).forEach( function ( v ) {
if (v.title === userPageTitle) {
userPageRedlink = v.missing;
}
if (v.title === userTalkPageTitle) {
userTalkPageRedlink = v.missing;
}
} );
$('#p-associated-pages').removeClass('emptyPortlet');
const userPageTabName = getUserPageTabName();
const userTalkPageTabName = getUserTalkPageTabName();
$( "#left-navigation nav ul" )
.append(utocMakeTab(userPageTabName, userPageTitle, userPageRedlink, "c", "ca-nstab-user"))
.append(utocMakeTab(userTalkPageTabName, userTalkPageTitle, userTalkPageRedlink, "t", "ca-nstab-talk"));
}
} );
});
} );
})();