mNo edit summary
mNo edit summary
Line 23: Line 23:


function advanceInfoboxImage(infoboxImageRow, infoboxImageCount) {
function advanceInfoboxImage(infoboxImageRow, infoboxImageCount) {
console.log('advanceInfoboxImage');
var transformStyle = infoboxImageRow.style.transform;
var transformStyle = infoboxImageRow.style.transform;
var offset = 0;
var offset = 0;
Line 39: Line 38:
var infoboxImageCount = infoboxImageRow.getElementsByClassName('image').length;
var infoboxImageCount = infoboxImageRow.getElementsByClassName('image').length;
if (infoboxImageCount > 1) {
if (infoboxImageCount > 1) {
console.log(setInterval(advanceInfoboxImage, 1500, infoboxImageRow, infoboxImageCount));
setInterval(advanceInfoboxImage, 1500, infoboxImageRow, infoboxImageCount);
}
}
}
}

Revision as of 20:49, 17 February 2023

function overrideSourceEdit() {
	var sourceEdit = document.getElementById('ca-edit');
	if (sourceEdit) {
	 var url = sourceEdit.getAttribute('href');
	 sourceEdit.setAttribute('href', url.split('&section')[0]);
	}
}

function getDarkModePreference() {
	return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
}

function applyDarkMode() {
	var body = document.querySelector('body');
	if (getDarkModePreference()) {
		if (!body.classList.contains('dark-mode')) { body.classList.add('dark-mode'); }
		document.documentElement.setAttribute('theme', 'dark');
	} else {
		if (body.classList.contains('dark-mode')) { body.classList.remove('dark-mode'); }
    	document.documentElement.setAttribute('theme', 'light');
	}
}

function advanceInfoboxImage(infoboxImageRow, infoboxImageCount) {
	var transformStyle = infoboxImageRow.style.transform;
	var offset = 0;
	if (transformStyle) {
		var currentOffset = parseInt(transformStyle.replace('translateX(','').replace('%)',''));
		offset = (currentOffset <= (infoboxImageCount - 1) * -100) ? 0 : (currentOffset - 100);
	}
	infoboxImageRow.style.transform = 'translateX(' + offset + '%)';
}

function startInfoboxImageScroll() {
	var elements = document.getElementsByClassName('infobox-image-row');
	if (elements.length > 0) {
		var infoboxImageRow = elements[0];
		var infoboxImageCount = infoboxImageRow.getElementsByClassName('image').length;
		if (infoboxImageCount > 1) {
			setInterval(advanceInfoboxImage, 1500, infoboxImageRow, infoboxImageCount);
		}
	}
	var body = document.querySelector('body');
	if (getDarkModePreference()) {
		if (!body.classList.contains('dark-mode')) { body.classList.add('dark-mode'); }
		document.documentElement.setAttribute('theme', 'dark');
	} else {
		if (body.classList.contains('dark-mode')) { body.classList.remove('dark-mode'); }
    	document.documentElement.setAttribute('theme', 'light');
	}
}

// applyDarkMode();
overrideSourceEdit();
startInfoboxImageScroll();