MediaWiki:Common.js: различия между версиями

Материал из ЮУГМУ Вики
Нет описания правки
Нет описания правки
 
(не показана 91 промежуточная версия этого же участника)
Строка 1: Строка 1:
$(document).ready(function() {
// Get the select element and the forms
    var node = $('#content');
var currentPageHref = decodeURI(window.location.href);
    var content = $('<ul>').addClass('custom-top-menu');
var test = 'Вики-энциклопедия_университета:Главная';
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Вики-энциклопедия_университета').attr('title', 'Главная').append($('<span>').text('Главная'))));
if (currentPageHref .indexOf(test) > -1) {
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Правила').attr('title', 'Правила').append($('<span>').text('Правила'))));
var forms = document.querySelectorAll('.createbox');
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Служебная:Все_страницы').attr('title', 'Статьи').append($('<span>').text('Статьи'))));
var select = document.createElement('select');
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Служебная:Свежие_правки').attr('title', 'Свежие правки').append($('<span>').text('История правок'))));
select.id = 'select-template';
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Инструкции').attr('title', 'Инструкции').append($('<span>').text('Инструкции'))));
select.className = 'mw-ui-input mw-ui-input-inline mw-inputbox-centered';
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Контакты').attr('title', 'Заголовок 2').append($('<span>').text('Контакты'))));
    node.before(content);
  // Get the current page title
  var currentPageTitle = document.title;


  // Get all links on the page
  var links = document.querySelectorAll('.custom-top-menu a');


  // Loop through each link
// Create the select options
   links.forEach(function(link) {
var options = [
    // Get the link title
  { value: 'Шаблон:Личность', text: 'Шаблон: Личность' },
    var linkTitle = link.textContent.trim() + ' — ЮУГМУ Вики';
  { value: 'Шаблон:Структура', text: 'Шаблон: Структура' },
     console.log(currentPageTitle + '=' + linkTitle);
  { value: 'Шаблон:Событие', text: 'Шаблон: Событие' }
    // Check if the link title is equal to the current page title
];
     if (linkTitle === currentPageTitle) {
var opt;
       // Make the link bold
for (var i = 0; i < options.length; i++) {
      link.classList.add('a-current');
   opt = document.createElement('option');
  opt.value = options[i].value;
  opt.text = options[i].text;
  select.appendChild(opt);
}
 
// Add event listener to the select element
select.addEventListener('change', function(e) {
  var value = e.target.value;
 
  var form;
  for (var i = 0; i < forms.length; i++) {
    form = forms[i];
     var preloadInput = form.querySelector('input[name="preload"]');
 
     if (preloadInput) {
       preloadInput.value = value;
     }
     }
   });
   }
});
});
var form = document.querySelector('.createbox');
form.insertBefore(select, form.querySelector('input[name="veaction"]'));
}

Текущая версия от 16:31, 19 мая 2024

// Get the select element and the forms
var currentPageHref = decodeURI(window.location.href);
var test = 'Вики-энциклопедия_университета:Главная';
if (currentPageHref .indexOf(test) > -1) {
var forms = document.querySelectorAll('.createbox');
var select = document.createElement('select');
select.id = 'select-template';
select.className = 'mw-ui-input mw-ui-input-inline mw-inputbox-centered';


// Create the select options
var options = [
  { value: 'Шаблон:Личность', text: 'Шаблон: Личность' },
  { value: 'Шаблон:Структура', text: 'Шаблон: Структура' },
  { value: 'Шаблон:Событие', text: 'Шаблон: Событие' }
];
var opt;
for (var i = 0; i < options.length; i++) {
  opt = document.createElement('option');
  opt.value = options[i].value;
  opt.text = options[i].text;
  select.appendChild(opt);
}

// Add event listener to the select element
select.addEventListener('change', function(e) {
  var value = e.target.value;

  var form;
  for (var i = 0; i < forms.length; i++) {
    form = forms[i];
    var preloadInput = form.querySelector('input[name="preload"]');

    if (preloadInput) {
      preloadInput.value = value;
    }
  }
});
var form = document.querySelector('.createbox');
form.insertBefore(select, form.querySelector('input[name="veaction"]'));
}