Merge "registration: Only allow one extension to set a specific config setting"
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / ui / mw.rcfilters.ui.MenuSelectWidget.js
1 ( function ( mw ) {
2 /**
3 * A floating menu widget for the filter list
4 *
5 * @extends OO.ui.MenuSelectWidget
6 *
7 * @constructor
8 * @param {mw.rcfilters.Controller} controller Controller
9 * @param {mw.rcfilters.dm.FiltersViewModel} model View model
10 * @param {Object} [config] Configuration object
11 * @cfg {jQuery} [$overlay] A jQuery object serving as overlay for popups
12 * @cfg {Object[]} [footers] An array of objects defining the footers for
13 * this menu, with a definition whether they appear per specific views.
14 * The expected structure is:
15 * [
16 * {
17 * name: {string} A unique name for the footer object
18 * $element: {jQuery} A jQuery object for the content of the footer
19 * views: {string[]} Optional. An array stating which views this footer is
20 * active on. Use null or omit to display this on all views.
21 * }
22 * ]
23 */
24 mw.rcfilters.ui.MenuSelectWidget = function MwRcfiltersUiMenuSelectWidget( controller, model, config ) {
25 var header;
26
27 config = config || {};
28
29 this.controller = controller;
30 this.model = model;
31 this.currentView = '';
32 this.views = {};
33 this.userSelecting = false;
34
35 this.menuInitialized = false;
36 this.inputValue = '';
37 this.$overlay = config.$overlay || this.$element;
38 this.$body = $( '<div>' ).addClass( 'mw-rcfilters-ui-menuSelectWidget-body' );
39 this.footers = [];
40
41 // Parent
42 mw.rcfilters.ui.MenuSelectWidget.parent.call( this, $.extend( {
43 $autoCloseIgnore: this.$overlay,
44 width: 650
45 }, config ) );
46 this.setGroupElement(
47 $( '<div>' )
48 .addClass( 'mw-rcfilters-ui-menuSelectWidget-group' )
49 );
50 this.setClippableElement( this.$body );
51 this.setClippableContainer( this.$element );
52
53 header = new mw.rcfilters.ui.FilterMenuHeaderWidget(
54 this.controller,
55 this.model,
56 {
57 $overlay: this.$overlay
58 }
59 );
60
61 this.noResults = new OO.ui.LabelWidget( {
62 label: mw.msg( 'rcfilters-filterlist-noresults' ),
63 classes: [ 'mw-rcfilters-ui-menuSelectWidget-noresults' ]
64 } );
65
66 // Events
67 this.model.connect( this, {
68 update: 'onModelUpdate',
69 initialize: 'onModelInitialize'
70 } );
71
72 // Initialization
73 this.$element
74 .addClass( 'mw-rcfilters-ui-menuSelectWidget' )
75 .append( header.$element )
76 .append(
77 this.$body
78 .append( this.$group, this.noResults.$element )
79 );
80
81 // Append all footers; we will control their visibility
82 // based on view
83 config.footers = config.footers || [];
84 config.footers.forEach( function ( footerData ) {
85 var isSticky = footerData.sticky === undefined ? true : !!footerData.sticky,
86 adjustedData = {
87 // Wrap the element with our own footer wrapper
88 $element: $( '<div>' )
89 .addClass( 'mw-rcfilters-ui-menuSelectWidget-footer' )
90 .addClass( 'mw-rcfilters-ui-menuSelectWidget-footer-' + footerData.name )
91 .append( footerData.$element ),
92 views: footerData.views
93 };
94
95 if ( !footerData.disabled ) {
96 this.footers.push( adjustedData );
97
98 if ( isSticky ) {
99 this.$element.append( adjustedData.$element );
100 } else {
101 this.$body.append( adjustedData.$element );
102 }
103 }
104 }.bind( this ) );
105
106 // Switch to the correct view
107 this.switchView( this.model.getCurrentView() );
108 };
109
110 /* Initialize */
111
112 OO.inheritClass( mw.rcfilters.ui.MenuSelectWidget, OO.ui.MenuSelectWidget );
113
114 /* Events */
115
116 /**
117 * @event itemVisibilityChange
118 *
119 * Item visibility has changed
120 */
121
122 /* Methods */
123
124 /**
125 * Respond to model update event
126 */
127 mw.rcfilters.ui.MenuSelectWidget.prototype.onModelUpdate = function () {
128 // Change view
129 this.switchView( this.model.getCurrentView() );
130 };
131
132 /**
133 * @inheritdoc
134 */
135 mw.rcfilters.ui.MenuSelectWidget.prototype.toggle = function ( show ) {
136 this.lazyMenuCreation();
137 mw.rcfilters.ui.MenuSelectWidget.parent.prototype.toggle.call( this, show );
138 };
139
140 /**
141 * lazy creation of the menu
142 */
143 mw.rcfilters.ui.MenuSelectWidget.prototype.lazyMenuCreation = function () {
144 var widget = this,
145 viewGroupCount = {},
146 groups = this.model.getFilterGroups();
147
148 if ( this.menuInitialized ) {
149 return;
150 }
151
152 this.menuInitialized = true;
153 // Reset
154 this.clearItems();
155
156 // Count groups per view
157 $.each( groups, function ( groupName, groupModel ) {
158 if ( !groupModel.isHidden() ) {
159 viewGroupCount[ groupModel.getView() ] = viewGroupCount[ groupModel.getView() ] || 0;
160 viewGroupCount[ groupModel.getView() ]++;
161 }
162 } );
163
164 $.each( groups, function ( groupName, groupModel ) {
165 var currentItems = [],
166 view = groupModel.getView();
167
168 if ( !groupModel.isHidden() ) {
169 if ( viewGroupCount[ view ] > 1 ) {
170 // Only add a section header if there is more than
171 // one group
172 currentItems.push(
173 // Group section
174 new mw.rcfilters.ui.FilterMenuSectionOptionWidget(
175 widget.controller,
176 groupModel,
177 {
178 $overlay: widget.$overlay
179 }
180 )
181 );
182 }
183
184 // Add items
185 widget.model.getGroupFilters( groupName ).forEach( function ( filterItem ) {
186 currentItems.push(
187 new mw.rcfilters.ui.FilterMenuOptionWidget(
188 widget.controller,
189 widget.model,
190 widget.model.getInvertModel(),
191 filterItem,
192 {
193 $overlay: widget.$overlay
194 }
195 )
196 );
197 } );
198
199 // Cache the items per view, so we can switch between them
200 // without rebuilding the widgets each time
201 widget.views[ view ] = widget.views[ view ] || [];
202 widget.views[ view ] = widget.views[ view ].concat( currentItems );
203 }
204 } );
205
206 this.switchView( this.model.getCurrentView() );
207 };
208
209 /**
210 * Respond to model initialize event. Populate the menu from the model
211 */
212 mw.rcfilters.ui.MenuSelectWidget.prototype.onModelInitialize = function () {
213 this.menuInitialized = false;
214 };
215
216 /**
217 * Switch view
218 *
219 * @param {string} [viewName] View name. If not given, default is used.
220 */
221 mw.rcfilters.ui.MenuSelectWidget.prototype.switchView = function ( viewName ) {
222 viewName = viewName || 'default';
223
224 if ( this.views[ viewName ] && this.currentView !== viewName ) {
225 this.clearItems();
226 this.addItems( this.views[ viewName ] );
227 this.updateFooterVisibility( viewName );
228
229 this.$element
230 .data( 'view', viewName )
231 .removeClass( 'mw-rcfilters-ui-menuSelectWidget-view-' + this.currentView )
232 .addClass( 'mw-rcfilters-ui-menuSelectWidget-view-' + viewName );
233
234 this.currentView = viewName;
235 this.scrollToTop();
236 this.clip();
237 }
238 };
239
240 /**
241 * Go over the available footers and decide which should be visible
242 * for this view
243 *
244 * @param {string} [currentView] Current view
245 */
246 mw.rcfilters.ui.MenuSelectWidget.prototype.updateFooterVisibility = function ( currentView ) {
247 currentView = currentView || this.model.getCurrentView();
248
249 this.footers.forEach( function ( data ) {
250 data.$element.toggle(
251 // This footer should only be shown if it is configured
252 // for all views or for this specific view
253 !data.views || data.views.length === 0 || data.views.indexOf( currentView ) > -1
254 );
255 } );
256 };
257
258 /**
259 * @fires itemVisibilityChange
260 * @inheritdoc
261 */
262 mw.rcfilters.ui.MenuSelectWidget.prototype.updateItemVisibility = function () {
263 var i,
264 itemWasSelected = false,
265 inputVal = this.$input.val(),
266 items = this.getItems();
267
268 // Since the method hides/shows items, we don't want to
269 // call it unless the input actually changed
270 if (
271 !this.userSelecting &&
272 this.inputValue !== inputVal
273 ) {
274 // Parent method
275 mw.rcfilters.ui.MenuSelectWidget.parent.prototype.updateItemVisibility.call( this );
276
277 // Select the first item in the list
278 for ( i = 0; i < items.length; i++ ) {
279 if (
280 !( items[ i ] instanceof OO.ui.MenuSectionOptionWidget ) &&
281 items[ i ].isVisible()
282 ) {
283 itemWasSelected = true;
284 this.selectItem( items[ i ] );
285 break;
286 }
287 }
288
289 if ( !itemWasSelected ) {
290 this.selectItem( null );
291 }
292
293 // Cache value
294 this.inputValue = inputVal;
295
296 this.emit( 'itemVisibilityChange' );
297 }
298
299 this.noResults.toggle( !this.getItems().some( function ( item ) {
300 return item.isVisible();
301 } ) );
302 };
303
304 /**
305 * Get the option widget that matches the model given
306 *
307 * @param {mw.rcfilters.dm.ItemModel} model Item model
308 * @return {mw.rcfilters.ui.ItemMenuOptionWidget} Option widget
309 */
310 mw.rcfilters.ui.MenuSelectWidget.prototype.getItemFromModel = function ( model ) {
311 this.lazyMenuCreation();
312 return this.views[ model.getGroupModel().getView() ].filter( function ( item ) {
313 return item.getName() === model.getName();
314 } )[ 0 ];
315 };
316
317 /**
318 * Override the item matcher to use the model's match process
319 *
320 * @inheritdoc
321 */
322 mw.rcfilters.ui.MenuSelectWidget.prototype.getItemMatcher = function ( s ) {
323 var results = this.model.findMatches( s, true );
324
325 return function ( item ) {
326 return results.indexOf( item.getModel() ) > -1;
327 };
328 };
329
330 /**
331 * @inheritdoc
332 */
333 mw.rcfilters.ui.MenuSelectWidget.prototype.onKeyDown = function ( e ) {
334 var nextItem,
335 currentItem = this.getHighlightedItem() || this.getSelectedItem();
336
337 // Call parent
338 mw.rcfilters.ui.MenuSelectWidget.parent.prototype.onKeyDown.call( this, e );
339
340 // We want to select the item on arrow movement
341 // rather than just highlight it, like the menu
342 // does by default
343 if ( !this.isDisabled() && this.isVisible() ) {
344 switch ( e.keyCode ) {
345 case OO.ui.Keys.UP:
346 case OO.ui.Keys.LEFT:
347 // Get the next item
348 nextItem = this.findRelativeSelectableItem( currentItem, -1 );
349 break;
350 case OO.ui.Keys.DOWN:
351 case OO.ui.Keys.RIGHT:
352 // Get the next item
353 nextItem = this.findRelativeSelectableItem( currentItem, 1 );
354 break;
355 }
356
357 nextItem = nextItem && nextItem.constructor.static.selectable ?
358 nextItem : null;
359
360 // Select the next item
361 this.selectItem( nextItem );
362 }
363 };
364
365 /**
366 * Scroll to the top of the menu
367 */
368 mw.rcfilters.ui.MenuSelectWidget.prototype.scrollToTop = function () {
369 this.$body.scrollTop( 0 );
370 };
371
372 /**
373 * Set whether the user is currently selecting an item.
374 * This is important when the user selects an item that is in between
375 * different views, and makes sure we do not re-select a different
376 * item (like the item on top) when this is happening.
377 *
378 * @param {boolean} isSelecting User is selecting
379 */
380 mw.rcfilters.ui.MenuSelectWidget.prototype.setUserSelecting = function ( isSelecting ) {
381 this.userSelecting = !!isSelecting;
382 };
383 }( mediaWiki ) );