MediaWiki:Vector.js: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:


function bg3wikiEnableSiteNoticeAd() {
function bg3wikiEnableSiteNoticeAd() {
var siteNotice = document.getElementById("siteNotice");
var ad = document.getElementById("bg3wiki-sitenotice-ad");
if (siteNotice == null) {
if (ad == null) {
return;
return;
}
}
ad.style.display = "block";
var h1 = document.getElementById("firstHeading");
var h1 = document.getElementById("firstHeading");
Line 27: Line 29:
var indicators = document.getElementsByClassName("mw-indicators")[0];
var indicators = document.getElementsByClassName("mw-indicators")[0];
indicators.style.marginRight = "16px";
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);
}
}



Revision as of 19:40, 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 ad = document.getElementById("bg3wiki-sitenotice-ad");
	if (ad == null) {
		return;
	}
	
	ad.style.display = "block";
	
	var h1 = document.getElementById("firstHeading");
	h1.style.maxWidth = "calc(100% - 468px - 16px)";
	
	var indicators = document.getElementsByClassName("mw-indicators")[0];
	indicators.style.marginRight = "16px";
}

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);
}