Jump to content

MediaWiki:Common.js: Difference between revisions

From Once Human Guide
No edit summary
No edit summary
Line 2: Line 2:
   $(function () {
   $(function () {


     /* ================= TAB SYSTEM ================= */
     /* ================= TAB SYSTEM (FIXED GLOBAL) ================= */
 
     document.querySelectorAll('.mw-tab-buttons').forEach(group => {
     document.querySelectorAll('.mw-tab-buttons').forEach(group => {
       const buttons = group.querySelectorAll('.mw-tab-btn');
       const buttons = group.querySelectorAll('.mw-tab-btn');
Line 9: Line 10:
         btn.onclick = function () {
         btn.onclick = function () {
           const tabId = this.dataset.tab;
           const tabId = this.dataset.tab;
          const container = group.closest('.mw-tab-content') || document;


           container.querySelectorAll('.mw-tab-content').forEach(c => c.style.display = 'none');
          // 🔥 IMPORTANT: always scope to nearest .mw-tabs container
           container.querySelectorAll('.mw-tab-btn').forEach(b => b.classList.remove('active'));
          const container = this.closest('.mw-tabs') || document;
 
          // hide all tabs in this container
           container.querySelectorAll('.mw-tab-content').forEach(c => {
            c.style.display = 'none';
          });
 
          // remove active from buttons
           container.querySelectorAll('.mw-tab-btn').forEach(b => {
            b.classList.remove('active');
          });


          // activate current
           this.classList.add('active');
           this.classList.add('active');


Line 21: Line 32:
       });
       });


      // 🔥 AUTO ACTIVATE FIRST TAB
       if (buttons.length) buttons[0].click();
       if (buttons.length) buttons[0].click();
     });
     });


     /* ================= AUTO MOD SYSTEM ================= */
     /* ================= MOD SYSTEM ================= */


     document.querySelectorAll('.mod-system').forEach(system => {
     document.querySelectorAll('.mod-system').forEach(system => {

Revision as of 19:51, 21 April 2026

mw.loader.using('mediawiki.util').then(function () {
  $(function () {

    /* ================= TAB SYSTEM (FIXED GLOBAL) ================= */

    document.querySelectorAll('.mw-tab-buttons').forEach(group => {
      const buttons = group.querySelectorAll('.mw-tab-btn');

      buttons.forEach(btn => {
        btn.onclick = function () {
          const tabId = this.dataset.tab;

          // 🔥 IMPORTANT: always scope to nearest .mw-tabs container
          const container = this.closest('.mw-tabs') || document;

          // hide all tabs in this container
          container.querySelectorAll('.mw-tab-content').forEach(c => {
            c.style.display = 'none';
          });

          // remove active from buttons
          container.querySelectorAll('.mw-tab-btn').forEach(b => {
            b.classList.remove('active');
          });

          // activate current
          this.classList.add('active');

          const target = container.querySelector('#' + tabId);
          if (target) target.style.display = 'block';
        };
      });

      // 🔥 AUTO ACTIVATE FIRST TAB
      if (buttons.length) buttons[0].click();
    });

    /* ================= MOD SYSTEM ================= */

    document.querySelectorAll('.mod-system').forEach(system => {

      const modType = system.dataset.mod;
      const dataBlock = document.querySelector('#mod-database [data-mod="' + modType + '"]');
      if (!dataBlock) return;

      const leftData = JSON.parse(dataBlock.querySelector('[data-left]').dataset.left);
      const rightData = JSON.parse(dataBlock.querySelector('[data-right]').dataset.right);

      let selectedLeft = null;
      let selectedRight = null;

      const leftDiv = document.createElement('div');
      const rightDiv = document.createElement('div');
      const result = document.createElement('div');

      result.style.display = "none";
      result.style.border = "1px solid #444";
      result.style.padding = "10px";
      result.style.marginTop = "10px";

      function createDropdown(container, options, side) {
        const btn = document.createElement('button');
        btn.textContent = "Select";

        btn.onclick = function () {
          document.querySelectorAll('.dropdown-list').forEach(el => el.remove());

          const list = document.createElement('div');
          list.className = 'dropdown-list';

          Object.keys(options).forEach(key => {
            const item = document.createElement('div');
            item.textContent = options[key];

            item.onclick = function () {
              btn.textContent = options[key];

              if (side === "left") selectedLeft = key;
              if (side === "right") selectedRight = key;

              list.remove();
              update();
            };

            list.appendChild(item);
          });

          container.appendChild(list);
        };

        container.appendChild(btn);
      }

      function update() {
        if (!selectedLeft || !selectedRight) {
          result.style.display = "none";
          return;
        }

        const key = selectedLeft + "__" + selectedRight;
        const match = dataBlock.querySelector('[data-key="' + key + '"]');

        result.style.display = "block";
        result.innerHTML = match ? match.innerHTML : "No data";
      }

      createDropdown(leftDiv, leftData, "left");
      createDropdown(rightDiv, rightData, "right");

      system.appendChild(leftDiv);
      system.appendChild(rightDiv);
      system.appendChild(result);
    });

  });
});