MediaWiki:Vector.js: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
  */
  */


var userId = mw.config.get("wgUserId");
if (mw.config.get("wgUserId") == null) {
 
if (userId == null) {
bg3wikiEnableAds();
bg3wikiEnableAds();
}
}
Line 49: Line 47:
p.style.color = "var(--fg-dark)";
p.style.color = "var(--fg-dark)";
p.innerText = "Ad placeholder";
p.innerText = "Ad placeholder";
// if (userId == 1) {
// p.innerText = "Ad block user? No problem. If you want,\n" +
// p.innerText = "Ad block user? No problem. If you want,\n" +
// "you can log in to hide this ad placeholder.";
// "you can log in to hide this ad placeholder.";
// }
ad.appendChild(p);
ad.appendChild(p);
}
}
Line 77: Line 73:
sidebarToolbox.style.display = "none";
sidebarToolbox.style.display = "none";
var p = document.createElement("p");
// var p = document.createElement("p");
p.style.textAlign = "center";
// p.style.textAlign = "center";
p.style.lineHeight = "1.5em";
// p.style.lineHeight = "1.5em";
p.style.fontSize = "0.9em";
// p.style.fontSize = "0.9em";
p.style.fontStyle = "italic";
// p.style.fontStyle = "italic";
p.style.color = "var(--fg-dark)";
// p.style.color = "var(--fg-dark)";
// if (userId == 1) {
// p.innerText = "Ad block user?\nNo problem.\n\n" +
// p.innerText = "Ad block user?\nNo problem.\n\n" +
// "If you want, you can log in to hide this ad placeholder.";
// "If you want, you can log in to hide this ad placeholder.";
// ad.innerHTML = "";
// ad.innerHTML = "";
// ad.appendChild(p);
// ad.appendChild(p);
// }
}
}

Revision as of 16:26, 7 August 2024

/* All JavaScript here will be loaded for users of the Vector skin */

/*
 * Note that some of the style changes that are applied when enabling ads are
 * already applied via MW:Vector.css, but only for anonymous visitors, so apply
 * them again in case ads are enabled explicitly, e.g. for testing.
 */

if (mw.config.get("wgUserId") == null) {
	bg3wikiEnableAds();
}

function bg3wikiEnableAds () {
	bg3wikiEnableSiteNoticeAd();
	bg3wikiEnableSidebarAd();
}

function bg3wikiEnableSiteNoticeAd() {
	var siteNotice = document.getElementById("siteNotice");
	if (siteNotice == null) {
		return;
	}
	
	var h1 = document.getElementById("firstHeading");
	h1.style.maxWidth = "calc(100% - 468px - 16px)";
	
	var indicators = document.getElementsByClassName("mw-indicators")[0];
	indicators.style.marginRight = "16px";
	
	var ad = document.createElement("div");
	ad.id = "bg3wiki-sitenotice-ad";
	ad.classList.add("bg3wiki-ad");
	ad.style.width = "468px";
	ad.style.height = "60px";
	ad.style.float = "right";
	ad.style.marginTop = "-17px";
	ad.style.border = "2px dotted var(--bdr-color)";
	ad.style.boxSizing = "border-box";
	ad.style.alignContent = "center";
	siteNotice.appendChild(ad);
	
	var p = document.createElement("p");
	p.style.textAlign = "center";
	p.style.lineHeight = "1.5em";
	p.style.fontSize = "1.1em";
	p.style.fontStyle = "italic";
	p.style.color = "var(--fg-dark)";
	p.innerText = "Ad placeholder";
//	p.innerText = "Ad block user? No problem. If you want,\n" +
//	"you can log in to hide this ad placeholder.";
	ad.appendChild(p);
}

function bg3wikiEnableSidebarAd() {
	var ad = document.querySelector("#p-Advertisement > div");
	if (ad == null) {
		return;
	}
	
	ad.style.width = "160px";
	ad.style.height = "600px";
	ad.style.marginTop = "5px";
	ad.style.border = "2px dotted var(--bdr-color)";
	ad.style.boxSizing = "border-box";
	ad.style.paddingLeft = "10px";
	ad.style.paddingRight = "10px";
	ad.style.alignContent = "center";
	
	var sidebarSpecial = document.getElementById("p-Special");
	sidebarSpecial.style.display = "none";
	
	var sidebarToolbox = document.getElementById("p-tb");
	sidebarToolbox.style.display = "none";
	
//	var p = document.createElement("p");
//	p.style.textAlign = "center";
//	p.style.lineHeight = "1.5em";
//	p.style.fontSize = "0.9em";
//	p.style.fontStyle = "italic";
//	p.style.color = "var(--fg-dark)";
//	p.innerText = "Ad block user?\nNo problem.\n\n" +
//	"If you want, you can log in to hide this ad placeholder.";
//	ad.innerHTML = "";
//	ad.appendChild(p);
}