MediaWiki:Common.js: mudanças entre as edições

De otPokemon Wiki
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
 
(149 revisões intermediárias por 2 usuários não estão sendo mostradas)
Linha 1: Linha 1:
/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */
var coll1 = document.getElementsByClassName("collapsible-battle-pass");
var slideIndex = 0;
var coll2 = document.getElementsByClassName("collapsible-pokemon");
showSlides();
//add the global timer variable
var slides,dots,timer;


function showSlides() {
function toggleContent(clickedButton, contentToToggle) {
    var i;
  var allContents = document.getElementsByClassName("content");
    slides = document.getElementsByClassName("mySlides");
  for (var j = 0; j < allContents.length; j++) {
     dots = document.getElementsByClassName("dot");
     allContents[j].style.maxHeight = null;
    for (i = 0; i < slides.length; i++) {
  }
      slides[i].style.display = "none";
 
    }
  var allButtons = document.getElementsByClassName("collapsible-battle-pass");
    slideIndex++;
  for (var k = 0; k < allButtons.length; k++) {
    if (slideIndex> slides.length) {slideIndex = 1}   
    allButtons[k].classList.remove("active");
    for (i = 0; i < dots.length; i++) {
  }
        dots[i].className = dots[i].className.replace(" active", "");
  allButtons = document.getElementsByClassName("collapsible-pokemon");
     }
  for (var k = 0; k < allButtons.length; k++) {
     slides[slideIndex-1].style.display = "block";
    allButtons[k].classList.remove("active");
    dots[slideIndex-1].className += " active";
  }
     //put the timeout in the timer variable
 
     timer = setTimeout(showSlides, 4000); // Change image every 8 seconds
  if (contentToToggle.style.maxHeight) {
     contentToToggle.style.maxHeight = null;
  } else {
     contentToToggle.style.maxHeight = contentToToggle.scrollHeight + "px";
  }
 
  clickedButton.classList.add("active");
}
 
for (var i = 0; i < coll1.length; i++) {
  coll1[i].addEventListener("click", function() {
     var content = this.nextElementSibling;
     toggleContent(this, content); 
  });
}
}


function plusSlides(position) {
for (var i = 0; i < coll2.length; i++) {
    //clear/stop the timer
  coll2[i].addEventListener("click", function() {
    clearTimeout(timer);
     var content = this.nextElementSibling;  
    slideIndex +=position;
    toggleContent(this, content);  
    if (slideIndex> slides.length) {slideIndex = 1}
  });
    else if(slideIndex<1){slideIndex = slides.length}
    for (i = 0; i < slides.length; i++) {
      slides[i].style.display = "none"
     }
    for (i = 0; i < dots.length; i++) {
        dots[i].className = dots[i].className.replace(" active", "");
    }
    slides[slideIndex-1].style.display = "block"; 
    dots[slideIndex-1].className += " active";
    //create a new timer
    timer = setTimeout(showSlides, 4000);
}
}


function currentSlide(index) {
function toggleShinyList() {
     //clear/stop the timer
     var shinyList = document.getElementById("shiny-list");
    clearTimeout(timer);
     if (shinyList.style.display === "none" || shinyList.style.display === "") {
     if (index> slides.length) {index = 1}
        shinyList.style.display = "block";
    else if(index<1){index = slides.length}
     } else {
    //set the slideIndex with the index of the function
        shinyList.style.display = "flex";
    slideIndex = index;
     for (i = 0; i < slides.length; i++) {
      slides[i].style.display = "none";
     }
     }
    for (i = 0; i < dots.length; i++) {
        dots[i].className = dots[i].className.replace(" active", "");
    }
    slides[index-1].style.display = "block"; 
    dots[index-1].className += " active";
    //create a new timer
    timer = setTimeout(showSlides, 4000);
}
}
mw.loader.using('jquery', function () {
    $(document).ready(function () {
        var isAscending = true;
        var $sortButton = $('<div class="sort-button" style="width: 60px; height: 50px; background-image: url(https://wiki.otpokemon.com/images/9/92/O-c.png); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 3px; cursor: pointer; float: right; margin-right: 0.5%;margin-top: -50px;"></div>');
        $('.square-div-shiny').before($sortButton);
   
        $sortButton.on('click', function () {
            var $container = $('.square-div-shiny');
            var $boxes = $container.children('.square-box-shiny');
            $boxes.sort(function (a, b) {
                var numA = parseInt($(a).find('.square-name-shiny').text().match(/\d+/)[0], 10);
                var numB = parseInt($(b).find('.square-name-shiny').text().match(/\d+/)[0], 10);
                return isAscending ? numA - numB : numB - numA;
            });
            $container.append($boxes);
            isAscending = !isAscending;
            var newImage = isAscending
                ? 'https://wiki.otpokemon.com/images/e/e2/O-d.png'
                : 'https://wiki.otpokemon.com/images/9/92/O-c.png';
           
            $sortButton.css('background-image', 'url(' + newImage + ')');
        });
    });
});

Edição atual tal como às 00h17min de 17 de março de 2025

var coll1 = document.getElementsByClassName("collapsible-battle-pass");
var coll2 = document.getElementsByClassName("collapsible-pokemon");

function toggleContent(clickedButton, contentToToggle) {
  var allContents = document.getElementsByClassName("content");
  for (var j = 0; j < allContents.length; j++) {
    allContents[j].style.maxHeight = null; 
  }

  var allButtons = document.getElementsByClassName("collapsible-battle-pass");
  for (var k = 0; k < allButtons.length; k++) {
    allButtons[k].classList.remove("active");
  }
  allButtons = document.getElementsByClassName("collapsible-pokemon");
  for (var k = 0; k < allButtons.length; k++) {
    allButtons[k].classList.remove("active");
  }

  if (contentToToggle.style.maxHeight) {
    contentToToggle.style.maxHeight = null; 
  } else {
    contentToToggle.style.maxHeight = contentToToggle.scrollHeight + "px";
  }

  clickedButton.classList.add("active");
}

for (var i = 0; i < coll1.length; i++) {
  coll1[i].addEventListener("click", function() {
    var content = this.nextElementSibling; 
    toggleContent(this, content);  
  });
}

for (var i = 0; i < coll2.length; i++) {
  coll2[i].addEventListener("click", function() {
    var content = this.nextElementSibling; 
    toggleContent(this, content); 
  });
}

function toggleShinyList() {
    var shinyList = document.getElementById("shiny-list");
    if (shinyList.style.display === "none" || shinyList.style.display === "") {
        shinyList.style.display = "block";
    } else {
        shinyList.style.display = "flex";
    }
}


mw.loader.using('jquery', function () {
    $(document).ready(function () {
        var isAscending = true;
        var $sortButton = $('<div class="sort-button" style="width: 60px; height: 50px; background-image: url(https://wiki.otpokemon.com/images/9/92/O-c.png); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 3px; cursor: pointer; float: right; margin-right: 0.5%;margin-top: -50px;"></div>');
        $('.square-div-shiny').before($sortButton);
    

        $sortButton.on('click', function () {
            var $container = $('.square-div-shiny');
            var $boxes = $container.children('.square-box-shiny');

            $boxes.sort(function (a, b) {
                var numA = parseInt($(a).find('.square-name-shiny').text().match(/\d+/)[0], 10);
                var numB = parseInt($(b).find('.square-name-shiny').text().match(/\d+/)[0], 10);

                return isAscending ? numA - numB : numB - numA;
            });

            $container.append($boxes);
            isAscending = !isAscending;

            var newImage = isAscending 
                ? 'https://wiki.otpokemon.com/images/e/e2/O-d.png' 
                : 'https://wiki.otpokemon.com/images/9/92/O-c.png';
            
            $sortButton.css('background-image', 'url(' + newImage + ')');
        });
    });
});