Merge "Add (hacky) check for webm audio files"
[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.inputValue = '';
36 this.$overlay = config.$overlay || this.$element;
37 this.$body = $( '<div>' )
38 .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 * Respond to model initialize event. Populate the menu from the model
134 */
135 mw.rcfilters.ui.MenuSelectWidget.prototype.onModelInitialize = function () {
136 var widget = this,
137 viewGroupCount = {},
138 groups = this.model.getFilterGroups();
139
140 // Reset
141 this.clearItems();
142
143 // Count groups per view
144 $.each( groups, function ( groupName, groupModel ) {
145 if ( !groupModel.isHidden() ) {
146 viewGroupCount[ groupModel.getView() ] = viewGroupCount[ groupModel.getView() ] || 0;
147 viewGroupCount[ groupModel.getView() ]++;
148 }
149 } );
150
151 $.each( groups, function ( groupName, groupModel ) {
152 var currentItems = [],
153 view = groupModel.getView();
154
155 if ( !groupModel.isHidden() ) {
156 if ( viewGroupCount[ view ] > 1 ) {
157 // Only add a section header if there is more than
158 // one group
159 currentItems.push(
160 // Group section
161 new mw.rcfilters.ui.FilterMenuSectionOptionWidget(
162 widget.controller,
163 groupModel,
164 {
165 $overlay: widget.$overlay
166 }
167 )
168 );
169 }
170
171 // Add items
172 widget.model.getGroupFilters( groupName ).forEach( function ( filterItem ) {
173 currentItems.push(
174 new mw.rcfilters.ui.FilterMenuOptionWidget(
175 widget.controller,
176 filterItem,
177 {
178 $overlay: widget.$overlay
179 }
180 )
181 );
182 } );
183
184 // Cache the items per view, so we can switch between them
185 // without rebuilding the widgets each time
186 widget.views[ view ] = widget.views[ view ] || [];
187 widget.views[ view ] = widget.views[ view ].concat( currentItems );
188 }
189 } );
190
191 this.switchView( this.model.getCurrentView() );
192 };
193
194 /**
195 * Switch view
196 *
197 * @param {string} [viewName] View name. If not given, default is used.
198 */
199 mw.rcfilters.ui.MenuSelectWidget.prototype.switchView = function ( viewName ) {
200 viewName = viewName || 'default';
201
202 if ( this.views[ viewName ] && this.currentView !== viewName ) {
203 this.clearItems();
204 this.addItems( this.views[ viewName ] );
205 this.updateFooterVisibility( viewName );
206
207 this.$element
208 .data( 'view', viewName )
209 .removeClass( 'mw-rcfilters-ui-menuSelectWidget-view-' + this.currentView )
210 .addClass( 'mw-rcfilters-ui-menuSelectWidget-view-' + viewName );
211
212 this.currentView = viewName;
213 this.clip();
214 }
215 };
216
217 /**
218 * Go over the available footers and decide which should be visible
219 * for this view
220 *
221 * @param {string} [currentView] Current view
222 */
223 mw.rcfilters.ui.MenuSelectWidget.prototype.updateFooterVisibility = function ( currentView ) {
224 currentView = currentView || this.model.getCurrentView();
225
226 this.footers.forEach( function ( data ) {
227 data.$element.toggle(
228 // This footer should only be shown if it is configured
229 // for all views or for this specific view
230 !data.views || data.views.length === 0 || data.views.indexOf( currentView ) > -1
231 );
232 } );
233 };
234
235 /**
236 * @fires itemVisibilityChange
237 * @inheritdoc
238 */
239 mw.rcfilters.ui.MenuSelectWidget.prototype.updateItemVisibility = function () {
240 var i,
241 itemWasSelected = false,
242 inputVal = this.$input.val(),
243 items = this.getItems();
244
245 // Since the method hides/shows items, we don't want to
246 // call it unless the input actually changed
247 if (
248 !this.userSelecting &&
249 this.inputValue !== inputVal
250 ) {
251 // Parent method
252 mw.rcfilters.ui.MenuSelectWidget.parent.prototype.updateItemVisibility.call( this );
253
254 // Select the first item in the list
255 for ( i = 0; i < items.length; i++ ) {
256 if (
257 !( items[ i ] instanceof OO.ui.MenuSectionOptionWidget ) &&
258 items[ i ].isVisible()
259 ) {
260 itemWasSelected = true;
261 this.selectItem( items[ i ] );
262 break;
263 }
264 }
265
266 if ( !itemWasSelected ) {
267 this.selectItem( null );
268 }
269
270 // Cache value
271 this.inputValue = inputVal;
272
273 this.emit( 'itemVisibilityChange' );
274 }
275
276 this.noResults.toggle( !this.getItems().some( function ( item ) {
277 return item.isVisible();
278 } ) );
279 };
280
281 /**
282 * Get the option widget that matches the model given
283 *
284 * @param {mw.rcfilters.dm.ItemModel} model Item model
285 * @return {mw.rcfilters.ui.ItemMenuOptionWidget} Option widget
286 */
287 mw.rcfilters.ui.MenuSelectWidget.prototype.getItemFromModel = function ( model ) {
288 return this.views[ model.getGroupModel().getView() ].filter( function ( item ) {
289 return item.getName() === model.getName();
290 } )[ 0 ];
291 };
292
293 /**
294 * Override the item matcher to use the model's match process
295 *
296 * @inheritdoc
297 */
298 mw.rcfilters.ui.MenuSelectWidget.prototype.getItemMatcher = function ( s ) {
299 var results = this.model.findMatches( s, true );
300
301 return function ( item ) {
302 return results.indexOf( item.getModel() ) > -1;
303 };
304 };
305
306 /**
307 * @inheritdoc
308 */
309 mw.rcfilters.ui.MenuSelectWidget.prototype.onKeyDown = function ( e ) {
310 var nextItem,
311 currentItem = this.getHighlightedItem() || this.getSelectedItem();
312
313 // Call parent
314 mw.rcfilters.ui.MenuSelectWidget.parent.prototype.onKeyDown.call( this, e );
315
316 // We want to select the item on arrow movement
317 // rather than just highlight it, like the menu
318 // does by default
319 if ( !this.isDisabled() && this.isVisible() ) {
320 switch ( e.keyCode ) {
321 case OO.ui.Keys.UP:
322 case OO.ui.Keys.LEFT:
323 // Get the next item
324 nextItem = this.getRelativeSelectableItem( currentItem, -1 );
325 break;
326 case OO.ui.Keys.DOWN:
327 case OO.ui.Keys.RIGHT:
328 // Get the next item
329 nextItem = this.getRelativeSelectableItem( currentItem, 1 );
330 break;
331 }
332
333 nextItem = nextItem && nextItem.constructor.static.selectable ?
334 nextItem : null;
335
336 // Select the next item
337 this.selectItem( nextItem );
338 }
339 };
340
341 /**
342 * Scroll to the top of the menu
343 */
344 mw.rcfilters.ui.MenuSelectWidget.prototype.scrollToTop = function () {
345 this.$body.scrollTop( 0 );
346 };
347
348 /**
349 * Set whether the user is currently selecting an item.
350 * This is important when the user selects an item that is in between
351 * different views, and makes sure we do not re-select a different
352 * item (like the item on top) when this is happening.
353 *
354 * @param {boolean} isSelecting User is selecting
355 */
356 mw.rcfilters.ui.MenuSelectWidget.prototype.setUserSelecting = function ( isSelecting ) {
357 this.userSelecting = !!isSelecting;
358 };
359 }( mediaWiki ) );