Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.rcfilters/ui/RclTargetPageWidget.js
Ðазад
/** * Widget to select and display target page on Special:RecentChangesLinked (AKA Related Changes). * * @class mw.rcfilters.ui.RclTargetPageWidget * @ignore * @extends OO.ui.Widget * * @param {mw.rcfilters.Controller} controller * @param {mw.rcfilters.dm.FilterItem} targetPageModel * @param {Object} [config] Configuration object */ const RclTargetPageWidget = function MwRcfiltersUiRclTargetPageWidget( controller, targetPageModel, config ) { config = config || {}; // Parent RclTargetPageWidget.super.call( this, config ); this.controller = controller; this.model = targetPageModel; this.titleSearch = new mw.widgets.TitleInputWidget( { validate: false, placeholder: mw.msg( 'rcfilters-target-page-placeholder' ), showImages: true, showDescriptions: true, addQueryInput: false } ); // Events this.model.connect( this, { update: 'updateUiBasedOnModel' } ); this.titleSearch.$input.on( { blur: this.onLookupInputBlur.bind( this ) } ); this.titleSearch.lookupMenu.connect( this, { choose: 'onLookupMenuChoose' } ); // Initialize this.$element .addClass( 'mw-rcfilters-ui-rclTargetPageWidget' ) .append( this.titleSearch.$element ); this.updateUiBasedOnModel(); }; /* Initialization */ OO.inheritClass( RclTargetPageWidget, OO.ui.Widget ); /* Methods */ /** * Respond to the user choosing a title */ RclTargetPageWidget.prototype.onLookupMenuChoose = function () { this.titleSearch.$input.trigger( 'blur' ); }; /** * Respond to titleSearch $input blur */ RclTargetPageWidget.prototype.onLookupInputBlur = function () { this.controller.setTargetPage( this.titleSearch.getQueryValue() ); }; /** * Respond to the model being updated */ RclTargetPageWidget.prototype.updateUiBasedOnModel = function () { const title = mw.Title.newFromText( this.model.getValue() ), text = title ? title.toText() : this.model.getValue(); this.titleSearch.setValue( text ); this.titleSearch.setTitle( text ); }; module.exports = RclTargetPageWidget;
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка