MediaWiki:Common.js

MediaWiki interface page
Revision as of 14:07, 31 January 2024 by Jan.vales (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */


var coll = document.getElementsByClassName("collapsible");
var i;

for (i = 0; i < coll.length; i++) {
  coll[i].addEventListener("click", function() {
    this.classList.toggle("active");
    var content = this.nextElementSibling;
    $(content).toggle('fast');
  });
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
DONT PUKE IMAGE CAROUSEL ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

function setMainImage(imageHtml) {
    var mainImageDiv = document.querySelector('.mainImage');
    mainImageDiv.innerHTML = imageHtml + '<div class="loadingBar"></div>';
}

function addClickEventToImages() {
    var images = document.querySelectorAll('.carousel .dpImage');
    images.forEach(function(image, index) {
        image.addEventListener('click', function() {
            setMainImage(this.innerHTML);
            lastSelectedIndex = currentIndex;
            currentIndex = index;
            resetAndStartLoadingBar();
        });
    });
}

var lastSelectedIndex = -1;
var currentIndex = 0;
var rotationInterval = 10000; // 10 seconds
function getNextIndex(imagesLength) {
    var nextIndex;
    do {
        nextIndex = Math.floor(Math.random() * imagesLength);
    } while (nextIndex === lastSelectedIndex);
    return nextIndex;
}

function rotateImages() {
    var images = document.querySelectorAll('.carousel .dpImage');

    setInterval(function() {
        currentIndex = getNextIndex(images.length);

        setMainImage(images[currentIndex].innerHTML);
        lastSelectedIndex = currentIndex;

        resetAndStartLoadingBar();
    }, rotationInterval);
}

function resetAndStartLoadingBar() {
    var loadingBar = document.querySelector('.loadingBar');
    loadingBar.style.transition = 'none'; // Disable transition
    loadingBar.style.width = '0%'; // Reset the width immediately
    setTimeout(function() {
        loadingBar.style.transition = 'width ' + rotationInterval + 'ms linear';
        loadingBar.style.width = '100%'; // Start the transition
    }, 0); // Start on the next event loop
}

// Initialize
window.onload = function() {
    addClickEventToImages();
    rotateImages();
    setMainImage(document.querySelector('.carousel .dpImage').innerHTML); // Set the first image as the default
    resetAndStartLoadingBar(); // Start the loading bar
};