Difference between revisions of "MediaWiki:Common.js"

From XilePK - Ragnarok Online Server
Jump to navigation Jump to search
Line 94: Line 94:
 
   }
 
   }
 
});
 
});
// Adicione este código em um arquivo JS que é carregado pela sua MediaWiki
+
 
// Geralmente em common.js ou algum outro arquivo JS personalizado
+
 
$(document).ready(function() {
+
/* JavaScript para funcionalidade de cópia */
  $('.warp-copy').on('click', function() {
+
mw.hook('wikipage.content').add(function ($content) {
    const textToCopy = $(this).data('copy');
+
    // Adiciona funcionalidade aos elementos com a classe warp-copy
   
+
    $content.find('.warp-copy').on('click', function () {
    // Cria um elemento temporário para copiar o texto
+
        var textToCopy = $(this).attr('data-copy');
    const tempElement = document.createElement('textarea');
+
       
    tempElement.value = textToCopy;
+
        // Cria um elemento temporário para copiar o texto
    document.body.appendChild(tempElement);
+
        var tempInput = document.createElement('textarea');
    tempElement.select();
+
        tempInput.value = textToCopy;
   
+
        document.body.appendChild(tempInput);
    // Executa o comando de cópia
+
        tempInput.select();
    document.execCommand('copy');
+
       
   
+
        try {
    // Remove o elemento temporário
+
            // Executa o comando de cópia
    document.body.removeChild(tempElement);
+
            var successful = document.execCommand('copy');
   
+
           
    // Feedback visual (opcional)
+
            // Feedback visual temporário ao usuário
    const originalText = $(this).text();
+
            var originalText = $(this).text();
    $(this).text('Copiado!');
+
            if (successful) {
    setTimeout(() => {
+
                // Altera o texto do tooltip para "Copied!" por um breve período
      $(this).text(originalText);
+
                var $this = $(this);
    }, 1000);
+
                $this.addClass('copied');
  });
+
               
 +
                // Altera o texto do tooltip temporariamente
 +
                $this.attr('data-tooltip-text', 'Copied!');
 +
               
 +
                setTimeout(function () {
 +
                    $this.removeClass('copied');
 +
                    $this.attr('data-tooltip-text', 'Copy');
 +
                }, 1500);
 +
            }
 +
        } catch (err) {
 +
            console.error('Erro ao copiar texto: ', err);
 +
        }
 +
       
 +
        // Remove o elemento temporário
 +
        document.body.removeChild(tempInput);
 +
    });
 
});
 
});

Revision as of 15:07, 25 April 2025

/* Auto-expand sections when clicking anchored links */
$(function() {
  // Função principal para executar quando a página terminar de carregar
  function initializeAnchorExpansion() {
    // Se existir um hash na URL quando a página carrega
    if (window.location.hash) {
      var hash = window.location.hash;
      console.log("Página carregada com hash: " + hash);
      expandSectionForAnchor(hash);
    }
    
    // Lidar com cliques em links âncora dentro da página
    $(document).on('click', 'a[href^="#"]', function(event) {
      var hash = $(this).attr('href');
      console.log("Clique em link interno: " + hash);
      expandSectionForAnchor(hash);
    });
  }
  
  // Função para expandir seções contendo uma âncora específica
  function expandSectionForAnchor(hash) {
    // Remover qualquer caractere # do início do hash se existir
    if (hash.startsWith('#')) {
      hash = hash.substring(1);
    }
    
    console.log("Procurando elemento com ID: " + hash);
    
    // Tentar encontrar o elemento com o ID especificado
    var targetElement = $('#' + hash);
    if (targetElement.length) {
      console.log("Elemento encontrado!");
      
      // Encontrar todas as seções colapsáveis que contêm o elemento
      var collapsibleSections = targetElement.parents('.mw-collapsible.mw-collapsed');
      console.log("Seções colapsáveis encontradas: " + collapsibleSections.length);
      
      // Se o elemento estiver dentro de seções colapsáveis
      if (collapsibleSections.length > 0) {
        // Expandir cada seção de fora para dentro
        collapsibleSections.each(function() {
          var $section = $(this);
          console.log("Expandindo seção");
          $section.removeClass('mw-collapsed');
          
          // Clicar no botão de expansão ou mudar diretamente a classe
          var $toggle = $section.find('.mw-collapsible-toggle').first();
          if ($toggle.length) {
            $toggle.click();
          } else {
            // Tentar forçar a expansão manipulando classes diretamente
            $section.find('.mw-collapsible-content').show();
          }
        });
        
        // Também verificar se o próprio elemento está em um colapsível
        var directCollapsible = targetElement.closest('.mw-collapsible.mw-collapsed');
        if (directCollapsible.length) {
          console.log("Expandindo o contêiner direto");
          directCollapsible.removeClass('mw-collapsed');
          var $toggle = directCollapsible.find('.mw-collapsible-toggle').first();
          if ($toggle.length) {
            $toggle.click();
          } else {
            directCollapsible.find('.mw-collapsible-content').show();
          }
        }
      }
      
      // Rolar até o elemento imediatamente
      console.log("Rolando até o elemento");
      $('html, body').animate({
        scrollTop: targetElement.offset().top - 100
      }, 200);
    } else {
      console.log("Elemento com ID '" + hash + "' não encontrado");
    }
  }

  // Inicializar na carga da página
  initializeAnchorExpansion();
  
  // Também adicionar um observador para o evento mw.hook que é disparado quando o conteúdo é atualizado
  if (typeof mw !== 'undefined' && mw.hook) {
    mw.hook('wikipage.content').add(function() {
      console.log("Conteúdo da Wiki atualizado, reinicializando manipuladores de âncora");
      initializeAnchorExpansion();
      
      // Se houver um hash, tentar expandir após o conteúdo ter sido carregado
      if (window.location.hash) {
        expandSectionForAnchor(window.location.hash);
      }
    });
  }
});


/* JavaScript para funcionalidade de cópia */
mw.hook('wikipage.content').add(function ($content) {
    // Adiciona funcionalidade aos elementos com a classe warp-copy
    $content.find('.warp-copy').on('click', function () {
        var textToCopy = $(this).attr('data-copy');
        
        // Cria um elemento temporário para copiar o texto
        var tempInput = document.createElement('textarea');
        tempInput.value = textToCopy;
        document.body.appendChild(tempInput);
        tempInput.select();
        
        try {
            // Executa o comando de cópia
            var successful = document.execCommand('copy');
            
            // Feedback visual temporário ao usuário
            var originalText = $(this).text();
            if (successful) {
                // Altera o texto do tooltip para "Copied!" por um breve período
                var $this = $(this);
                $this.addClass('copied');
                
                // Altera o texto do tooltip temporariamente
                $this.attr('data-tooltip-text', 'Copied!');
                
                setTimeout(function () {
                    $this.removeClass('copied');
                    $this.attr('data-tooltip-text', 'Copy');
                }, 1500);
            }
        } catch (err) {
            console.error('Erro ao copiar texto: ', err);
        }
        
        // Remove o elemento temporário
        document.body.removeChild(tempInput);
    });
});