MediaWiki:Common.js

Z Wiki JU

Poznámka: Po zveřejnění musíte vyprázdnit cache vašeho prohlížeče, jinak změny neuvidíte.

  • Firefox / Safari: Při kliknutí na Aktualizovat držte Shift nebo stiskněte Ctrl-F5 nebo Ctrl-R (na Macu ⌘-R)
  • Google Chrome: Stiskněte Ctrl-Shift-R (na Macu ⌘-Shift-R)
  • Edge: Při kliknutí na Aktualizovat držte Ctrl nebo stiskněte Ctrl-F5.
/* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky */

//Zpětná vazba

$(function () {
  // Zruš jQuery UI vzhled tlačítka
  $('.articleFeedbackv5-submit').button('destroy');
});

document.addEventListener('DOMContentLoaded', function () {
  document.querySelectorAll('.extern-download').forEach(el => {
    el.style.cursor = 'pointer';
    el.style.color = '#0645AD';
    el.style.textDecoration = 'underline';
    el.addEventListener('click', () => {
      const a = document.createElement('a');
      a.href = el.getAttribute('data-url');
      a.setAttribute('download', '');
      a.style.display = 'none';
      document.body.appendChild(a);
      a.click();
      document.body.removeChild(a);
    });
  });
});

(function () {
  var NOTE_ID = 'af5-note';
  var NOTE_HTML =
    '<div id="' + NOTE_ID + '" class="articleFeedbackv5-note">' +
      '<b>Tento formulář slouží pouze jako zpětná vazba pro tuto stránku.</b> ' +
      'Řešíte-li nějaký problém, napište e-mail na ' +
      '<a href="/Servicedesk/Seznam_e-mailových_adres_pro_zadávání_požadavků">službu,</a> které se Váš problém týká.' +
    '</div>';

   function injectNote(root) {
    var $title = (root ? $(root) : $(document))
      .find('.articleFeedbackv5-title-wrap')
      .first();

    if (!$title.length) return false;                 // nadpis není
    if (document.getElementById(NOTE_ID)) return true; // už vloženo

    $title.after(NOTE_HTML);                          // vložit pod nadpis
    return true;
  }

  if (injectNote()) return;

  var obs = new MutationObserver(function (mutations) {
    for (var m of mutations) {
      if (injectNote(m.target)) {
        obs.disconnect();
        break;
      }
    }
  });

  obs.observe(document.body, { childList: true, subtree: true });
  setTimeout(function () { injectNote(); obs.disconnect(); }, 5000);
})();

//Vyhledávání

/* Special:Search – profil=advanced, default zaškrtnutí + přejmenování + úprava UI */
(function () {
  if (mw.config.get('wgCanonicalSpecialPageName') !== 'Search') return;

  // 1) Profil = advanced
  const u = new URL(location.href);
  if (u.searchParams.get('profile') !== 'advanced') {
    u.searchParams.set('profile', 'advanced');
    location.replace(u.toString());
    return;
  }

  // Pomocné – normalizace textu (OOUI občas vkládá NBSP apod.)
  const norm = s => String(s || '').replace(/\u00A0/g, ' ').replace(/\s+/g, ' ').trim();

  function apply() {
    const root = document.querySelector('#mw-searchoptions') || document.querySelector('.mw-search-nsoptions');
    if (!root) return;

    // 2) Schovat horní lištu profilů (Články / Multimédia / Všechno / Rozšířené)
    const tabs = document.querySelector('.mw-search-profile-tabs');
    if (tabs) tabs.style.display = 'none';

    // 3) Projít řádky s checkboxy NS
    root.querySelectorAll('.oo-ui-fieldLayout').forEach(row => {
      const label = row.querySelector('label.oo-ui-labelElement-label');
      const cb    = row.querySelector('input[type="checkbox"]');
      if (!label || !cb) return;

      const text = norm(label.textContent);

      // PŘEJMENOVÁNÍ
      if (text === '(Hlavní)') label.textContent = 'Stránky';
      if (text === 'PřF')      label.textContent = 'Binolupa – Přirodovědecká fakulta';

      // DEFAULT ZAŠKRTNUTÍ (Hlavní + PřF)
      if (text === '(Hlavní)' || text === 'PřF') {
        if (!cb.checked) cb.checked = true;
      }
    });
  }

  // Poprvé po načtení obsahu
  mw.hook('wikipage.content').add(apply);

  // Aplikovat znovu při každém přestavění DOM (Všechno/Nic apod.)
  const mo = new MutationObserver(apply);
  mo.observe(document.body, { childList: true, subtree: true });
})();