REMOVA OS ANÚNCIOS!

Apoiando através de https://apoia.se/arddhu a partir do tier de Apoiador, você pode navegar na wiki sem anúncios e ainda colabora com o projeto!

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

De Runarcana Wiki
Sem resumo de edição
Etiqueta: Revertido
Sem resumo de edição
Etiqueta: Revertido
Linha 62: Linha 62:


/* Runa TOC */
/* Runa TOC */
/* TOC */
$(document).ready(function () {
$(document).ready(function () {
   $(function () {
   var $window = $(window),
    var $window,
       $mwPanel = $("#mw-panel"),
       $mwPanel,
       $toc = $("#toc"),
       $floatTOC,
       headingOffsets = [],
      scrollHandler,
       headingThreshold = $window.height() / 5.0,
      tocLimit,
       $floatTOC;
       headingOffsets,
       headingThreshold,
       $toc = $("#toc");


    if (!$toc.length) {
  if (!$toc.length) {
      return;
    return; // Se não houver TOC, saia da função
    }
  }


    $window = $(window);
  // Clona o TOC original e configura
     $mwPanel = $("#mw-panel");
  $floatTOC = $toc
    .clone()
    .removeAttr("id")
     .attr("id", "floatTOC")
    .addClass("floatTOC")
    .appendTo("body");


    headingThreshold = $window.height() / 5.0;
  $floatTOC.find("ul").show(); // Mostra os itens da TOC


    $floatTOC = $toc
  // Adiciona comportamento de clique nos links da TOC
      .clone()
  $floatTOC.find("a").click(function (e) {
      .removeAttr("id")
    $("html, body").animate({
      .attr("id", "floatTOC")
       scrollTop: $(this.hash).offset().top - headingThreshold
       .addClass("floatTOC")
    }, 500); // Animação suave ao clicar
      .appendTo("body");
    return false; // Impede o comportamento padrão
  });


     $floatTOC.find("ul").show();
  // Armazenar os offsets dos cabeçalhos
  $(".mw-headline").each(function () {
     headingOffsets.push([$(this).attr("id"), $(this).offset().top]);
  });


    const tocToggleButton = document.createElement("button");
  // Lógica de rolagem
    tocToggleButton.setAttribute("id", "toctogglebutton");
  $window.on("scroll", function () {
     tocToggleButton.setAttribute("onclick", "toggleTOCVisibility()");
     var scrollTop = $window.scrollTop(),
        highlight = null;


     const tocToggleButtonIconNode = document.createElement("i");
     // Se a TOC estiver visível
    tocToggleButtonIconNode.setAttribute("class", "material-icons");
    if (scrollTop > $floatTOC.offset().top) {
      $mwPanel.hide(); // Esconde o painel lateral


    var tocToggleButtonIconNodeContent;
      // Verificar qual cabeçalho deve ser destacado
      $.each(headingOffsets, function (i, v) {
        if (scrollTop + headingThreshold < v[1]) {
          highlight = headingOffsets[i - 1][0]; // Captura o ID do cabeçalho atual
          return false; // Sai do loop
        }
      });


    if (getCookie("showTOC") == "false") {
      // Destacar o cabeçalho atual
      tocToggleButtonIconNodeContent = document.createTextNode("chevron_left");
      if (highlight) {
      $floatTOC.addClass("hiddenFloatTOC");
        var $current = $floatTOC.find('a[href="#' + $.escapeSelector(highlight) + '"]');
        $floatTOC.find("a").not($current).css({"font-weight": "", "text-decoration": "", "color": ""}).find('.toc-arrow').remove(); // Remove setas anteriores
        $current.css({"font-weight": "bold", "text-decoration": "underline", "color": "#D9D2E9"}); // Estilos do item atual
        $current.prepend('<span class="toc-arrow" style="margin-right: 5px; color: #D9D2E9;">→</span>'); // Adiciona a seta
      }
     } else {
     } else {
       tocToggleButtonIconNodeContent = document.createTextNode("chevron_right");
       $mwPanel.show(); // Mostra o painel lateral novamente
     }
     }
    tocToggleButtonIconNode.appendChild(tocToggleButtonIconNodeContent);
    tocToggleButton.appendChild(tocToggleButtonIconNode);
    $floatTOC.prepend(tocToggleButton);
    $floatTOC.find("a").click(function (e) {
      e.preventDefault(); // Previne o comportamento padrão do link
      // Decodifica o hash do link clicado
      var targetId = decodeURIComponent(this.hash);
      $("html, body").animate({
        scrollTop: $(targetId.replace(/\./g, "\\.")).offset().top - headingThreshold,
      });
      return false;
    });
    tocLimit = $toc.offset().top + $toc.height();
    headingOffsets = [];
    $(".mw-headline").each(function () {
      headingOffsets.push([$(this).attr("id"), $(this).offset().top]);
    });
    scrollHandler = function () {
      var $current,
        scrollTop = $window.scrollTop();
      if (scrollTop > tocLimit) {
        $mwPanel.hide();
        var highlight = false;
        $.each(headingOffsets, function (i, v) {
          if (i !== 0 && scrollTop + headingThreshold < v[1]) {
            highlight = headingOffsets[i - 1][0];
            return false;
          }
        });
        if (highlight) {
          // Limpar estilos anteriores
          $floatTOC.find("a").css({
            "font-weight": "",
            "text-decoration": "",
            "color": "",
          }).find('.toc-arrow').remove(); // Remove setas anteriores
          // Destacar o item atual
          $current = $floatTOC.find('a[href="#' + $.escapeSelector(highlight) + '"]');
          $current.css({
            "font-weight": "bold",
            "text-decoration": "underline",
            "color": "#D9D2E9", // Define a cor do texto
          });
          // Adiciona a seta à esquerda do texto
          $current.prepend('<span class="toc-arrow" style="margin-right: 5px; color: #D9D2E9;">→</span>'); // A seta é adicionada antes do texto
        }
      } else {
        $mwPanel.show();
      }
    };
    $window.on("scroll", scrollHandler); // Removido OO.ui.throttle
   });
   });
});
});
function toggleTOCVisibility() {
  var $floatTOC = $("#floatTOC");
  var $tocToggleButton = $("#toctogglebutton");
  if ($floatTOC.hasClass("hiddenFloatTOC")) {
    $floatTOC.removeClass("hiddenFloatTOC");
    const tocToggleButtonIconNode = document.createElement("i");
    tocToggleButtonIconNode.setAttribute("class", "material-icons");
    const tocToggleButtonIconNodeContent =
      document.createTextNode("chevron_right");
    tocToggleButtonIconNode.appendChild(tocToggleButtonIconNodeContent);
    $tocToggleButton.html("");
    $tocToggleButton.append(tocToggleButtonIconNode);
    setCookie("showTOC", "true");
  } else {
    $floatTOC.addClass("hiddenFloatTOC");
    const tocToggleButtonIconNode = document.createElement("i");
    tocToggleButtonIconNode.setAttribute("class", "material-icons");
    const tocToggleButtonIconNodeContent =
      document.createTextNode("chevron_left");
    tocToggleButtonIconNode.appendChild(tocToggleButtonIconNodeContent);
    $tocToggleButton.html("");
    $tocToggleButton.append(tocToggleButtonIconNode);
    setCookie("showTOC", "false");
  }
}
function setCookie(cname, cvalue, exdays) {
  const d = new Date();
  d.setTime(d.getTime() + (exdays || 365) * 24 * 60 * 60 * 1000);
  const expires = "expires=" + d.toUTCString();
  document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}
function getCookie(cname) {
  var name = cname + "=";
  var ca = document.cookie.split(";");
  for (var i = 0; i < ca.length; i++) {
    var c = ca[i];
    while (c.charAt(0) == " ") {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

Edição das 13h33min de 4 de novembro de 2024

/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */

/* Organize */
$(document).ready(function () {
  var tables = document.getElementsByClassName("organize");
  Array.prototype.forEach.call(tables, function (table) {
    var rows, switching, i, x, y, shouldSwitch;
    switching = true;
    /* Make a loop that will continue until
        no switching has been done: */
    while (switching) {
      // start by saying: no switching is done:
      switching = false;
      rows = table.rows;
      /* Loop through all table rows (except the
            first, which contains table headers): */
      for (i = 1; i < rows.length - 1; i++) {
        // start by saying there should be no switching:
        shouldSwitch = false;
        /* Get the two elements you want to compare,
                one from current row and one from the next: */
        x = rows[i].querySelector("h3>span.mw-headline");
        y = rows[i + 1].querySelector("h3>span.mw-headline");
        // check if the two rows should switch place:
        if (
          x.getAttribute("id").toLowerCase() >
          y.getAttribute("id").toLowerCase()
        ) {
          // if so, mark as a switch and break the loop:
          shouldSwitch = true;
          break;
        }
      }
      if (shouldSwitch) {
        /* If a switch has been marked, make the switch
                and mark that a switch has been done: */
        rows[i].parentNode.insertBefore(rows[i + 1], rows[i]);

        var rowIdA = rows[i].querySelector(".mw-headline").getAttribute("id");
        var rowIdB = rows[i + 1]
          .querySelector(".mw-headline")
          .getAttribute("id");
        var floatTOCLinkA = document.querySelector(
          'a[href$="' + rowIdA + '"]'
        ).parentNode;
        var floatTOCLinkB = document.querySelector(
          'a[href$="' + rowIdB + '"]'
        ).parentNode;

        floatTOCLinkB.parentNode.insertBefore(floatTOCLinkA, floatTOCLinkB);

        rowIdA = null;
        rowIdB = null;
        floatTOCLinkA = null;
        floatTOCLinkB = null;

        switching = true;
      }
    }
  });
});

/* Runa TOC */
$(document).ready(function () {
  var $window = $(window),
      $mwPanel = $("#mw-panel"),
      $toc = $("#toc"),
      headingOffsets = [],
      headingThreshold = $window.height() / 5.0,
      $floatTOC;

  if (!$toc.length) {
    return; // Se não houver TOC, saia da função
  }

  // Clona o TOC original e configura
  $floatTOC = $toc
    .clone()
    .removeAttr("id")
    .attr("id", "floatTOC")
    .addClass("floatTOC")
    .appendTo("body");

  $floatTOC.find("ul").show(); // Mostra os itens da TOC

  // Adiciona comportamento de clique nos links da TOC
  $floatTOC.find("a").click(function (e) {
    $("html, body").animate({
      scrollTop: $(this.hash).offset().top - headingThreshold
    }, 500); // Animação suave ao clicar
    return false; // Impede o comportamento padrão
  });

  // Armazenar os offsets dos cabeçalhos
  $(".mw-headline").each(function () {
    headingOffsets.push([$(this).attr("id"), $(this).offset().top]);
  });

  // Lógica de rolagem
  $window.on("scroll", function () {
    var scrollTop = $window.scrollTop(),
        highlight = null;

    // Se a TOC estiver visível
    if (scrollTop > $floatTOC.offset().top) {
      $mwPanel.hide(); // Esconde o painel lateral

      // Verificar qual cabeçalho deve ser destacado
      $.each(headingOffsets, function (i, v) {
        if (scrollTop + headingThreshold < v[1]) {
          highlight = headingOffsets[i - 1][0]; // Captura o ID do cabeçalho atual
          return false; // Sai do loop
        }
      });

      // Destacar o cabeçalho atual
      if (highlight) {
        var $current = $floatTOC.find('a[href="#' + $.escapeSelector(highlight) + '"]');
        $floatTOC.find("a").not($current).css({"font-weight": "", "text-decoration": "", "color": ""}).find('.toc-arrow').remove(); // Remove setas anteriores
        $current.css({"font-weight": "bold", "text-decoration": "underline", "color": "#D9D2E9"}); // Estilos do item atual
        $current.prepend('<span class="toc-arrow" style="margin-right: 5px; color: #D9D2E9;">→</span>'); // Adiciona a seta
      }
    } else {
      $mwPanel.show(); // Mostra o painel lateral novamente
    }
  });
});