MediaWiki:Block.js: различия между версиями
Перейти к навигации
Перейти к поиску
Mansur700 (обсуждение | вклад) (Керла агӀо: «mw.hook( 'wikipage.content' ).add( function () { $.fn.highlight = function () { $( this ).addClass( 'highlighted' ); setTimeout( function () { $( '.highlighted' ).re...») |
(нет различий)
|
Версия от 02:41, 17 июня 2020
mw.hook( 'wikipage.content' ).add( function () {
$.fn.highlight = function () {
$( this ).addClass( 'highlighted' );
setTimeout( function () {
$( '.highlighted' ).removeClass( 'highlighted' );
}, 1000 );
};
function elem( name, value ) {
var $el = $( '[name="wp' + name + '"]' );
if ( value !== undefined ) {
if ( $el.prop( 'tagName' ) === 'SELECT' ) {
var $option = $el.find( 'option[value*="' + value + '"]' );
if ( $option.prop( 'selected' ) !== !!value ) {
$option.prop( 'selected', true ).end().change();
$el.highlight();
}
} else if ( $el.attr( 'type' ) === 'checkbox' ) {
if ( $el.prop( 'checked' ) !== !!value ) {
$el.prop( 'checked', value );
$el.highlight();
}
} else { // type = text
if ( /-other$/.test( name ) ) {
//
elem( name.replace( /-other$/ , ''), 'other' );
}
if ( $el.val() !== value ) {
$el.val( value );
$el.highlight();
}
}
}
return $el;
}
elem( 'Reason' ).change( function () {
if ( /Мегаш йоцу цIе/.test( this.value ) ) {
elem( 'Expiry' , 'indefinite' );
if ( /гайтаршна|тилвелла/.test( this.value ) ) {
elem( 'CreateAccount', false );
elem( 'DisableEmail', false );
elem( 'AutoBlock', false );
}
} else if ( /къайла воккху сервер/.test( this.value ) ) {
// Нагахьсанна башхо хоттийна яцахь
if ( elem( 'Expiry' ).val() === 'other' && !elem( 'Expiry-other' ).val() ) {
elem( 'Expiry-other', '5 years' );
}
elem( 'CreateAccount', true );
elem( 'DisableEmail', true );
elem( 'HardBlock', true );
} else if ( /керла дIекъашхо ву хьашт боцу яззамашца/.test( this.value )
|| /«массо а» дIавазвелла агIо/i.test( this.value )
) {
elem( 'Expiry', 'indefinite' );
}
} );
// https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver
//
//
var observe = function () {
var label = $( '#mw-input-wpReason-select .oo-ui-dropdownWidget-handle .oo-ui-labelElement-label' )[ 0 ];
if ( label && typeof MutationObserver === 'function' ) {
var observer = new MutationObserver( function ( mutations ) {
mutations.forEach( function ( mutation ) {
if ( mutation.addedNodes.length ) {
elem( 'Reason' ).change();
}
} );
} );
observer.observe( label, { childList: true } );
}
};
runAsEarlyAsPossible(
observe,
$( '#mw-input-wpReason-select .oo-ui-dropdownWidget-handle .oo-ui-labelElement-label' ),
function () {
setTimeout( observe, 2000 );
}
);
}() );