RC Filters: Check if app is initialized before calling change tags
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / ui / mw.rcfilters.ui.FilterTagMultiselectWidget.js
1 ( function ( mw ) {
2 /**
3 * List displaying all filter groups
4 *
5 * @class
6 * @extends OO.ui.MenuTagMultiselectWidget
7 * @mixins OO.ui.mixin.PendingElement
8 *
9 * @constructor
10 * @param {mw.rcfilters.Controller} controller Controller
11 * @param {mw.rcfilters.dm.FiltersViewModel} model View model
12 * @param {mw.rcfilters.dm.SavedQueriesModel} savedQueriesModel Saved queries model
13 * @param {Object} config Configuration object
14 * @cfg {jQuery} [$overlay] A jQuery object serving as overlay for popups
15 * @cfg {jQuery} [$wrapper] A jQuery object for the wrapper of the general
16 * system. If not given, falls back to this widget's $element
17 * @cfg {boolean} [collapsed] Filter area is collapsed
18 */
19 mw.rcfilters.ui.FilterTagMultiselectWidget = function MwRcfiltersUiFilterTagMultiselectWidget( controller, model, savedQueriesModel, config ) {
20 var rcFiltersRow,
21 title = new OO.ui.LabelWidget( {
22 label: mw.msg( 'rcfilters-activefilters' ),
23 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title' ]
24 } ),
25 $contentWrapper = $( '<div>' )
26 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper' );
27
28 config = config || {};
29
30 this.controller = controller;
31 this.model = model;
32 this.queriesModel = savedQueriesModel;
33 this.$overlay = config.$overlay || this.$element;
34 this.$wrapper = config.$wrapper || this.$element;
35 this.matchingQuery = null;
36 this.currentView = this.model.getCurrentView();
37 this.collapsed = false;
38
39 // Parent
40 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.call( this, $.extend( true, {
41 label: mw.msg( 'rcfilters-filterlist-title' ),
42 placeholder: mw.msg( 'rcfilters-empty-filter' ),
43 inputPosition: 'outline',
44 allowArbitrary: false,
45 allowDisplayInvalidTags: false,
46 allowReordering: false,
47 $overlay: this.$overlay,
48 menu: {
49 // Our filtering is done through the model
50 filterFromInput: false,
51 hideWhenOutOfView: false,
52 hideOnChoose: false,
53 width: 650,
54 footers: [
55 {
56 name: 'viewSelect',
57 sticky: false,
58 // View select menu, appears on default view only
59 $element: $( '<div>' )
60 .append( new mw.rcfilters.ui.ViewSwitchWidget( this.controller, this.model ).$element ),
61 views: [ 'default' ]
62 },
63 {
64 name: 'feedback',
65 // Feedback footer, appears on all views
66 $element: $( '<div>' )
67 .append(
68 new OO.ui.ButtonWidget( {
69 framed: false,
70 icon: 'feedback',
71 flags: [ 'progressive' ],
72 label: mw.msg( 'rcfilters-filterlist-feedbacklink' ),
73 href: 'https://www.mediawiki.org/wiki/Help_talk:New_filters_for_edit_review'
74 } ).$element
75 )
76 }
77 ]
78 },
79 input: {
80 icon: 'menu',
81 placeholder: mw.msg( 'rcfilters-search-placeholder' )
82 }
83 }, config ) );
84
85 this.savedQueryTitle = new OO.ui.LabelWidget( {
86 label: '',
87 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-savedQueryTitle' ]
88 } );
89
90 this.resetButton = new OO.ui.ButtonWidget( {
91 framed: false,
92 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-resetButton' ]
93 } );
94
95 this.hideShowButton = new OO.ui.ButtonWidget( {
96 framed: false,
97 flags: [ 'progressive' ],
98 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-hideshowButton' ]
99 } );
100 this.toggleCollapsed( !!config.collapsed );
101
102 if ( !mw.user.isAnon() ) {
103 this.saveQueryButton = new mw.rcfilters.ui.SaveFiltersPopupButtonWidget(
104 this.controller,
105 this.queriesModel,
106 {
107 $overlay: this.$overlay
108 }
109 );
110
111 this.saveQueryButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
112
113 this.saveQueryButton.connect( this, {
114 click: 'onSaveQueryButtonClick',
115 saveCurrent: 'setSavedQueryVisibility'
116 } );
117 this.queriesModel.connect( this, {
118 itemUpdate: 'onSavedQueriesItemUpdate',
119 initialize: 'onSavedQueriesInitialize',
120 'default': 'reevaluateResetRestoreState'
121 } );
122 }
123
124 this.emptyFilterMessage = new OO.ui.LabelWidget( {
125 label: mw.msg( 'rcfilters-empty-filter' ),
126 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters' ]
127 } );
128 this.$content.append( this.emptyFilterMessage.$element );
129
130 // Events
131 this.resetButton.connect( this, { click: 'onResetButtonClick' } );
132 this.hideShowButton.connect( this, { click: 'onHideShowButtonClick' } );
133 // Stop propagation for mousedown, so that the widget doesn't
134 // trigger the focus on the input and scrolls up when we click the reset button
135 this.resetButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
136 this.hideShowButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
137 this.model.connect( this, {
138 initialize: 'onModelInitialize',
139 update: 'onModelUpdate',
140 searchChange: 'onModelSearchChange',
141 itemUpdate: 'onModelItemUpdate',
142 highlightChange: 'onModelHighlightChange'
143 } );
144 this.input.connect( this, { change: 'onInputChange' } );
145
146 // The filter list and button should appear side by side regardless of how
147 // wide the button is; the button also changes its width depending
148 // on language and its state, so the safest way to present both side
149 // by side is with a table layout
150 rcFiltersRow = $( '<div>' )
151 .addClass( 'mw-rcfilters-ui-row' )
152 .append(
153 this.$content
154 .addClass( 'mw-rcfilters-ui-cell' )
155 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-filters' )
156 );
157
158 if ( !mw.user.isAnon() ) {
159 rcFiltersRow.append(
160 $( '<div>' )
161 .addClass( 'mw-rcfilters-ui-cell' )
162 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-save' )
163 .append( this.saveQueryButton.$element )
164 );
165 }
166
167 // Add a selector at the right of the input
168 this.viewsSelectWidget = new OO.ui.ButtonSelectWidget( {
169 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-views-select-widget' ],
170 items: [
171 new OO.ui.ButtonOptionWidget( {
172 framed: false,
173 data: 'namespaces',
174 icon: 'article',
175 label: mw.msg( 'namespaces' ),
176 title: mw.msg( 'rcfilters-view-namespaces-tooltip' )
177 } ),
178 new OO.ui.ButtonOptionWidget( {
179 framed: false,
180 data: 'tags',
181 icon: 'tag',
182 label: mw.msg( 'tags-title' ),
183 title: mw.msg( 'rcfilters-view-tags-tooltip' )
184 } )
185 ]
186 } );
187
188 // Rearrange the UI so the select widget is at the right of the input
189 this.$element.append(
190 $( '<div>' )
191 .addClass( 'mw-rcfilters-ui-table' )
192 .append(
193 $( '<div>' )
194 .addClass( 'mw-rcfilters-ui-row' )
195 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-views' )
196 .append(
197 $( '<div>' )
198 .addClass( 'mw-rcfilters-ui-cell' )
199 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-views-input' )
200 .append( this.input.$element ),
201 $( '<div>' )
202 .addClass( 'mw-rcfilters-ui-cell' )
203 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-views-select' )
204 .append( this.viewsSelectWidget.$element )
205 )
206 )
207 );
208
209 // Event
210 this.viewsSelectWidget.connect( this, { choose: 'onViewsSelectWidgetChoose' } );
211
212 rcFiltersRow.append(
213 $( '<div>' )
214 .addClass( 'mw-rcfilters-ui-cell' )
215 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-reset' )
216 .append( this.resetButton.$element )
217 );
218
219 // Build the content
220 $contentWrapper.append(
221 $( '<div>' )
222 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-top' )
223 .append(
224 $( '<div>' )
225 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-top-title' )
226 .append( title.$element ),
227 $( '<div>' )
228 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-top-queryName' )
229 .append( this.savedQueryTitle.$element ),
230 $( '<div>' )
231 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-top-hideshow' )
232 .append(
233 this.hideShowButton.$element
234 )
235 ),
236 $( '<div>' )
237 .addClass( 'mw-rcfilters-ui-table' )
238 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-filters' )
239 .append( rcFiltersRow )
240 );
241
242 // Initialize
243 this.$handle.append( $contentWrapper );
244 this.emptyFilterMessage.toggle( this.isEmpty() );
245 this.savedQueryTitle.toggle( false );
246
247 this.$element
248 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget' );
249
250 this.reevaluateResetRestoreState();
251 };
252
253 /* Initialization */
254
255 OO.inheritClass( mw.rcfilters.ui.FilterTagMultiselectWidget, OO.ui.MenuTagMultiselectWidget );
256
257 /* Methods */
258
259 /**
260 * Respond to view select widget choose event
261 *
262 * @param {OO.ui.ButtonOptionWidget} buttonOptionWidget Chosen widget
263 */
264 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onViewsSelectWidgetChoose = function ( buttonOptionWidget ) {
265 this.controller.switchView( buttonOptionWidget.getData() );
266 this.viewsSelectWidget.selectItem( null );
267 this.focus();
268 };
269
270 /**
271 * Respond to model search change event
272 *
273 * @param {string} value Search value
274 */
275 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelSearchChange = function ( value ) {
276 this.input.setValue( value );
277 };
278
279 /**
280 * Respond to input change event
281 *
282 * @param {string} value Value of the input
283 */
284 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onInputChange = function ( value ) {
285 this.controller.setSearch( value );
286 };
287
288 /**
289 * Respond to query button click
290 */
291 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSaveQueryButtonClick = function () {
292 this.getMenu().toggle( false );
293 };
294
295 /**
296 * Respond to save query model initialization
297 */
298 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSavedQueriesInitialize = function () {
299 this.setSavedQueryVisibility();
300 };
301
302 /**
303 * Respond to save query item change. Mainly this is done to update the label in case
304 * a query item has been edited
305 *
306 * @param {mw.rcfilters.dm.SavedQueryItemModel} item Saved query item
307 */
308 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onSavedQueriesItemUpdate = function ( item ) {
309 if ( this.matchingQuery === item ) {
310 // This means we just edited the item that is currently matched
311 this.savedQueryTitle.setLabel( item.getLabel() );
312 }
313 };
314
315 /**
316 * Respond to menu toggle
317 *
318 * @param {boolean} isVisible Menu is visible
319 */
320 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
321 // Parent
322 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onMenuToggle.call( this );
323
324 if ( isVisible ) {
325 this.focus();
326
327 mw.hook( 'RcFilters.popup.open' ).fire();
328
329 if ( !this.getMenu().findSelectedItem() ) {
330 // If there are no selected items, scroll menu to top
331 // This has to be in a setTimeout so the menu has time
332 // to be positioned and fixed
333 setTimeout( function () { this.getMenu().scrollToTop(); }.bind( this ), 0 );
334 }
335 } else {
336 this.blur();
337
338 // Clear selection
339 this.selectTag( null );
340
341 // Clear the search
342 this.controller.setSearch( '' );
343
344 // Log filter grouping
345 this.controller.trackFilterGroupings( 'filtermenu' );
346 }
347
348 this.input.setIcon( isVisible ? 'search' : 'menu' );
349 };
350
351 /**
352 * @inheritdoc
353 */
354 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onInputFocus = function () {
355 // Parent
356 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onInputFocus.call( this );
357
358 // Only scroll to top of the viewport if:
359 // - The widget is more than 20px from the top
360 // - The widget is not above the top of the viewport (do not scroll downwards)
361 // (This isn't represented because >20 is, anyways and always, bigger than 0)
362 this.scrollToTop( this.$element, 0, { min: 20, max: Infinity } );
363 };
364
365 /**
366 * @inheritdoc
367 */
368 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.doInputEscape = function () {
369 // Parent
370 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.doInputEscape.call( this );
371
372 // Blur the input
373 this.input.$input.blur();
374 };
375
376 /**
377 * @inheritdoc
378 */
379 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMouseDown = function ( e ) {
380 if ( !this.collapsed && !this.isDisabled() && e.which === OO.ui.MouseButtons.LEFT ) {
381 this.menu.toggle();
382
383 return false;
384 }
385 };
386
387 /**
388 * @inheritdoc
389 */
390 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onChangeTags = function () {
391 // If initialized, call parent method.
392 if ( this.controller.isInitialized() ) {
393 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onChangeTags.call( this );
394 }
395
396 this.emptyFilterMessage.toggle( this.isEmpty() );
397 };
398
399 /**
400 * Respond to model initialize event
401 */
402 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelInitialize = function () {
403 this.setSavedQueryVisibility();
404 };
405
406 /**
407 * Respond to model update event
408 */
409 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelUpdate = function () {
410 this.updateElementsForView();
411 };
412
413 /**
414 * Update the elements in the widget to the current view
415 */
416 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.updateElementsForView = function () {
417 var view = this.model.getCurrentView(),
418 inputValue = this.input.getValue().trim(),
419 inputView = this.model.getViewByTrigger( inputValue.substr( 0, 1 ) );
420
421 if ( inputView !== 'default' ) {
422 // We have a prefix already, remove it
423 inputValue = inputValue.substr( 1 );
424 }
425
426 if ( inputView !== view ) {
427 // Add the correct prefix
428 inputValue = this.model.getViewTrigger( view ) + inputValue;
429 }
430
431 // Update input
432 this.input.setValue( inputValue );
433
434 if ( this.currentView !== view ) {
435 this.scrollToTop( this.$element );
436 this.currentView = view;
437 }
438 };
439
440 /**
441 * Set the visibility of the saved query button
442 */
443 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.setSavedQueryVisibility = function () {
444 if ( mw.user.isAnon() ) {
445 return;
446 }
447
448 this.matchingQuery = this.controller.findQueryMatchingCurrentState();
449
450 this.savedQueryTitle.setLabel(
451 this.matchingQuery ? this.matchingQuery.getLabel() : ''
452 );
453 this.savedQueryTitle.toggle( !!this.matchingQuery );
454 this.saveQueryButton.setDisabled( !!this.matchingQuery );
455 this.saveQueryButton.setTitle( !this.matchingQuery ?
456 mw.msg( 'rcfilters-savedqueries-add-new-title' ) :
457 mw.msg( 'rcfilters-savedqueries-already-saved' ) );
458
459 if ( this.matchingQuery ) {
460 this.emphasize();
461 }
462 };
463
464 /**
465 * Respond to model itemUpdate event
466 * fixme: when a new state is applied to the model this function is called 60+ times in a row
467 *
468 * @param {mw.rcfilters.dm.FilterItem} item Filter item model
469 */
470 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelItemUpdate = function ( item ) {
471 if ( !item.getGroupModel().isHidden() ) {
472 if (
473 item.isSelected() ||
474 (
475 this.model.isHighlightEnabled() &&
476 item.getHighlightColor()
477 )
478 ) {
479 this.addTag( item.getName(), item.getLabel() );
480 } else {
481 // Only attempt to remove the tag if we can find an item for it (T198140, T198231)
482 if ( this.findItemFromData( item.getName() ) !== null ) {
483 this.removeTagByData( item.getName() );
484 }
485 }
486 }
487
488 this.setSavedQueryVisibility();
489
490 // Re-evaluate reset state
491 this.reevaluateResetRestoreState();
492 };
493
494 /**
495 * @inheritdoc
496 */
497 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.isAllowedData = function ( data ) {
498 return (
499 this.model.getItemByName( data ) &&
500 !this.isDuplicateData( data )
501 );
502 };
503
504 /**
505 * @inheritdoc
506 */
507 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuChoose = function ( item ) {
508 this.controller.toggleFilterSelect( item.model.getName() );
509
510 // Select the tag if it exists, or reset selection otherwise
511 this.selectTag( this.findItemFromData( item.model.getName() ) );
512
513 this.focus();
514 };
515
516 /**
517 * Respond to highlightChange event
518 *
519 * @param {boolean} isHighlightEnabled Highlight is enabled
520 */
521 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelHighlightChange = function ( isHighlightEnabled ) {
522 var highlightedItems = this.model.getHighlightedItems();
523
524 if ( isHighlightEnabled ) {
525 // Add capsule widgets
526 highlightedItems.forEach( function ( filterItem ) {
527 this.addTag( filterItem.getName(), filterItem.getLabel() );
528 }.bind( this ) );
529 } else {
530 // Remove capsule widgets if they're not selected
531 highlightedItems.forEach( function ( filterItem ) {
532 if ( !filterItem.isSelected() ) {
533 // Only attempt to remove the tag if we can find an item for it (T198140, T198231)
534 if ( this.findItemFromData( filterItem.getName() ) !== null ) {
535 this.removeTagByData( filterItem.getName() );
536 }
537 }
538 }.bind( this ) );
539 }
540
541 this.setSavedQueryVisibility();
542 };
543
544 /**
545 * @inheritdoc
546 */
547 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagSelect = function ( tagItem ) {
548 var menuOption = this.menu.getItemFromModel( tagItem.getModel() );
549
550 this.menu.setUserSelecting( true );
551 // Parent method
552 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagSelect.call( this, tagItem );
553
554 // Switch view
555 this.controller.resetSearchForView( tagItem.getView() );
556
557 this.selectTag( tagItem );
558 this.scrollToTop( menuOption.$element );
559
560 this.menu.setUserSelecting( false );
561 };
562
563 /**
564 * Select a tag by reference. This is what OO.ui.SelectWidget is doing.
565 * If no items are given, reset selection from all.
566 *
567 * @param {mw.rcfilters.ui.FilterTagItemWidget} [item] Tag to select,
568 * omit to deselect all
569 */
570 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.selectTag = function ( item ) {
571 var i, len, selected;
572
573 for ( i = 0, len = this.items.length; i < len; i++ ) {
574 selected = this.items[ i ] === item;
575 if ( this.items[ i ].isSelected() !== selected ) {
576 this.items[ i ].toggleSelected( selected );
577 }
578 }
579 };
580 /**
581 * @inheritdoc
582 */
583 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagRemove = function ( tagItem ) {
584 // Parent method
585 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagRemove.call( this, tagItem );
586
587 this.controller.clearFilter( tagItem.getName() );
588
589 tagItem.destroy();
590 };
591
592 /**
593 * Respond to click event on the reset button
594 */
595 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onResetButtonClick = function () {
596 if ( this.model.areVisibleFiltersEmpty() ) {
597 // Reset to default filters
598 this.controller.resetToDefaults();
599 } else {
600 // Reset to have no filters
601 this.controller.emptyFilters();
602 }
603 };
604
605 /**
606 * Respond to hide/show button click
607 */
608 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onHideShowButtonClick = function () {
609 this.toggleCollapsed();
610 };
611
612 /**
613 * Toggle the collapsed state of the filters widget
614 *
615 * @param {boolean} isCollapsed Widget is collapsed
616 */
617 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.toggleCollapsed = function ( isCollapsed ) {
618 isCollapsed = isCollapsed === undefined ? !this.collapsed : !!isCollapsed;
619
620 this.collapsed = isCollapsed;
621
622 if ( isCollapsed ) {
623 // If we are collapsing, close the menu, in case it was open
624 // We should make sure the menu closes before the rest of the elements
625 // are hidden, otherwise there is an unknown error in jQuery as ooui
626 // sets and unsets properties on the input (which is hidden at that point)
627 this.menu.toggle( false );
628 }
629 this.input.setDisabled( isCollapsed );
630 this.hideShowButton.setLabel( mw.msg(
631 isCollapsed ? 'rcfilters-activefilters-show' : 'rcfilters-activefilters-hide'
632 ) );
633 this.hideShowButton.setTitle( mw.msg(
634 isCollapsed ? 'rcfilters-activefilters-show-tooltip' : 'rcfilters-activefilters-hide-tooltip'
635 ) );
636
637 // Toggle the wrapper class, so we have min height values correctly throughout
638 this.$wrapper.toggleClass( 'mw-rcfilters-collapsed', isCollapsed );
639
640 // Save the state
641 this.controller.updateCollapsedState( isCollapsed );
642 };
643
644 /**
645 * Reevaluate the restore state for the widget between setting to defaults and clearing all filters
646 */
647 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.reevaluateResetRestoreState = function () {
648 var defaultsAreEmpty = this.controller.areDefaultsEmpty(),
649 currFiltersAreEmpty = this.model.areVisibleFiltersEmpty(),
650 hideResetButton = currFiltersAreEmpty && defaultsAreEmpty;
651
652 this.resetButton.setIcon(
653 currFiltersAreEmpty ? 'history' : 'trash'
654 );
655
656 this.resetButton.setLabel(
657 currFiltersAreEmpty ? mw.msg( 'rcfilters-restore-default-filters' ) : ''
658 );
659 this.resetButton.setTitle(
660 currFiltersAreEmpty ? null : mw.msg( 'rcfilters-clear-all-filters' )
661 );
662
663 this.resetButton.toggle( !hideResetButton );
664 this.emptyFilterMessage.toggle( currFiltersAreEmpty );
665 };
666
667 /**
668 * @inheritdoc
669 */
670 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
671 return new mw.rcfilters.ui.MenuSelectWidget(
672 this.controller,
673 this.model,
674 menuConfig
675 );
676 };
677
678 /**
679 * @inheritdoc
680 */
681 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createTagItemWidget = function ( data ) {
682 var filterItem = this.model.getItemByName( data );
683
684 if ( filterItem ) {
685 return new mw.rcfilters.ui.FilterTagItemWidget(
686 this.controller,
687 this.model,
688 this.model.getInvertModel(),
689 filterItem,
690 {
691 $overlay: this.$overlay
692 }
693 );
694 }
695 };
696
697 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.emphasize = function () {
698 if (
699 !this.$handle.hasClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' )
700 ) {
701 this.$handle
702 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-emphasize' )
703 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' );
704
705 setTimeout( function () {
706 this.$handle
707 .removeClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-emphasize' );
708
709 setTimeout( function () {
710 this.$handle
711 .removeClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-animate' );
712 }.bind( this ), 1000 );
713 }.bind( this ), 500 );
714
715 }
716 };
717 /**
718 * Scroll the element to top within its container
719 *
720 * @private
721 * @param {jQuery} $element Element to position
722 * @param {number} [marginFromTop=0] When scrolling the entire widget to the top, leave this
723 * much space (in pixels) above the widget.
724 * @param {Object} [threshold] Minimum distance from the top of the element to scroll at all
725 * @param {number} [threshold.min] Minimum distance above the element
726 * @param {number} [threshold.max] Minimum distance below the element
727 */
728 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.scrollToTop = function ( $element, marginFromTop, threshold ) {
729 var container = OO.ui.Element.static.getClosestScrollableContainer( $element[ 0 ], 'y' ),
730 pos = OO.ui.Element.static.getRelativePosition( $element, $( container ) ),
731 containerScrollTop = $( container ).scrollTop(),
732 effectiveScrollTop = $( container ).is( 'body, html' ) ? 0 : containerScrollTop,
733 newScrollTop = effectiveScrollTop + pos.top - ( marginFromTop || 0 );
734
735 // Scroll to item
736 if (
737 threshold === undefined ||
738 (
739 (
740 threshold.min === undefined ||
741 newScrollTop - containerScrollTop >= threshold.min
742 ) &&
743 (
744 threshold.max === undefined ||
745 newScrollTop - containerScrollTop <= threshold.max
746 )
747 )
748 ) {
749 $( container ).animate( {
750 scrollTop: newScrollTop
751 } );
752 }
753 };
754 }( mediaWiki ) );