Diferencia entre revisiones de «MediaWiki:Common.js»

De Oroza RO Wiki
Ir a la navegación Ir a la búsqueda
Sin resumen de edición
Sin resumen de edición
 
(No se muestran 4 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
function safeNormalize(text) {
(function () {
  text = String(text || '').toLowerCase().trim();
  function safeNormalize(text) {
    text = String(text || '').toLowerCase().trim();


  try {
    try {
    return text.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
      return text.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
  } catch (e) {
    } catch (e) {
    return text;
      return text;
    }
   }
   }
}


function hasMark(cellText) {
  function hasMark(cellText) {
  cellText = String(cellText || '').replace(/\s+/g, '').trim();
    cellText = String(cellText || '').replace(/\s+/g, '').trim();
 
    return (
      cellText !== '' &&
      (
        cellText.indexOf('✔') !== -1 ||
        cellText.indexOf('✅') !== -1 ||
        cellText.indexOf('☑') !== -1
      )
    );
  }


   return (
   function getActiveCategoryCol(tableId) {
     cellText !== '' &&
     var activeBtn = document.querySelector('.oroza-cat-btn.active[data-table="' + tableId + '"]');
     (
     if (!activeBtn) {
       cellText.indexOf('') !== -1 ||
       var firstBtn = document.querySelector('.oroza-cat-btn[data-table="' + tableId + '"]');
       cellText.indexOf('') !== -1 ||
      if (!firstBtn) return null;
       cellText.indexOf('') !== -1
       firstBtn.classList.add('active');
     )
       return firstBtn.getAttribute('data-col');
  );
     }
}
    return activeBtn.getAttribute('data-col'); // Puede retornar "all" en string
  }


function filterMatrix(tableId, selectId, inputId) {
  function getSearchTextForRow(row, tableId) {
  var table = document.getElementById(tableId);
    var cells = row.getElementsByTagName('td');
  var select = document.getElementById(selectId);
    var text = row.getAttribute('data-search') || '';
  var input = document.getElementById(inputId);
    // Como añadimos "Prob.", ahora las columnas de información base son 3 en Slot 1 y 4 en Slot 2
    var visibleInfoCols = tableId === 'tableSlot1' ? 3 : 4;


  if (!table || !select || !input || !table.tBodies.length) return;
    for (var i = 0; i < visibleInfoCols; i++) {
      if (cells[i]) {
        text += ' ' + (cells[i].textContent || cells[i].innerText || '');
      }
    }


  var selectColIndex = select.value;
    return safeNormalize(text);
  var inputText = safeNormalize(input.value);
   }
   var rows = table.tBodies[0].getElementsByTagName('tr');


   for (var i = 0; i < rows.length; i++) {
   function updateCategoryView(tableId, inputId) {
     var row = rows[i];
     var table = document.getElementById(tableId);
     var tds = row.getElementsByTagName('td');
     var input = document.getElementById(inputId);


     var matchCategory = true;
     if (!table || !table.tBodies.length || !table.tHead || !table.tHead.rows.length) return;
    var matchText = true;


     if (selectColIndex !== '') {
     var activeColRaw = getActiveCategoryCol(tableId);
      var colIdx = parseInt(selectColIndex, 10);
    if (activeColRaw === null) return;
      var categoryCell = tds[colIdx];


      if (!categoryCell || !hasMark(categoryCell.textContent || categoryCell.innerText)) {
    var showAll = (activeColRaw === 'all');
        matchCategory = false;
    var activeCol = showAll ? -1 : parseInt(activeColRaw, 10);
       }
 
    var searchText = input ? safeNormalize(input.value) : '';
    var rows = table.tBodies[0].getElementsByTagName('tr');
    var headerRow = table.tHead.rows[0];
   
    // Columnas que SIEMPRE se ven (Atributo, Prob, Rango, etc.)
    var staticCols = tableId === 'tableSlot1' ? 3 : 4;
 
    // Actualizar Header
    for (var h = 0; h < headerRow.cells.length; h++) {
       headerRow.cells[h].style.display = (showAll || h < staticCols || h === activeCol) ? '' : 'none';
     }
     }


     if (inputText !== '') {
     // Actualizar Body
       var rowContent = '';
    for (var i = 0; i < rows.length; i++) {
      var row = rows[i];
      var cells = row.getElementsByTagName('td');
     
      // Si estamos en "Todos", empezamos asumiendo que sí tiene categoría válida
      var matchCategory = showAll;
       var matchText = true;


       if (tableId === 'tableSlot1') {
      // Si se escogió una categoría específica, verificamos si tiene "✔"
        rowContent += (tds[0] ? (tds[0].textContent || tds[0].innerText) : '') + ' ';
       if (!showAll && cells[activeCol]) {
        rowContent += (tds[1] ? (tds[1].textContent || tds[1].innerText) : '');
         matchCategory = hasMark(cells[activeCol].textContent || cells[activeCol].innerText);
      } else {
         rowContent += (tds[0] ? (tds[0].textContent || tds[0].innerText) : '') + ' ';
        rowContent += (tds[1] ? (tds[1].textContent || tds[1].innerText) : '') + ' ';
        rowContent += (tds[2] ? (tds[2].textContent || tds[2].innerText) : '');
       }
       }


       rowContent = safeNormalize(rowContent);
       // Verificación de búsqueda por texto
      if (searchText !== '') {
        var searchPool = getSearchTextForRow(row, tableId);
        if (searchPool.indexOf(searchText) === -1) {
          matchText = false;
        }
      }


       if (rowContent.indexOf(inputText) === -1) {
       row.style.display = (matchCategory && matchText) ? '' : 'none';
         matchText = false;
 
      for (var c = 0; c < cells.length; c++) {
         cells[c].style.display = (showAll || c < staticCols || c === activeCol) ? '' : 'none';
       }
       }
     }
     }
  }
  function bindCategoryButtons(tableId, inputId) {
    var buttons = document.querySelectorAll('.oroza-cat-btn[data-table="' + tableId + '"]');


     row.style.display = (matchCategory && matchText) ? '' : 'none';
     for (var i = 0; i < buttons.length; i++) {
      if (buttons[i].dataset.orozaBound === '1') continue;
 
      buttons[i].dataset.orozaBound = '1';
      buttons[i].addEventListener('click', function () {
        var sameTableButtons = document.querySelectorAll('.oroza-cat-btn[data-table="' + tableId + '"]');
        for (var j = 0; j < sameTableButtons.length; j++) {
          sameTableButtons[j].classList.remove('active');
        }
 
        this.classList.add('active');
        updateCategoryView(tableId, inputId);
      });
    }
   }
   }
}


function bindFilter(tableId, selectId, inputId) {
  function bindSearchInput(tableId, inputId) {
  var table = document.getElementById(tableId);
    var input = document.getElementById(inputId);
   var select = document.getElementById(selectId);
    if (!input || input.dataset.orozaBound === '1') return;
   var input = document.getElementById(inputId);
 
    input.dataset.orozaBound = '1';
    input.addEventListener('input', function () {
      updateCategoryView(tableId, inputId);
    });
  }
 
  function initOrozaDropFilters() {
    if (document.getElementById('tableSlot1')) {
      bindCategoryButtons('tableSlot1', 'textSlot1');
      bindSearchInput('tableSlot1', 'textSlot1');
      updateCategoryView('tableSlot1', 'textSlot1');
    }
 
    if (document.getElementById('tableSlot2')) {
      bindCategoryButtons('tableSlot2', 'textSlot2');
      bindSearchInput('tableSlot2', 'textSlot2');
      updateCategoryView('tableSlot2', 'textSlot2');
    }
  }
 
  if (window.mw && mw.hook) {
    mw.hook('wikipage.content').add(function () {
      initOrozaDropFilters();
    });
  } else if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', initOrozaDropFilters);
  } else {
    initOrozaDropFilters();
  }
})();
 
 
/* =========================================================
  RESALTAR MENÚ LATERAL ACTIVO (VERSIÓN NATIVA MEDIAWIKI)
========================================================= */
function highlightActiveSidebarLink() {
  // 1. Obtenemos el nombre exacto de la página actual desde el motor de MediaWiki
  var currentPage = mw.config.get('wgPageName');
  if (!currentPage) return;
 
  // Limpiamos el nombre de la página actual (todo a minúsculas y espacios a guiones bajos)
  currentPage = currentPage.replace(/ /g, '_').toLowerCase();
 
   var sidebarLinks = document.querySelectorAll('.oroza-sidebar li a');
 
   for (var i = 0; i < sidebarLinks.length; i++) {
    var linkHref = sidebarLinks[i].getAttribute('href');
    if (!linkHref) continue;
 
    // 2. Extraemos el nombre de la página del enlace del menú
    var linkPage = "";
    if (linkHref.indexOf('title=') !== -1) {
      linkPage = linkHref.split('title=')[1].split('&')[0];
    } else {
      linkPage = linkHref.split('/').pop(); // Toma lo último después del slash (ej. "Como-instalarlo")
    }
 
    if (!linkPage) continue;


  if (!table || !select || !input) return;
    // 3. Decodificamos caracteres especiales (como acentos o espacios %20)
    try {
      linkPage = decodeURIComponent(linkPage);
    } catch(e) {}


  select.addEventListener('change', function () {
    // Limpiamos el enlace de la misma forma para que la comparación sea exacta
    filterMatrix(tableId, selectId, inputId);
    linkPage = linkPage.replace(/ /g, '_').toLowerCase();
  });


  input.addEventListener('input', function () {
    // 4. Comparamos
    filterMatrix(tableId, selectId, inputId);
    if (currentPage === linkPage) {
   });
      sidebarLinks[i].classList.add('active');
    } else {
      sidebarLinks[i].classList.remove('active'); // Limpia los demás por si acaso
    }
   }
}
}


function initOrozaDropFilters() {
// Integración con MediaWiki
   bindFilter('tableSlot1', 'catSlot1', 'textSlot1');
if (window.mw && mw.hook) {
   bindFilter('tableSlot2', 'catSlot2', 'textSlot2');
   mw.hook('wikipage.content').add(highlightActiveSidebarLink);
} else if (document.readyState === 'loading') {
  document.addEventListener('DOMContentLoaded', highlightActiveSidebarLink);
} else {
   highlightActiveSidebarLink();
}
}
document.addEventListener('DOMContentLoaded', initOrozaDropFilters);

Revisión actual - 21:02 6 abr 2026

(function () {
  function safeNormalize(text) {
    text = String(text || '').toLowerCase().trim();

    try {
      return text.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
    } catch (e) {
      return text;
    }
  }

  function hasMark(cellText) {
    cellText = String(cellText || '').replace(/\s+/g, '').trim();

    return (
      cellText !== '' &&
      (
        cellText.indexOf('✔') !== -1 ||
        cellText.indexOf('✅') !== -1 ||
        cellText.indexOf('☑') !== -1
      )
    );
  }

  function getActiveCategoryCol(tableId) {
    var activeBtn = document.querySelector('.oroza-cat-btn.active[data-table="' + tableId + '"]');
    if (!activeBtn) {
      var firstBtn = document.querySelector('.oroza-cat-btn[data-table="' + tableId + '"]');
      if (!firstBtn) return null;
      firstBtn.classList.add('active');
      return firstBtn.getAttribute('data-col'); 
    }
    return activeBtn.getAttribute('data-col'); // Puede retornar "all" en string
  }

  function getSearchTextForRow(row, tableId) {
    var cells = row.getElementsByTagName('td');
    var text = row.getAttribute('data-search') || '';
    // Como añadimos "Prob.", ahora las columnas de información base son 3 en Slot 1 y 4 en Slot 2
    var visibleInfoCols = tableId === 'tableSlot1' ? 3 : 4;

    for (var i = 0; i < visibleInfoCols; i++) {
      if (cells[i]) {
        text += ' ' + (cells[i].textContent || cells[i].innerText || '');
      }
    }

    return safeNormalize(text);
  }

  function updateCategoryView(tableId, inputId) {
    var table = document.getElementById(tableId);
    var input = document.getElementById(inputId);

    if (!table || !table.tBodies.length || !table.tHead || !table.tHead.rows.length) return;

    var activeColRaw = getActiveCategoryCol(tableId);
    if (activeColRaw === null) return;

    var showAll = (activeColRaw === 'all');
    var activeCol = showAll ? -1 : parseInt(activeColRaw, 10);

    var searchText = input ? safeNormalize(input.value) : '';
    var rows = table.tBodies[0].getElementsByTagName('tr');
    var headerRow = table.tHead.rows[0];
    
    // Columnas que SIEMPRE se ven (Atributo, Prob, Rango, etc.)
    var staticCols = tableId === 'tableSlot1' ? 3 : 4;

    // Actualizar Header
    for (var h = 0; h < headerRow.cells.length; h++) {
      headerRow.cells[h].style.display = (showAll || h < staticCols || h === activeCol) ? '' : 'none';
    }

    // Actualizar Body
    for (var i = 0; i < rows.length; i++) {
      var row = rows[i];
      var cells = row.getElementsByTagName('td');
      
      // Si estamos en "Todos", empezamos asumiendo que sí tiene categoría válida
      var matchCategory = showAll;
      var matchText = true;

      // Si se escogió una categoría específica, verificamos si tiene "✔"
      if (!showAll && cells[activeCol]) {
        matchCategory = hasMark(cells[activeCol].textContent || cells[activeCol].innerText);
      }

      // Verificación de búsqueda por texto
      if (searchText !== '') {
        var searchPool = getSearchTextForRow(row, tableId);
        if (searchPool.indexOf(searchText) === -1) {
          matchText = false;
        }
      }

      row.style.display = (matchCategory && matchText) ? '' : 'none';

      for (var c = 0; c < cells.length; c++) {
        cells[c].style.display = (showAll || c < staticCols || c === activeCol) ? '' : 'none';
      }
    }
  }

  function bindCategoryButtons(tableId, inputId) {
    var buttons = document.querySelectorAll('.oroza-cat-btn[data-table="' + tableId + '"]');

    for (var i = 0; i < buttons.length; i++) {
      if (buttons[i].dataset.orozaBound === '1') continue;

      buttons[i].dataset.orozaBound = '1';
      buttons[i].addEventListener('click', function () {
        var sameTableButtons = document.querySelectorAll('.oroza-cat-btn[data-table="' + tableId + '"]');
        for (var j = 0; j < sameTableButtons.length; j++) {
          sameTableButtons[j].classList.remove('active');
        }

        this.classList.add('active');
        updateCategoryView(tableId, inputId);
      });
    }
  }

  function bindSearchInput(tableId, inputId) {
    var input = document.getElementById(inputId);
    if (!input || input.dataset.orozaBound === '1') return;

    input.dataset.orozaBound = '1';
    input.addEventListener('input', function () {
      updateCategoryView(tableId, inputId);
    });
  }

  function initOrozaDropFilters() {
    if (document.getElementById('tableSlot1')) {
      bindCategoryButtons('tableSlot1', 'textSlot1');
      bindSearchInput('tableSlot1', 'textSlot1');
      updateCategoryView('tableSlot1', 'textSlot1');
    }

    if (document.getElementById('tableSlot2')) {
      bindCategoryButtons('tableSlot2', 'textSlot2');
      bindSearchInput('tableSlot2', 'textSlot2');
      updateCategoryView('tableSlot2', 'textSlot2');
    }
  }

  if (window.mw && mw.hook) {
    mw.hook('wikipage.content').add(function () {
      initOrozaDropFilters();
    });
  } else if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', initOrozaDropFilters);
  } else {
    initOrozaDropFilters();
  }
})();


/* =========================================================
   RESALTAR MENÚ LATERAL ACTIVO (VERSIÓN NATIVA MEDIAWIKI)
========================================================= */
function highlightActiveSidebarLink() {
  // 1. Obtenemos el nombre exacto de la página actual desde el motor de MediaWiki
  var currentPage = mw.config.get('wgPageName');
  if (!currentPage) return;

  // Limpiamos el nombre de la página actual (todo a minúsculas y espacios a guiones bajos)
  currentPage = currentPage.replace(/ /g, '_').toLowerCase();

  var sidebarLinks = document.querySelectorAll('.oroza-sidebar li a');

  for (var i = 0; i < sidebarLinks.length; i++) {
    var linkHref = sidebarLinks[i].getAttribute('href');
    if (!linkHref) continue;

    // 2. Extraemos el nombre de la página del enlace del menú
    var linkPage = "";
    if (linkHref.indexOf('title=') !== -1) {
      linkPage = linkHref.split('title=')[1].split('&')[0];
    } else {
      linkPage = linkHref.split('/').pop(); // Toma lo último después del slash (ej. "Como-instalarlo")
    }

    if (!linkPage) continue;

    // 3. Decodificamos caracteres especiales (como acentos o espacios %20)
    try {
      linkPage = decodeURIComponent(linkPage);
    } catch(e) {}

    // Limpiamos el enlace de la misma forma para que la comparación sea exacta
    linkPage = linkPage.replace(/ /g, '_').toLowerCase();

    // 4. Comparamos
    if (currentPage === linkPage) {
      sidebarLinks[i].classList.add('active');
    } else {
      sidebarLinks[i].classList.remove('active'); // Limpia los demás por si acaso
    }
  }
}

// Integración con MediaWiki
if (window.mw && mw.hook) {
  mw.hook('wikipage.content').add(highlightActiveSidebarLink);
} else if (document.readyState === 'loading') {
  document.addEventListener('DOMContentLoaded', highlightActiveSidebarLink);
} else {
  highlightActiveSidebarLink();
}