RCFilters UI: Fix scrolling to item on tag click
[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 * @extends OO.ui.Widget
6 * @mixins OO.ui.mixin.PendingElement
7 *
8 * @constructor
9 * @param {mw.rcfilters.Controller} controller Controller
10 * @param {mw.rcfilters.dm.FiltersViewModel} model View model
11 * @param {Object} config Configuration object
12 * @cfg {jQuery} [$overlay] A jQuery object serving as overlay for popups
13 */
14 mw.rcfilters.ui.FilterTagMultiselectWidget = function MwRcfiltersUiFilterTagMultiselectWidget( controller, model, config ) {
15 var title = new OO.ui.LabelWidget( {
16 label: mw.msg( 'rcfilters-activefilters' ),
17 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper-content-title' ]
18 } ),
19 $contentWrapper = $( '<div>' )
20 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-wrapper' );
21
22 config = config || {};
23
24 this.controller = controller;
25 this.model = model;
26 this.$overlay = config.$overlay || this.$element;
27
28 // Parent
29 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.call( this, $.extend( true, {
30 label: mw.msg( 'rcfilters-filterlist-title' ),
31 placeholder: mw.msg( 'rcfilters-empty-filter' ),
32 inputPosition: 'outline',
33 allowArbitrary: false,
34 allowDisplayInvalidTags: false,
35 allowReordering: false,
36 $overlay: this.$overlay,
37 menu: {
38 hideWhenOutOfView: false,
39 hideOnChoose: false,
40 width: 650,
41 $footer: $( '<div>' )
42 .append(
43 new OO.ui.ButtonWidget( {
44 framed: false,
45 icon: 'feedback',
46 flags: [ 'progressive' ],
47 label: mw.msg( 'rcfilters-filterlist-feedbacklink' ),
48 href: 'https://www.mediawiki.org/wiki/Help_talk:New_filters_for_edit_review'
49 } ).$element
50 )
51 },
52 input: {
53 icon: 'search',
54 placeholder: mw.msg( 'rcfilters-search-placeholder' )
55 }
56 }, config ) );
57
58 this.resetButton = new OO.ui.ButtonWidget( {
59 framed: false,
60 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-resetButton' ]
61 } );
62
63 this.emptyFilterMessage = new OO.ui.LabelWidget( {
64 label: mw.msg( 'rcfilters-empty-filter' ),
65 classes: [ 'mw-rcfilters-ui-filterTagMultiselectWidget-emptyFilters' ]
66 } );
67 this.$content.append( this.emptyFilterMessage.$element );
68
69 // Events
70 this.resetButton.connect( this, { click: 'onResetButtonClick' } );
71 // Stop propagation for mousedown, so that the widget doesn't
72 // trigger the focus on the input and scrolls up when we click the reset button
73 this.resetButton.$element.on( 'mousedown', function ( e ) { e.stopPropagation(); } );
74 this.model.connect( this, {
75 initialize: 'onModelInitialize',
76 itemUpdate: 'onModelItemUpdate',
77 highlightChange: 'onModelHighlightChange'
78 } );
79 this.menu.connect( this, { toggle: 'onMenuToggle' } );
80
81 // Build the content
82 $contentWrapper.append(
83 title.$element,
84 $( '<div>' )
85 .addClass( 'mw-rcfilters-ui-table' )
86 .append(
87 // The filter list and button should appear side by side regardless of how
88 // wide the button is; the button also changes its width depending
89 // on language and its state, so the safest way to present both side
90 // by side is with a table layout
91 $( '<div>' )
92 .addClass( 'mw-rcfilters-ui-row' )
93 .append(
94 this.$content
95 .addClass( 'mw-rcfilters-ui-cell' )
96 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-filters' ),
97 $( '<div>' )
98 .addClass( 'mw-rcfilters-ui-cell' )
99 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget-cell-reset' )
100 .append( this.resetButton.$element )
101 )
102 )
103 );
104
105 // Initialize
106 this.$handle.append( $contentWrapper );
107 this.emptyFilterMessage.toggle( this.isEmpty() );
108
109 this.$element
110 .addClass( 'mw-rcfilters-ui-filterTagMultiselectWidget' );
111
112 this.populateFromModel();
113 this.reevaluateResetRestoreState();
114 };
115
116 /* Initialization */
117
118 OO.inheritClass( mw.rcfilters.ui.FilterTagMultiselectWidget, OO.ui.MenuTagMultiselectWidget );
119
120 /* Methods */
121
122 /**
123 * Respond to menu toggle
124 *
125 * @param {boolean} isVisible Menu is visible
126 */
127 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuToggle = function ( isVisible ) {
128 if ( isVisible ) {
129 mw.hook( 'RcFilters.popup.open' ).fire( this.getMenu().getSelectedItem() );
130
131 if ( !this.getMenu().getSelectedItem() ) {
132 // If there are no selected items, scroll menu to top
133 // This has to be in a setTimeout so the menu has time
134 // to be positioned and fixed
135 setTimeout( function () { this.getMenu().scrollToTop(); }.bind( this ), 0 );
136 }
137 } else {
138 // Clear selection
139 this.getMenu().selectItem( null );
140 }
141 };
142
143 /**
144 * @inheritdoc
145 */
146 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onInputFocus = function () {
147 // Parent
148 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onInputFocus.call( this );
149
150 // Scroll to top
151 this.scrollToTop( this.$element );
152 };
153
154 /**
155 * @inheridoc
156 */
157 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onChangeTags = function () {
158 // Parent method
159 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onChangeTags.call( this );
160
161 this.emptyFilterMessage.toggle( this.isEmpty() );
162 };
163
164 /**
165 * Respond to model initialize event
166 */
167 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelInitialize = function () {
168 this.populateFromModel();
169 };
170
171 /**
172 * Respond to model itemUpdate event
173 *
174 * @param {mw.rcfilters.dm.FilterItem} item Filter item model
175 */
176 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelItemUpdate = function ( item ) {
177 if (
178 item.isSelected() ||
179 (
180 this.model.isHighlightEnabled() &&
181 item.isHighlightSupported() &&
182 item.getHighlightColor()
183 )
184 ) {
185 this.addTag( item.getName(), item.getLabel() );
186 } else {
187 this.removeTagByData( item.getName() );
188 }
189
190 // Re-evaluate reset state
191 this.reevaluateResetRestoreState();
192 };
193
194 /**
195 * @inheritdoc
196 */
197 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.isAllowedData = function ( data ) {
198 return (
199 this.menu.getItemFromData( data ) &&
200 !this.isDuplicateData( data )
201 );
202 };
203
204 /**
205 * @inheritdoc
206 */
207 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onMenuChoose = function ( item ) {
208 this.controller.toggleFilterSelect( item.model.getName() );
209 };
210
211 /**
212 * Respond to highlightChange event
213 *
214 * @param {boolean} isHighlightEnabled Highlight is enabled
215 */
216 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onModelHighlightChange = function ( isHighlightEnabled ) {
217 var highlightedItems = this.model.getHighlightedItems();
218
219 if ( isHighlightEnabled ) {
220 // Add capsule widgets
221 highlightedItems.forEach( function ( filterItem ) {
222 this.addTag( filterItem.getName(), filterItem.getLabel() );
223 }.bind( this ) );
224 } else {
225 // Remove capsule widgets if they're not selected
226 highlightedItems.forEach( function ( filterItem ) {
227 if ( !filterItem.isSelected() ) {
228 this.removeTagByData( filterItem.getName() );
229 }
230 }.bind( this ) );
231 }
232 };
233
234 /**
235 * @inheritdoc
236 */
237 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagSelect = function ( tagItem ) {
238 var widget = this,
239 menuOption = this.menu.getItemFromData( tagItem.getData() ),
240 oldInputValue = this.input.getValue();
241
242 // Reset input
243 this.input.setValue( '' );
244
245 // Parent method
246 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagSelect.call( this, tagItem );
247
248 this.menu.selectItem( menuOption );
249
250 // Scroll to the item
251 if ( oldInputValue ) {
252 // We're binding a 'once' to the itemVisibilityChange event
253 // so this happens when the menu is ready after the items
254 // are visible again, in case this is done right after the
255 // user filtered the results
256 this.getMenu().once(
257 'itemVisibilityChange',
258 function () { widget.scrollToTop( menuOption.$element ); }
259 );
260 } else {
261 this.scrollToTop( menuOption.$element );
262 }
263 };
264
265 /**
266 * @inheritdoc
267 */
268 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagRemove = function ( tagItem ) {
269 // Parent method
270 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagRemove.call( this, tagItem );
271
272 this.controller.clearFilter( tagItem.getName() );
273
274 tagItem.destroy();
275 };
276
277 /**
278 * Respond to click event on the reset button
279 */
280 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onResetButtonClick = function () {
281 if ( this.model.areCurrentFiltersEmpty() ) {
282 // Reset to default filters
283 this.controller.resetToDefaults();
284 } else {
285 // Reset to have no filters
286 this.controller.emptyFilters();
287 }
288 };
289
290 /**
291 * Reevaluate the restore state for the widget between setting to defaults and clearing all filters
292 */
293 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.reevaluateResetRestoreState = function () {
294 var defaultsAreEmpty = this.model.areDefaultFiltersEmpty(),
295 currFiltersAreEmpty = this.model.areCurrentFiltersEmpty(),
296 hideResetButton = currFiltersAreEmpty && defaultsAreEmpty;
297
298 this.resetButton.setIcon(
299 currFiltersAreEmpty ? 'history' : 'trash'
300 );
301
302 this.resetButton.setLabel(
303 currFiltersAreEmpty ? mw.msg( 'rcfilters-restore-default-filters' ) : ''
304 );
305 this.resetButton.setTitle(
306 currFiltersAreEmpty ? null : mw.msg( 'rcfilters-clear-all-filters' )
307 );
308
309 this.resetButton.toggle( !hideResetButton );
310 this.emptyFilterMessage.toggle( currFiltersAreEmpty );
311 };
312
313 /**
314 * @inheritdoc
315 */
316 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
317 return new mw.rcfilters.ui.FilterFloatingMenuSelectWidget(
318 this.controller,
319 this.model,
320 $.extend( {
321 filterFromInput: true
322 }, menuConfig )
323 );
324 };
325
326 /**
327 * Populate the menu from the model
328 */
329 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.populateFromModel = function () {
330 var widget = this,
331 items = [];
332
333 // Reset
334 this.getMenu().clearItems();
335
336 $.each( this.model.getFilterGroups(), function ( groupName, groupModel ) {
337 items.push(
338 // Group section
339 new mw.rcfilters.ui.FilterMenuSectionOptionWidget(
340 widget.controller,
341 groupModel,
342 {
343 $overlay: widget.$overlay
344 }
345 )
346 );
347
348 // Add items
349 widget.model.getGroupFilters( groupName ).forEach( function ( filterItem ) {
350 items.push(
351 new mw.rcfilters.ui.FilterMenuOptionWidget(
352 widget.controller,
353 filterItem,
354 {
355 $overlay: widget.$overlay
356 }
357 )
358 );
359 } );
360 } );
361
362 // Add all items to the menu
363 this.getMenu().addItems( items );
364 };
365
366 /**
367 * @inheritdoc
368 */
369 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createTagItemWidget = function ( data ) {
370 var filterItem = this.model.getItemByName( data );
371
372 if ( filterItem ) {
373 return new mw.rcfilters.ui.FilterTagItemWidget(
374 this.controller,
375 filterItem,
376 {
377 $overlay: this.$overlay
378 }
379 );
380 }
381 };
382
383 /**
384 * Scroll the element to top within its container
385 *
386 * @private
387 * @param {jQuery} $element Element to position
388 * @param {number} [marginFromTop] When scrolling the entire widget to the top, leave this
389 * much space (in pixels) above the widget.
390 */
391 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.scrollToTop = function ( $element, marginFromTop ) {
392 var container = OO.ui.Element.static.getClosestScrollableContainer( $element[ 0 ], 'y' ),
393 pos = OO.ui.Element.static.getRelativePosition( $element, $( container ) ),
394 containerScrollTop = $( container ).is( 'body, html' ) ? 0 : $( container ).scrollTop();
395
396 // Scroll to item
397 $( container ).animate( {
398 scrollTop: containerScrollTop + pos.top - ( marginFromTop || 0 )
399 } );
400 };
401 }( mediaWiki ) );