summaryrefslogtreecommitdiff
path: root/www/wiki/resources/src/mediawiki.rcfilters/ui/mw.rcfilters.ui.FilterTagMultiselectWidget.js
blob: 953df5b802b25d12ac3d3161ae7c307d011f7892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
( function ( mw ) {
	/**
	 * List displaying all filter groups
	 *
	 * @class
	 * @extends OO.ui.MenuTagMultiselectWidget
	 * @mixins OO.ui.mixin.PendingElement
	 *
	 * @constructor
	 * @param {mw.rcfilters.Controller} controller Controller
	 * @param {mw.rcfilters.dm.FiltersViewModel} model View model
	 * @param {mw.rcfilters.dm.SavedQueriesModel} savedQueriesModel Saved queries model
	 * @param {Object} config Configuration object
	 * @cfg {jQuery} [$overlay] A jQuery object serving as overlay for popups
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget = function MwRcfiltersUiFilterTagMultiselectWidget( controller, model, savedQueriesModel, config ) {
		var rcFiltersRow,
			title = new OO.ui.LabelWidget( {
				label: mw.msg( 'rcfilters-activefilters' ),
				classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title' ]
			} ),
			$contentWrapper = $( '<div>' )
				.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper' );

		config = config || {};

		this.controller = controller;
		this.model = model;
		this.queriesModel = savedQueriesModel;
		this.$overlay = config.$overlay || this.$element;
		this.matchingQuery = null;
		this.currentView = this.model.getCurrentView();

		// Parent
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.call( this, $.extend( true, {
			label: mw.msg( 'rcfilters-filterlist-title' ),
			placeholder: mw.msg( 'rcfilters-empty-filter' ),
			inputPosition: 'outline',
			allowArbitrary: false,
			allowDisplayInvalidTags: false,
			allowReordering: false,
			$overlay: this.$overlay,
			menu: {
				// Our filtering is done through the model
				filterFromInput: false,
				hideWhenOutOfView: false,
				hideOnChoose: false,
				width: 650,
				footers: [
					{
						name: 'viewSelect',
						sticky: false,
						// View select menu, appears on default view only
						$element: $( '<div>' )
							.append( new mw.rcfilters.ui.ViewSwitchWidget( this.controller, this.model ).$element ),
						views: [ 'default' ]
					},
					{
						name: 'feedback',
						// Feedback footer, appears on all views
						$element: $( '<div>' )
							.append(
								new OO.ui.ButtonWidget( {
									framed: false,
									icon: 'feedback',
									flags: [ 'progressive' ],
									label: mw.msg( 'rcfilters-filterlist-feedbacklink' ),
									href: 'https://www.mediawiki.org/wiki/Help_talk:New_filters_for_edit_review'
								} ).$element
							)
					}
				]
			},
			input: {
				icon: 'menu',
				placeholder: mw.msg( 'rcfilters-search-placeholder' )
			}
		}, config ) );

		this.savedQueryTitle = new OO.ui.LabelWidget( {
			label: '',
			classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-savedQueryTitle' ]
		} );

		this.resetButton = new OO.ui.ButtonWidget( {
			framed: false,
			classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-resetButton' ]
		} );

		if ( !mw.user.isAnon() ) {
			this.saveQueryButton = new mw.rcfilters.ui.SaveFiltersPopupButtonWidget(
				this.controller,
				this.queriesModel,
				{
					$overlay: this.$overlay
				}
			);

			this.saveQueryButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );

			this.saveQueryButton.connect( this, {
				click: 'onSaveQueryButtonClick',
				saveCurrent: 'setSavedQueryVisibility'
			} );
			this.queriesModel.connect( this, {
				itemUpdate: 'onSavedQueriesItemUpdate',
				initialize: 'onSavedQueriesInitialize',
				'default': 'reevaluateResetRestoreState'
			} );
		}

		this.emptyFilterMessage = new OO.ui.LabelWidget( {
			label: mw.msg( 'rcfilters-empty-filter' ),
			classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters' ]
		} );
		this.$content.append( this.emptyFilterMessage.$element );

		// Events
		this.resetButton.connect( this, { click: 'onResetButtonClick' } );
		// Stop propagation for mousedown, so that the widget doesn't
		// trigger the focus on the input and scrolls up when we click the reset button
		this.resetButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
		this.model.connect( this, {
			initialize: 'onModelInitialize',
			update: 'onModelUpdate',
			searchChange: 'onModelSearchChange',
			itemUpdate: 'onModelItemUpdate',
			highlightChange: 'onModelHighlightChange'
		} );
		this.input.connect( this, { change: 'onInputChange' } );

		// The filter list and button should appear side by side regardless of how
		// wide the button is; the button also changes its width depending
		// on language and its state, so the safest way to present both side
		// by side is with a table layout
		rcFiltersRow = $( '<div>' )
			.addClass( 'mw-rcfilters-ui-row' )
			.append(
				this.$content
					.addClass( 'mw-rcfilters-ui-cell' )
					.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-filters' )
			);

		if ( !mw.user.isAnon() ) {
			rcFiltersRow.append(
				$( '<div>' )
					.addClass( 'mw-rcfilters-ui-cell' )
					.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-save' )
					.append( this.saveQueryButton.$element )
			);
		}

		// Add a selector at the right of the input
		this.viewsSelectWidget = new OO.ui.ButtonSelectWidget( {
			classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget' ],
			items: [
				new OO.ui.ButtonOptionWidget( {
					framed: false,
					data: 'namespaces',
					icon: 'article',
					label: mw.msg( 'namespaces' ),
					title: mw.msg( 'rcfilters-view-namespaces-tooltip' )
				} ),
				new OO.ui.ButtonOptionWidget( {
					framed: false,
					data: 'tags',
					icon: 'tag',
					label: mw.msg( 'tags-title' ),
					title: mw.msg( 'rcfilters-view-tags-tooltip' )
				} )
			]
		} );

		// Rearrange the UI so the select widget is at the right of the input
		this.$element.append(
			$( '<div>' )
				.addClass( 'mw-rcfilters-ui-table' )
				.append(
					$( '<div>' )
						.addClass( 'mw-rcfilters-ui-row' )
						.append(
							$( '<div>' )
								.addClass( 'mw-rcfilters-ui-cell' )
								.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-views-input' )
								.append( this.input.$element ),
							$( '<div>' )
								.addClass( 'mw-rcfilters-ui-cell' )
								.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-views-select' )
								.append( this.viewsSelectWidget.$element )
						)
				)
		);

		// Event
		this.viewsSelectWidget.connect( this, { choose: 'onViewsSelectWidgetChoose' } );

		rcFiltersRow.append(
			$( '<div>' )
				.addClass( 'mw-rcfilters-ui-cell' )
				.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-reset' )
				.append( this.resetButton.$element )
		);

		// Build the content
		$contentWrapper.append(
			title.$element,
			this.savedQueryTitle.$element,
			$( '<div>' )
				.addClass( 'mw-rcfilters-ui-table' )
				.append(
					rcFiltersRow
				)
		);

		// Initialize
		this.$handle.append( $contentWrapper );
		this.emptyFilterMessage.toggle( this.isEmpty() );
		this.savedQueryTitle.toggle( false );

		this.$element
			.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget' );

		this.reevaluateResetRestoreState();
	};

	/* Initialization */

	OO.inheritClass( mw.rcfilters.ui.FilterTagMultiselectWidget, OO.ui.MenuTagMultiselectWidget );

	/* Methods */

	/**
	 * Respond to view select widget choose event
	 *
	 * @param {OO.ui.ButtonOptionWidget} buttonOptionWidget Chosen widget
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onViewsSelectWidgetChoose = function ( buttonOptionWidget ) {
		this.controller.switchView( buttonOptionWidget.getData() );
		this.viewsSelectWidget.selectItem( null );
		this.focus();
	};

	/**
	 * Respond to model search change event
	 *
	 * @param {string} value Search value
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelSearchChange = function ( value ) {
		this.input.setValue( value );
	};

	/**
	 * Respond to input change event
	 *
	 * @param {string} value Value of the input
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onInputChange = function ( value ) {
		this.controller.setSearch( value );
	};

	/**
	 * Respond to query button click
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSaveQueryButtonClick = function () {
		this.getMenu().toggle( false );
	};

	/**
	 * Respond to save query model initialization
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSavedQueriesInitialize = function () {
		this.setSavedQueryVisibility();
	};

	/**
	 * Respond to save query item change. Mainly this is done to update the label in case
	 * a query item has been edited
	 *
	 * @param {mw.rcfilters.dm.SavedQueryItemModel} item Saved query item
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSavedQueriesItemUpdate = function ( item ) {
		if ( this.matchingQuery === item ) {
			// This means we just edited the item that is currently matched
			this.savedQueryTitle.setLabel( item.getLabel() );
		}
	};

	/**
	 * Respond to menu toggle
	 *
	 * @param {boolean} isVisible Menu is visible
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
		// Parent
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onMenuToggle.call( this );

		if ( isVisible ) {
			this.focus();

			mw.hook( 'RcFilters.popup.open' ).fire();

			if ( !this.getMenu().findSelectedItem() ) {
				// If there are no selected items, scroll menu to top
				// This has to be in a setTimeout so the menu has time
				// to be positioned and fixed
				setTimeout( function () { this.getMenu().scrollToTop(); }.bind( this ), 0 );
			}
		} else {
			this.blur();

			// Clear selection
			this.selectTag( null );

			// Clear the search
			this.controller.setSearch( '' );

			// Log filter grouping
			this.controller.trackFilterGroupings( 'filtermenu' );
		}

		this.input.setIcon( isVisible ? 'search' : 'menu' );
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onInputFocus = function () {
		// Parent
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onInputFocus.call( this );

		// Only scroll to top of the viewport if:
		// - The widget is more than 20px from the top
		// - The widget is not above the top of the viewport (do not scroll downwards)
		//   (This isn't represented because >20 is, anyways and always, bigger than 0)
		this.scrollToTop( this.$element, 0, { min: 20, max: Infinity } );
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.doInputEscape = function () {
		// Parent
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.doInputEscape.call( this );

		// Blur the input
		this.input.$input.blur();
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMouseDown = function ( e ) {
		if ( !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
			this.menu.toggle();

			return false;
		}
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onChangeTags = function () {
		// Parent method
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onChangeTags.call( this );

		this.emptyFilterMessage.toggle( this.isEmpty() );
	};

	/**
	 * Respond to model initialize event
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelInitialize = function () {
		this.setSavedQueryVisibility();
	};

	/**
	 * Respond to model update event
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelUpdate = function () {
		this.updateElementsForView();
	};

	/**
	 * Update the elements in the widget to the current view
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.updateElementsForView = function () {
		var view = this.model.getCurrentView(),
			inputValue = this.input.getValue().trim(),
			inputView = this.model.getViewByTrigger( inputValue.substr( 0, 1 ) );

		if ( inputView !== 'default' ) {
			// We have a prefix already, remove it
			inputValue = inputValue.substr( 1 );
		}

		if ( inputView !== view ) {
			// Add the correct prefix
			inputValue = this.model.getViewTrigger( view ) + inputValue;
		}

		// Update input
		this.input.setValue( inputValue );

		if ( this.currentView !== view ) {
			this.scrollToTop( this.$element );
			this.currentView = view;
		}
	};

	/**
	 * Set the visibility of the saved query button
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.setSavedQueryVisibility = function () {
		if ( mw.user.isAnon() ) {
			return;
		}

		this.matchingQuery = this.controller.findQueryMatchingCurrentState();

		this.savedQueryTitle.setLabel(
			this.matchingQuery ? this.matchingQuery.getLabel() : ''
		);
		this.savedQueryTitle.toggle( !!this.matchingQuery );
		this.saveQueryButton.setDisabled( !!this.matchingQuery );
		this.saveQueryButton.setTitle( !this.matchingQuery ?
			mw.msg( 'rcfilters-savedqueries-add-new-title' ) :
			mw.msg( 'rcfilters-savedqueries-already-saved' ) );

		if ( this.matchingQuery ) {
			this.emphasize();
		}
	};

	/**
	 * Respond to model itemUpdate event
	 * fixme: when a new state is applied to the model this function is called 60+ times in a row
	 *
	 * @param {mw.rcfilters.dm.FilterItem} item Filter item model
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelItemUpdate = function ( item ) {
		if ( !item.getGroupModel().isHidden() ) {
			if (
				item.isSelected() ||
				(
					this.model.isHighlightEnabled() &&
					item.getHighlightColor()
				)
			) {
				this.addTag( item.getName(), item.getLabel() );
			} else {
				this.removeTagByData( item.getName() );
			}
		}

		this.setSavedQueryVisibility();

		// Re-evaluate reset state
		this.reevaluateResetRestoreState();
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.isAllowedData = function ( data ) {
		return (
			this.model.getItemByName( data ) &&
			!this.isDuplicateData( data )
		);
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuChoose = function ( item ) {
		this.controller.toggleFilterSelect( item.model.getName() );

		// Select the tag if it exists, or reset selection otherwise
		this.selectTag( this.findItemFromData( item.model.getName() ) );

		this.focus();
	};

	/**
	 * Respond to highlightChange event
	 *
	 * @param {boolean} isHighlightEnabled Highlight is enabled
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelHighlightChange = function ( isHighlightEnabled ) {
		var highlightedItems = this.model.getHighlightedItems();

		if ( isHighlightEnabled ) {
			// Add capsule widgets
			highlightedItems.forEach( function ( filterItem ) {
				this.addTag( filterItem.getName(), filterItem.getLabel() );
			}.bind( this ) );
		} else {
			// Remove capsule widgets if they're not selected
			highlightedItems.forEach( function ( filterItem ) {
				if ( !filterItem.isSelected() ) {
					this.removeTagByData( filterItem.getName() );
				}
			}.bind( this ) );
		}

		this.setSavedQueryVisibility();
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagSelect = function ( tagItem ) {
		var menuOption = this.menu.getItemFromModel( tagItem.getModel() );

		this.menu.setUserSelecting( true );
		// Parent method
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagSelect.call( this, tagItem );

		// Switch view
		this.controller.resetSearchForView( tagItem.getView() );

		this.selectTag( tagItem );
		this.scrollToTop( menuOption.$element );

		this.menu.setUserSelecting( false );
	};

	/**
	 * Select a tag by reference. This is what OO.ui.SelectWidget is doing.
	 * If no items are given, reset selection from all.
	 *
	 * @param {mw.rcfilters.ui.FilterTagItemWidget} [item] Tag to select,
	 *  omit to deselect all
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.selectTag = function ( item ) {
		var i, len, selected;

		for ( i = 0, len = this.items.length; i < len; i++ ) {
			selected = this.items[ i ] === item;
			if ( this.items[ i ].isSelected() !== selected ) {
				this.items[ i ].toggleSelected( selected );
			}
		}
	};
	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagRemove = function ( tagItem ) {
		// Parent method
		mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagRemove.call( this, tagItem );

		this.controller.clearFilter( tagItem.getName() );

		tagItem.destroy();
	};

	/**
	 * Respond to click event on the reset button
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onResetButtonClick = function () {
		if ( this.model.areVisibleFiltersEmpty() ) {
			// Reset to default filters
			this.controller.resetToDefaults();
		} else {
			// Reset to have no filters
			this.controller.emptyFilters();
		}
	};

	/**
	 * Reevaluate the restore state for the widget between setting to defaults and clearing all filters
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.reevaluateResetRestoreState = function () {
		var defaultsAreEmpty = this.controller.areDefaultsEmpty(),
			currFiltersAreEmpty = this.model.areVisibleFiltersEmpty(),
			hideResetButton = currFiltersAreEmpty && defaultsAreEmpty;

		this.resetButton.setIcon(
			currFiltersAreEmpty ? 'history' : 'trash'
		);

		this.resetButton.setLabel(
			currFiltersAreEmpty ? mw.msg( 'rcfilters-restore-default-filters' ) : ''
		);
		this.resetButton.setTitle(
			currFiltersAreEmpty ? null : mw.msg( 'rcfilters-clear-all-filters' )
		);

		this.resetButton.toggle( !hideResetButton );
		this.emptyFilterMessage.toggle( currFiltersAreEmpty );
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
		return new mw.rcfilters.ui.MenuSelectWidget(
			this.controller,
			this.model,
			menuConfig
		);
	};

	/**
	 * @inheritdoc
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createTagItemWidget = function ( data ) {
		var filterItem = this.model.getItemByName( data );

		if ( filterItem ) {
			return new mw.rcfilters.ui.FilterTagItemWidget(
				this.controller,
				this.model,
				this.model.getInvertModel(),
				filterItem,
				{
					$overlay: this.$overlay
				}
			);
		}
	};

	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.emphasize = function () {
		if (
			!this.$handle.hasClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' )
		) {
			this.$handle
				.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-emphasize' )
				.addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' );

			setTimeout( function () {
				this.$handle
					.removeClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-emphasize' );

				setTimeout( function () {
					this.$handle
						.removeClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' );
				}.bind( this ), 1000 );
			}.bind( this ), 500 );

		}
	};
	/**
	 * Scroll the element to top within its container
	 *
	 * @private
	 * @param {jQuery} $element Element to position
	 * @param {number} [marginFromTop=0] When scrolling the entire widget to the top, leave this
	 *  much space (in pixels) above the widget.
	 * @param {Object} [threshold] Minimum distance from the top of the element to scroll at all
	 * @param {number} [threshold.min] Minimum distance above the element
	 * @param {number} [threshold.max] Minimum distance below the element
	 */
	mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.scrollToTop = function ( $element, marginFromTop, threshold ) {
		var container = OO.ui.Element.static.getClosestScrollableContainer( $element[ 0 ], 'y' ),
			pos = OO.ui.Element.static.getRelativePosition( $element, $( container ) ),
			containerScrollTop = $( container ).scrollTop(),
			effectiveScrollTop = $( container ).is( 'body, html' ) ? 0 : containerScrollTop,
			newScrollTop = effectiveScrollTop + pos.top - ( marginFromTop || 0 );

		// Scroll to item
		if (
			threshold === undefined ||
			(
				(
					threshold.min === undefined ||
					newScrollTop - containerScrollTop >= threshold.min
				) &&
				(
					threshold.max === undefined ||
					newScrollTop - containerScrollTop <= threshold.max
				)
			)
		) {
			$( container ).animate( {
				scrollTop: newScrollTop
			} );
		}
	};
}( mediaWiki ) );