RCFilters: Adjust to use MenuTagMultiselectWidget
[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
241 // Reset input
242 this.input.setValue( '' );
243
244 // Parent method
245 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagSelect.call( this, tagItem );
246
247 this.menu.selectItem( menuOption );
248
249 // Scroll to the item
250 // We're binding a 'once' to the itemVisibilityChange event
251 // so this happens when the menu is ready after the items
252 // are visible again, in case this is done right after the
253 // user filtered the results
254 this.getMenu().once(
255 'itemVisibilityChange',
256 function () { widget.scrollToTop( menuOption.$element ); }
257 );
258 };
259 /**
260 * @inheritdoc
261 */
262 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onTagRemove = function ( tagItem ) {
263 // Parent method
264 mw.rcfilters.ui.FilterTagMultiselectWidget.parent.prototype.onTagRemove.call( this, tagItem );
265
266 this.controller.clearFilter( tagItem.getName() );
267 };
268
269 /**
270 * Respond to click event on the reset button
271 */
272 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.onResetButtonClick = function () {
273 if ( this.model.areCurrentFiltersEmpty() ) {
274 // Reset to default filters
275 this.controller.resetToDefaults();
276 } else {
277 // Reset to have no filters
278 this.controller.emptyFilters();
279 }
280 };
281
282 /**
283 * Reevaluate the restore state for the widget between setting to defaults and clearing all filters
284 */
285 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.reevaluateResetRestoreState = function () {
286 var defaultsAreEmpty = this.model.areDefaultFiltersEmpty(),
287 currFiltersAreEmpty = this.model.areCurrentFiltersEmpty(),
288 hideResetButton = currFiltersAreEmpty && defaultsAreEmpty;
289
290 this.resetButton.setIcon(
291 currFiltersAreEmpty ? 'history' : 'trash'
292 );
293
294 this.resetButton.setLabel(
295 currFiltersAreEmpty ? mw.msg( 'rcfilters-restore-default-filters' ) : ''
296 );
297 this.resetButton.setTitle(
298 currFiltersAreEmpty ? null : mw.msg( 'rcfilters-clear-all-filters' )
299 );
300
301 this.resetButton.toggle( !hideResetButton );
302 this.emptyFilterMessage.toggle( currFiltersAreEmpty );
303 };
304
305 /**
306 * @inheritdoc
307 */
308 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createMenuWidget = function ( menuConfig ) {
309 return new mw.rcfilters.ui.FilterFloatingMenuSelectWidget(
310 this.controller,
311 this.model,
312 $.extend( {
313 filterFromInput: true
314 }, menuConfig )
315 );
316 };
317
318 /**
319 * Populate the menu from the model
320 */
321 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.populateFromModel = function () {
322 var widget = this,
323 items = [];
324
325 // Reset
326 this.getMenu().clearItems();
327
328 $.each( this.model.getFilterGroups(), function ( groupName, groupModel ) {
329 items.push(
330 // Group section
331 new mw.rcfilters.ui.FilterMenuSectionOptionWidget(
332 widget.controller,
333 groupModel,
334 {
335 $overlay: widget.$overlay
336 }
337 )
338 );
339
340 // Add items
341 widget.model.getGroupFilters( groupName ).forEach( function ( filterItem ) {
342 items.push(
343 new mw.rcfilters.ui.FilterMenuOptionWidget(
344 widget.controller,
345 filterItem,
346 {
347 $overlay: widget.$overlay
348 }
349 )
350 );
351 } );
352 } );
353
354 // Add all items to the menu
355 this.getMenu().addItems( items );
356 };
357
358 /**
359 * @inheritdoc
360 */
361 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.createTagItemWidget = function ( data ) {
362 var filterItem = this.model.getItemByName( data );
363
364 if ( filterItem ) {
365 return new mw.rcfilters.ui.FilterTagItemWidget(
366 this.controller,
367 filterItem,
368 {
369 $overlay: this.$overlay
370 }
371 );
372 }
373 };
374
375 /**
376 * Scroll the element to top within its container
377 *
378 * @private
379 * @param {jQuery} $element Element to position
380 * @param {number} [marginFromTop] When scrolling the entire widget to the top, leave this
381 * much space (in pixels) above the widget.
382 */
383 mw.rcfilters.ui.FilterTagMultiselectWidget.prototype.scrollToTop = function ( $element, marginFromTop ) {
384 var container = OO.ui.Element.static.getClosestScrollableContainer( $element[ 0 ], 'y' ),
385 pos = OO.ui.Element.static.getRelativePosition( $element, $( container ) ),
386 containerScrollTop = $( container ).is( 'body, html' ) ? 0 : $( container ).scrollTop();
387
388 // Scroll to item
389 $( container ).animate( {
390 scrollTop: containerScrollTop + pos.top - ( marginFromTop || 0 )
391 } );
392 };
393 }( mediaWiki ) );