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


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


function startInfoboxImageScroll() {
function startInfoboxImageScroll() {
console.log('startInfoboxImageScroll');
var elements = document.getElementsByClassName('infobox-image-row');
var elements = document.getElementsByClassName('infobox-image-row');
if (elements.length > 0) {
if (elements.length > 0) {
Line 40: Line 40:
var infoboxImageCount = infoboxImageRow.getElementsByClassName('image').length;
var infoboxImageCount = infoboxImageRow.getElementsByClassName('image').length;
if (infoboxImageCount > 1) {
if (infoboxImageCount > 1) {
console.log('imageCount: ' + infoboxImageCount);
setInterval(advanceInfoboxImage, 1500, infoboxImageRow, infoboxImageCount);
setInterval(advanceInfoboxImage, 1500, infoboxImageRow, infoboxImageCount);
}
}

Revision as of 20:34, 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) {
	console.log('advanceInfoboxImage');
	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() {
	console.log('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) {
			console.log('imageCount: ' + infoboxImageCount);
			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();