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

Материал из ЮУГМУ Вики
Нет описания правки
Нет описания правки
 
(не показано 109 промежуточных версий этого же участника)
Строка 1: Строка 1:
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
// Get the select element and the forms
$(document).ready(function() {
var currentPageHref = decodeURI(window.location.href);
    var node = $('#content');
var test = 'Вики-энциклопедия_университета:Главная';
    var content = $('<div>').attr('id', '').addClass('custom-top-menu');
if (currentPageHref .indexOf(test) > -1) {
    content.append($('<div>'));
var forms = document.querySelectorAll('.createbox');
    content.append($('<ul>'));
var select = document.createElement('select');
    content.append($('<li>').append($('<a>').attr('href', '/wiki/Правила').attr('title', 'Заголовок 1').append($('<span>').text('Правила'))));
select.id = 'select-template';
    content.append($('<li>').append($('<a>').attr('href', '#').attr('title', 'Заголовок 2').append($('<span>').text('Статьи'))));
select.className = 'mw-ui-input mw-ui-input-inline mw-inputbox-centered';
    content.append($('<li>').append($('<a>').attr('href', '#').attr('title', 'Заголовок 2').append($('<span>').text('Лог'))));
 
    content.append($('<li>').append($('<a>').attr('href', '#').attr('title', 'Заголовок 2').append($('<span>').text('Заявки'))));
 
     content.append($('<li>').append($('<a>').attr('href', '#').attr('title', 'Заголовок 2').append($('<span>').text('Форум'))));
// Create the select options
     content.append($('<li>').append($('<a>').attr('href', '#').attr('title', 'Заголовок 2').append($('<span>').text('Контакты'))));
var options = [
     node.before(content);
  { 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"]'));
}

Текущая версия от 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"]'));
}