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 ================= */
    document.querySelectorAll('.mw-tab-buttons').forEach(group => {
      const buttons = group.querySelectorAll('.mw-tab-btn');
      buttons.forEach(btn => {
        btn.addEventListener('click', function () {
          const tabId = this.dataset.tab;
          // find correct container
          const container = group.closest('.mw-tab-content') || document;
          // hide tabs only in this scope
          container.querySelectorAll('.mw-tab-content').forEach(c => {
            c.style.display = 'none';
          });
          container.querySelectorAll('.mw-tab-btn').forEach(b => {
            b.classList.remove('active');
          });
          this.classList.add('active');
          const target = container.querySelector('#' + tabId);
          if (target) target.style.display = 'block';
        });
      });
      // auto-open first tab
      if (buttons.length > 0) {
        buttons[0].click();
      }
    });
    /* ================= DROPDOWN SYSTEM ================= */
     function initDropdown(container) {
     function initDropdown(container) {
       const label = container.dataset.label || "Select";
       const label = container.dataset.label || "Select";
Line 48: Line 82:
     }
     }


    // 🔥 INIT ALL DROPDOWNS
     document.querySelectorAll('.mw-dropdown-ui').forEach(initDropdown);
     document.querySelectorAll('.mw-dropdown-ui').forEach(initDropdown);


   });
   });
});
});

Revision as of 18:22, 21 April 2026

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

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

      buttons.forEach(btn => {
        btn.addEventListener('click', function () {
          const tabId = this.dataset.tab;

          // find correct container
          const container = group.closest('.mw-tab-content') || document;

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

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

          this.classList.add('active');

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

      // auto-open first tab
      if (buttons.length > 0) {
        buttons[0].click();
      }
    });

    /* ================= DROPDOWN SYSTEM ================= */
    function initDropdown(container) {
      const label = container.dataset.label || "Select";
      const options = JSON.parse(container.dataset.options || "{}");

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

      const button = document.createElement('button');
      button.textContent = label;
      button.className = 'mw-dropdown-btn';

      const list = document.createElement('div');
      list.className = 'mw-dropdown-list';
      list.style.display = 'none';

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

      Object.keys(options).forEach(key => {
        const opt = options[key];

        const item = document.createElement('div');
        item.className = 'mw-dropdown-item';
        item.textContent = opt.label;

        item.addEventListener('click', function () {
          button.textContent = opt.label;
          content.innerHTML = opt.content;
          list.style.display = 'none';
        });

        list.appendChild(item);
      });

      button.addEventListener('click', function () {
        list.style.display = list.style.display === 'none' ? 'block' : 'none';
      });

      wrapper.appendChild(button);
      wrapper.appendChild(list);
      wrapper.appendChild(content);

      container.innerHTML = '';
      container.appendChild(wrapper);
    }

    document.querySelectorAll('.mw-dropdown-ui').forEach(initDropdown);

  });
});