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

Материал из ЮУГМУ Вики
Нет описания правки
Нет описания правки
 
(не показано 130 промежуточных версий этого же участника)
Строка 1: Строка 1:
/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */
// Get the select element and the forms
function customizeToolbar() {
var currentPageHref = decodeURI(window.location.href);
    $('#left-navigation').wikiEditor('addToToolbar', {
var test = 'Вики-энциклопедия_университета:Главная';
        'section': 'main',
if (currentPageHref .indexOf(test) > -1) {
        'group': 'format',
var forms = document.querySelectorAll('.createbox');
        'tools': {
var select = document.createElement('select');
            'guillemets': {
select.id = 'select-template';
                label: 'Anførselstegn',
select.className = 'mw-ui-input mw-ui-input-inline mw-inputbox-centered';
                type: 'button',
 
                icon: '//upload.wikimedia.org/wikipedia/commons/b/b5/Wikify_button.svg',
 
                action: {
// Create the select options
                    type: 'encapsulate',
var options = [
                    options: {
  { value: 'Шаблон:Личность', text: 'Шаблон: Личность' },
                        pre: "«",
  { value: 'Шаблон:Структура', text: 'Шаблон: Структура' },
                        post: "»"
  { 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);
}
}
 
/* Check if we are in edit mode and the required modules are available and then customize the toolbar */
// Add event listener to the select element
if ($.inArray(mw.config.get('wgAction'), ['edit', 'submit']) !== -1 ) {
select.addEventListener('change', function(e) {
     mw.loader.using( 'user.options', function () {
  var value = e.target.value;
        if ( mw.user.options.get('usebetatoolbar') ) {
 
            mw.loader.using( 'ext.wikiEditor.toolbar', function () {
  var form;
                $(customizeToolbar);
  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"]'));
}