Jump to content

User:Anpang/Chocolate.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.
// Chocolate, a utility user script
// v1.1.1 (16 December 2023)

// Objects to Chocolate are prefixed with "choc".

// variables
const chocPath = "https://en.wikipedia.org/w/index.php?title=User:Anpang01/Chocolate";
const chocVersion = "1.1.1";

let chocEnabled = [
	"Wiktionary", "Wikidata", "ExtraSandbox",
	"NoSiteSub", "NoCopyWarn",
	"WhatWiki", "ShowPrintFooter"
];
// will make cool Special:ChocolatePreferences page later

// functions
function chocCapitalize(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

// load css
importStylesheet("User:Anpang01/Chocolate.css");

// add icon and preferences link
$("body").append(`
	<div id="choc-icon-div">
		<img id="choc-icon" src="/media/wikipedia/commons/1/1c/Twemoji_1f36b.svg" />
		<span id="choc-icon-text">${chocVersion}</span>
	</div>
`);

$("#pt-preferences").append(`
		<a id="choc-prefslink" href="/wiki/Special:ChocolatePreferences" title="Chocolate preferences">
			<span>(C)</span>
		</a>
`);

// Special:ChocolatePreferences
if(mw.config.get("wgPageName") == "Special:ChocolatePreferences") {
    $("#firstHeading").text("Chocolate preferences");
    $("#mw-content-text").text("Chocolate preferences are coming soon.");
}

// link-related modules
if (chocEnabled.includes("Wiktionary")) {
	$("#p-cactions > div > ul").append(`
		<li id="choc-ca-wiktionary" class="mw-list-item">
			<a href="https://en.wiktionary.org/wiki/${mw.config.get("wgPageName")}" title="Corresponding Wiktionary page">
				<span>Wiktionary</span>
			</a>
		</li>
	`);
}
if (chocEnabled.includes("Wikidata")) {
	$("#p-cactions > div > ul").append(`
		<li id="choc-ca-wikidata" class="mw-list-item">
			<a href="https://wikidata.org/wiki/Special:Search/${mw.config.get("wgPageName")}" title="Corresponding Wikidata page">
				<span>Wikidata</span>
			</a>
		</li>
	`);
}

if (chocEnabled.includes("ExtraSandbox")) {
	$("#pt-sandbox").append(`
		<a id="choc-sandbox2" href="/wiki/User:${mw.config.get("wgUserName")}/sandbox2" title="Your extra sandbox">
			<span>(2)</span>
		</a>
	`);
}

// "no" modules
if (chocEnabled.includes("NoSiteSub")) {
	$("#siteSub").remove();
}
if (chocEnabled.includes("NoCopyWarn")) {
	$("#editpage-copywarn").remove();
}

// other
if (chocEnabled.includes("WhatWiki")) {
	const subdomain = window.location.host.split(".")[0];
	const after = window.location.host.split(".")[1];
	$(`
		<span id="choc-whatwiki">
			[${subdomain.toUpperCase()} ${chocCapitalize(after)}]
		</span>
	`).appendTo('#firstHeading');
}

if(chocEnabled.includes("ShowPrintFooter")) {
	$(".printfooter").addClass("choc-printfooter");
}