2 * Widget to select and display target page on Special:RecentChangesLinked (AKA Related Changes).
4 * @class mw.rcfilters.ui.RclTargetPageWidget
6 * @extends OO.ui.Widget
8 * @param {mw.rcfilters.Controller} controller
9 * @param {mw.rcfilters.dm.FilterItem} targetPageModel
10 * @param {Object} [config] Configuration object
12 const RclTargetPageWidget = function MwRcfiltersUiRclTargetPageWidget(
13 controller, targetPageModel, config
15 config = config || {};
18 RclTargetPageWidget.super.call( this, config );
20 this.controller = controller;
21 this.model = targetPageModel;
23 this.titleSearch = new mw.widgets.TitleInputWidget( {
25 placeholder: mw.msg( 'rcfilters-target-page-placeholder' ),
27 showDescriptions: true,
32 this.model.connect( this, { update: 'updateUiBasedOnModel' } );
34 this.titleSearch.$input.on( {
35 blur: this.onLookupInputBlur.bind( this )
38 this.titleSearch.lookupMenu.connect( this, {
39 choose: 'onLookupMenuChoose'
44 .addClass( 'mw-rcfilters-ui-rclTargetPageWidget' )
45 .append( this.titleSearch.$element );
47 this.updateUiBasedOnModel();
52 OO.inheritClass( RclTargetPageWidget, OO.ui.Widget );
57 * Respond to the user choosing a title
59 RclTargetPageWidget.prototype.onLookupMenuChoose = function () {
60 this.titleSearch.$input.trigger( 'blur' );
64 * Respond to titleSearch $input blur
66 RclTargetPageWidget.prototype.onLookupInputBlur = function () {
67 this.controller.setTargetPage( this.titleSearch.getQueryValue() );
71 * Respond to the model being updated
73 RclTargetPageWidget.prototype.updateUiBasedOnModel = function () {
74 const title = mw.Title.newFromText( this.model.getValue() ),
75 text = title ? title.toText() : this.model.getValue();
76 this.titleSearch.setValue( text );
77 this.titleSearch.setTitle( text );
80 module.exports = RclTargetPageWidget;