Merge "Revised styling of sister-search sidebar."
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / dm / mw.rcfilters.dm.FiltersViewModel.js
1 ( function ( mw, $ ) {
2 /**
3 * View model for the filters selection and display
4 *
5 * @mixins OO.EventEmitter
6 * @mixins OO.EmitterList
7 *
8 * @constructor
9 */
10 mw.rcfilters.dm.FiltersViewModel = function MwRcfiltersDmFiltersViewModel() {
11 // Mixin constructor
12 OO.EventEmitter.call( this );
13 OO.EmitterList.call( this );
14
15 this.groups = {};
16 this.defaultParams = {};
17 this.defaultFiltersEmpty = null;
18 this.highlightEnabled = false;
19 this.parameterMap = {};
20
21 // Events
22 this.aggregate( { update: 'filterItemUpdate' } );
23 this.connect( this, { filterItemUpdate: [ 'emit', 'itemUpdate' ] } );
24 };
25
26 /* Initialization */
27 OO.initClass( mw.rcfilters.dm.FiltersViewModel );
28 OO.mixinClass( mw.rcfilters.dm.FiltersViewModel, OO.EventEmitter );
29 OO.mixinClass( mw.rcfilters.dm.FiltersViewModel, OO.EmitterList );
30
31 /* Events */
32
33 /**
34 * @event initialize
35 *
36 * Filter list is initialized
37 */
38
39 /**
40 * @event itemUpdate
41 * @param {mw.rcfilters.dm.FilterItem} item Filter item updated
42 *
43 * Filter item has changed
44 */
45
46 /**
47 * @event highlightChange
48 * @param {boolean} Highlight feature is enabled
49 *
50 * Highlight feature has been toggled enabled or disabled
51 */
52
53 /* Methods */
54
55 /**
56 * Re-assess the states of filter items based on the interactions between them
57 *
58 * @param {mw.rcfilters.dm.FilterItem} [item] Changed item. If not given, the
59 * method will go over the state of all items
60 */
61 mw.rcfilters.dm.FiltersViewModel.prototype.reassessFilterInteractions = function ( item ) {
62 var allSelected,
63 model = this,
64 iterationItems = item !== undefined ? [ item ] : this.getItems();
65
66 iterationItems.forEach( function ( checkedItem ) {
67 var allCheckedItems = checkedItem.getSubset().concat( [ checkedItem.getName() ] ),
68 groupModel = checkedItem.getGroupModel();
69
70 // Check for subsets (included filters) plus the item itself:
71 allCheckedItems.forEach( function ( filterItemName ) {
72 var itemInSubset = model.getItemByName( filterItemName );
73
74 itemInSubset.toggleIncluded(
75 // If any of itemInSubset's supersets are selected, this item
76 // is included
77 itemInSubset.getSuperset().some( function ( supersetName ) {
78 return ( model.getItemByName( supersetName ).isSelected() );
79 } )
80 );
81 } );
82
83 // Update coverage for the changed group
84 if ( groupModel.isFullCoverage() ) {
85 allSelected = groupModel.areAllSelected();
86 groupModel.getItems().forEach( function ( filterItem ) {
87 filterItem.toggleFullyCovered( allSelected );
88 } );
89 }
90 } );
91
92 // Check for conflicts
93 // In this case, we must go over all items, since
94 // conflicts are bidirectional and depend not only on
95 // individual items, but also on the selected states of
96 // the groups they're in.
97 this.getItems().forEach( function ( filterItem ) {
98 var inConflict = false,
99 filterItemGroup = filterItem.getGroupModel();
100
101 // For each item, see if that item is still conflicting
102 $.each( model.groups, function ( groupName, groupModel ) {
103 if ( filterItem.getGroupName() === groupName ) {
104 // Check inside the group
105 inConflict = groupModel.areAnySelectedInConflictWith( filterItem );
106 } else {
107 // According to the spec, if two items conflict from two different
108 // groups, the conflict only lasts if the groups **only have selected
109 // items that are conflicting**. If a group has selected items that
110 // are conflicting and non-conflicting, the scope of the result has
111 // expanded enough to completely remove the conflict.
112
113 // For example, see two groups with conflicts:
114 // userExpLevel: [
115 // {
116 // name: 'experienced',
117 // conflicts: [ 'unregistered' ]
118 // }
119 // ],
120 // registration: [
121 // {
122 // name: 'registered',
123 // },
124 // {
125 // name: 'unregistered',
126 // }
127 // ]
128 // If we select 'experienced', then 'unregistered' is in conflict (and vice versa),
129 // because, inherently, 'experienced' filter only includes registered users, and so
130 // both filters are in conflict with one another.
131 // However, the minute we select 'registered', the scope of our results
132 // has expanded to no longer have a conflict with 'experienced' filter, and
133 // so the conflict is removed.
134
135 // In our case, we need to check if the entire group conflicts with
136 // the entire item's group, so we follow the above spec
137 inConflict = (
138 // The foreign group is in conflict with this item
139 groupModel.areAllSelectedInConflictWith( filterItem ) &&
140 // Every selected member of the item's own group is also
141 // in conflict with the other group
142 filterItemGroup.getSelectedItems().every( function ( otherGroupItem ) {
143 return groupModel.areAllSelectedInConflictWith( otherGroupItem );
144 } )
145 );
146 }
147
148 // If we're in conflict, this will return 'false' which
149 // will break the loop. Otherwise, we're not in conflict
150 // and the loop continues
151 return !inConflict;
152 } );
153
154 // Toggle the item state
155 filterItem.toggleConflicted( inConflict );
156 } );
157 };
158
159 /**
160 * Get whether the model has any conflict in its items
161 *
162 * @return {boolean} There is a conflict
163 */
164 mw.rcfilters.dm.FiltersViewModel.prototype.hasConflict = function () {
165 return this.getItems().some( function ( filterItem ) {
166 return filterItem.isSelected() && filterItem.isConflicted();
167 } );
168 };
169
170 /**
171 * Get the first item with a current conflict
172 *
173 * @return {mw.rcfilters.dm.FilterItem} Conflicted item
174 */
175 mw.rcfilters.dm.FiltersViewModel.prototype.getFirstConflictedItem = function () {
176 var conflictedItem;
177
178 $.each( this.getItems(), function ( index, filterItem ) {
179 if ( filterItem.isSelected() && filterItem.isConflicted() ) {
180 conflictedItem = filterItem;
181 return false;
182 }
183 } );
184
185 return conflictedItem;
186 };
187
188 /**
189 * Set filters and preserve a group relationship based on
190 * the definition given by an object
191 *
192 * @param {Array} filters Filter group definition
193 */
194 mw.rcfilters.dm.FiltersViewModel.prototype.initializeFilters = function ( filters ) {
195 var i, filterItem, filterConflictResult, groupConflictResult, subsetNames,
196 model = this,
197 items = [],
198 supersetMap = {},
199 groupConflictMap = {},
200 filterConflictMap = {},
201 addArrayElementsUnique = function ( arr, elements ) {
202 elements = Array.isArray( elements ) ? elements : [ elements ];
203
204 elements.forEach( function ( element ) {
205 if ( arr.indexOf( element ) === -1 ) {
206 arr.push( element );
207 }
208 } );
209
210 return arr;
211 },
212 expandConflictDefinitions = function ( obj ) {
213 var result = {};
214
215 $.each( obj, function ( key, conflicts ) {
216 var filterName,
217 adjustedConflicts = {};
218
219 conflicts.forEach( function ( conflict ) {
220 var filter;
221
222 if ( conflict.filter ) {
223 filterName = model.groups[ conflict.group ].getNamePrefix() + conflict.filter;
224 filter = model.getItemByName( filterName );
225
226 // Rename
227 adjustedConflicts[ filterName ] = $.extend(
228 {},
229 conflict,
230 {
231 filter: filterName,
232 item: filter
233 }
234 );
235 } else {
236 // This conflict is for an entire group. Split it up to
237 // represent each filter
238
239 // Get the relevant group items
240 model.groups[ conflict.group ].getItems().forEach( function ( groupItem ) {
241 // Rebuild the conflict
242 adjustedConflicts[ groupItem.getName() ] = $.extend(
243 {},
244 conflict,
245 {
246 filter: groupItem.getName(),
247 item: groupItem
248 }
249 );
250 } );
251 }
252 } );
253
254 result[ key ] = adjustedConflicts;
255 } );
256
257 return result;
258 };
259
260 // Reset
261 this.clearItems();
262 this.groups = {};
263
264 filters.forEach( function ( data ) {
265 var group = data.name;
266
267 if ( !model.groups[ group ] ) {
268 model.groups[ group ] = new mw.rcfilters.dm.FilterGroup( group, {
269 type: data.type,
270 title: mw.msg( data.title ),
271 separator: data.separator,
272 fullCoverage: !!data.fullCoverage,
273 whatsThis: {
274 body: data.whatsThisBody,
275 header: data.whatsThisHeader,
276 linkText: data.whatsThisLinkText,
277 url: data.whatsThisUrl
278 }
279 } );
280 }
281
282 if ( data.conflicts ) {
283 groupConflictMap[ group ] = data.conflicts;
284 }
285
286 for ( i = 0; i < data.filters.length; i++ ) {
287 data.filters[ i ].subset = data.filters[ i ].subset || [];
288 data.filters[ i ].subset = data.filters[ i ].subset.map( function ( el ) {
289 return el.filter;
290 } );
291
292 filterItem = new mw.rcfilters.dm.FilterItem( data.filters[ i ].name, model.groups[ group ], {
293 group: group,
294 label: mw.msg( data.filters[ i ].label ),
295 description: mw.msg( data.filters[ i ].description ),
296 cssClass: data.filters[ i ].cssClass
297 } );
298
299 if ( data.filters[ i ].subset ) {
300 subsetNames = [];
301 data.filters[ i ].subset.forEach( function ( subsetFilterName ) { // eslint-disable-line no-loop-func
302 var subsetName = model.groups[ group ].getNamePrefix() + subsetFilterName;
303 // For convenience, we should store each filter's "supersets" -- these are
304 // the filters that have that item in their subset list. This will just
305 // make it easier to go through whether the item has any other items
306 // that affect it (and are selected) at any given time
307 supersetMap[ subsetName ] = supersetMap[ subsetName ] || [];
308 addArrayElementsUnique(
309 supersetMap[ subsetName ],
310 filterItem.getName()
311 );
312
313 // Translate subset param name to add the group name, so we
314 // get consistent naming. We know that subsets are only within
315 // the same group
316 subsetNames.push( subsetName );
317 } );
318
319 // Set translated subset
320 filterItem.setSubset( subsetNames );
321 }
322
323 // Store conflicts
324 if ( data.filters[ i ].conflicts ) {
325 filterConflictMap[ filterItem.getName() ] = data.filters[ i ].conflicts;
326 }
327
328 if ( data.type === 'send_unselected_if_any' ) {
329 // Store the default parameter state
330 // For this group type, parameter values are direct
331 model.defaultParams[ data.filters[ i ].name ] = Number( !!data.filters[ i ].default );
332 }
333
334 model.groups[ group ].addItems( filterItem );
335 items.push( filterItem );
336 }
337
338 if ( data.type === 'string_options' ) {
339 // Store the default parameter group state
340 // For this group, the parameter is group name and value is the names
341 // of selected items
342 model.defaultParams[ group ] = model.sanitizeStringOptionGroup(
343 group,
344 data.default ?
345 data.default.split( model.groups[ group ].getSeparator() ) :
346 []
347 ).join( model.groups[ group ].getSeparator() );
348 }
349 } );
350
351 // Add items to the model
352 this.addItems( items );
353
354 // Expand conflicts
355 groupConflictResult = expandConflictDefinitions( groupConflictMap );
356 filterConflictResult = expandConflictDefinitions( filterConflictMap );
357
358 // Set conflicts for groups
359 $.each( groupConflictResult, function ( group, conflicts ) {
360 model.groups[ group ].setConflicts( conflicts );
361 } );
362
363 items.forEach( function ( filterItem ) {
364 // Apply the superset map
365 filterItem.setSuperset( supersetMap[ filterItem.getName() ] );
366
367 // set conflicts for item
368 if ( filterConflictResult[ filterItem.getName() ] ) {
369 filterItem.setConflicts( filterConflictResult[ filterItem.getName() ] );
370 }
371 } );
372
373 // Create a map between known parameters and their models
374 $.each( this.groups, function ( group, groupModel ) {
375 if ( groupModel.getType() === 'send_unselected_if_any' ) {
376 // Individual filters
377 groupModel.getItems().forEach( function ( filterItem ) {
378 model.parameterMap[ filterItem.getParamName() ] = filterItem;
379 } );
380 } else if ( groupModel.getType() === 'string_options' ) {
381 // Group
382 model.parameterMap[ groupModel.getName() ] = groupModel;
383 }
384 } );
385
386 this.emit( 'initialize' );
387 };
388
389 /**
390 * Get the names of all available filters
391 *
392 * @return {string[]} An array of filter names
393 */
394 mw.rcfilters.dm.FiltersViewModel.prototype.getFilterNames = function () {
395 return this.getItems().map( function ( item ) { return item.getName(); } );
396 };
397
398 /**
399 * Get the object that defines groups by their name.
400 *
401 * @return {Object} Filter groups
402 */
403 mw.rcfilters.dm.FiltersViewModel.prototype.getFilterGroups = function () {
404 return this.groups;
405 };
406
407 /**
408 * Get the value of a specific parameter
409 *
410 * @param {string} name Parameter name
411 * @return {number|string} Parameter value
412 */
413 mw.rcfilters.dm.FiltersViewModel.prototype.getParamValue = function ( name ) {
414 return this.parameters[ name ];
415 };
416
417 /**
418 * Get the current selected state of the filters
419 *
420 * @return {Object} Filters selected state
421 */
422 mw.rcfilters.dm.FiltersViewModel.prototype.getSelectedState = function () {
423 var i,
424 items = this.getItems(),
425 result = {};
426
427 for ( i = 0; i < items.length; i++ ) {
428 result[ items[ i ].getName() ] = items[ i ].isSelected();
429 }
430
431 return result;
432 };
433
434 /**
435 * Get the current full state of the filters
436 *
437 * @return {Object} Filters full state
438 */
439 mw.rcfilters.dm.FiltersViewModel.prototype.getFullState = function () {
440 var i,
441 items = this.getItems(),
442 result = {};
443
444 for ( i = 0; i < items.length; i++ ) {
445 result[ items[ i ].getName() ] = {
446 selected: items[ i ].isSelected(),
447 conflicted: items[ i ].isConflicted(),
448 included: items[ i ].isIncluded()
449 };
450 }
451
452 return result;
453 };
454
455 /**
456 * Get the default parameters object
457 *
458 * @return {Object} Default parameter values
459 */
460 mw.rcfilters.dm.FiltersViewModel.prototype.getDefaultParams = function () {
461 return this.defaultParams;
462 };
463
464 /**
465 * Analyze the groups and their filters and output an object representing
466 * the state of the parameters they represent.
467 *
468 * @param {Object} [filterDefinition] An object defining the filter values,
469 * keyed by filter names.
470 * @return {Object} Parameter state object
471 */
472 mw.rcfilters.dm.FiltersViewModel.prototype.getParametersFromFilters = function ( filterDefinition ) {
473 var groupItemDefinition,
474 result = {},
475 groupItems = this.getFilterGroups();
476
477 if ( filterDefinition ) {
478 groupItemDefinition = {};
479 // Filter definition is "flat", but in effect
480 // each group needs to tell us its result based
481 // on the values in it. We need to split this list
482 // back into groupings so we can "feed" it to the
483 // loop below, and we need to expand it so it includes
484 // all filters (set to false)
485 this.getItems().forEach( function ( filterItem ) {
486 groupItemDefinition[ filterItem.getGroupName() ] = groupItemDefinition[ filterItem.getGroupName() ] || {};
487 groupItemDefinition[ filterItem.getGroupName() ][ filterItem.getName() ] = !!filterDefinition[ filterItem.getName() ];
488 } );
489 }
490
491 $.each( groupItems, function ( group, model ) {
492 $.extend(
493 result,
494 model.getParamRepresentation(
495 groupItemDefinition ?
496 groupItemDefinition[ group ] : null
497 )
498 );
499 } );
500
501 return result;
502 };
503
504 /**
505 * Get the highlight parameters based on current filter configuration
506 *
507 * @return {object} Object where keys are "<filter name>_color" and values
508 * are the selected highlight colors.
509 */
510 mw.rcfilters.dm.FiltersViewModel.prototype.getHighlightParameters = function () {
511 var result = { highlight: Number( this.isHighlightEnabled() ) };
512
513 this.getItems().forEach( function ( filterItem ) {
514 result[ filterItem.getName() + '_color' ] = filterItem.getHighlightColor();
515 } );
516 return result;
517 };
518
519 /**
520 * Sanitize value group of a string_option groups type
521 * Remove duplicates and make sure to only use valid
522 * values.
523 *
524 * @private
525 * @param {string} groupName Group name
526 * @param {string[]} valueArray Array of values
527 * @return {string[]} Array of valid values
528 */
529 mw.rcfilters.dm.FiltersViewModel.prototype.sanitizeStringOptionGroup = function ( groupName, valueArray ) {
530 var result = [],
531 validNames = this.getGroupFilters( groupName ).map( function ( filterItem ) {
532 return filterItem.getParamName();
533 } );
534
535 if ( valueArray.indexOf( 'all' ) > -1 ) {
536 // If anywhere in the values there's 'all', we
537 // treat it as if only 'all' was selected.
538 // Example: param=valid1,valid2,all
539 // Result: param=all
540 return [ 'all' ];
541 }
542
543 // Get rid of any dupe and invalid parameter, only output
544 // valid ones
545 // Example: param=valid1,valid2,invalid1,valid1
546 // Result: param=valid1,valid2
547 valueArray.forEach( function ( value ) {
548 if (
549 validNames.indexOf( value ) > -1 &&
550 result.indexOf( value ) === -1
551 ) {
552 result.push( value );
553 }
554 } );
555
556 return result;
557 };
558
559 /**
560 * Check whether the current filter state is set to all false.
561 *
562 * @return {boolean} Current filters are all empty
563 */
564 mw.rcfilters.dm.FiltersViewModel.prototype.areCurrentFiltersEmpty = function () {
565 // Check if there are either any selected items or any items
566 // that have highlight enabled
567 return !this.getItems().some( function ( filterItem ) {
568 return filterItem.isSelected() || filterItem.isHighlighted();
569 } );
570 };
571
572 /**
573 * Check whether the default values of the filters are all false.
574 *
575 * @return {boolean} Default filters are all false
576 */
577 mw.rcfilters.dm.FiltersViewModel.prototype.areDefaultFiltersEmpty = function () {
578 var defaultFilters;
579
580 if ( this.defaultFiltersEmpty !== null ) {
581 // We only need to do this test once,
582 // because defaults are set once per session
583 defaultFilters = this.getFiltersFromParameters();
584 this.defaultFiltersEmpty = Object.keys( defaultFilters ).every( function ( filterName ) {
585 return !defaultFilters[ filterName ];
586 } );
587 }
588
589 return this.defaultFiltersEmpty;
590 };
591
592 /**
593 * This is the opposite of the #getParametersFromFilters method; this goes over
594 * the given parameters and translates into a selected/unselected value in the filters.
595 *
596 * @param {Object} params Parameters query object
597 * @return {Object} Filter state object
598 */
599 mw.rcfilters.dm.FiltersViewModel.prototype.getFiltersFromParameters = function ( params ) {
600 var i,
601 groupMap = {},
602 model = this,
603 base = this.getDefaultParams(),
604 result = {};
605
606 params = $.extend( {}, base, params );
607
608 // Go over the given parameters
609 $.each( params, function ( paramName, paramValue ) {
610 var itemOrGroup = model.parameterMap[ paramName ];
611
612 if ( itemOrGroup instanceof mw.rcfilters.dm.FilterItem ) {
613 // Mark the group if it has any items that are selected
614 groupMap[ itemOrGroup.getGroupName() ] = groupMap[ itemOrGroup.getGroupName() ] || {};
615 groupMap[ itemOrGroup.getGroupName() ].hasSelected = (
616 groupMap[ itemOrGroup.getGroupName() ].hasSelected ||
617 !!Number( paramValue )
618 );
619
620 // Add filters
621 groupMap[ itemOrGroup.getGroupName() ].filters = groupMap[ itemOrGroup.getGroupName() ].filters || [];
622 groupMap[ itemOrGroup.getGroupName() ].filters.push( itemOrGroup );
623 } else if ( itemOrGroup instanceof mw.rcfilters.dm.FilterGroup ) {
624 groupMap[ itemOrGroup.getName() ] = groupMap[ itemOrGroup.getName() ] || {};
625 // This parameter represents a group (values are the filters)
626 // this is equivalent to checking if the group is 'string_options'
627 groupMap[ itemOrGroup.getName() ].filters = itemOrGroup.getItems();
628 }
629 } );
630
631 // Now that we know the groups' selection states, we need to go over
632 // the filters in the groups and mark their selected states appropriately
633 $.each( groupMap, function ( group, data ) {
634 var paramValues, filterItem,
635 allItemsInGroup = data.filters;
636
637 if ( model.groups[ group ].getType() === 'send_unselected_if_any' ) {
638 for ( i = 0; i < allItemsInGroup.length; i++ ) {
639 filterItem = allItemsInGroup[ i ];
640
641 result[ filterItem.getName() ] = groupMap[ filterItem.getGroupName() ].hasSelected ?
642 // Flip the definition between the parameter
643 // state and the filter state
644 // This is what the 'toggleSelected' value of the filter is
645 !Number( params[ filterItem.getParamName() ] ) :
646 // Otherwise, there are no selected items in the
647 // group, which means the state is false
648 false;
649 }
650 } else if ( model.groups[ group ].getType() === 'string_options' ) {
651 paramValues = model.sanitizeStringOptionGroup(
652 group,
653 params[ group ].split(
654 model.groups[ group ].getSeparator()
655 )
656 );
657
658 for ( i = 0; i < allItemsInGroup.length; i++ ) {
659 filterItem = allItemsInGroup[ i ];
660
661 result[ filterItem.getName() ] = (
662 // If it is the word 'all'
663 paramValues.length === 1 && paramValues[ 0 ] === 'all' ||
664 // All values are written
665 paramValues.length === model.groups[ group ].getItemCount()
666 ) ?
667 // All true (either because all values are written or the term 'all' is written)
668 // is the same as all filters set to true
669 true :
670 // Otherwise, the filter is selected only if it appears in the parameter values
671 paramValues.indexOf( filterItem.getParamName() ) > -1;
672 }
673 }
674 } );
675
676 return result;
677 };
678
679 /**
680 * Get the item that matches the given name
681 *
682 * @param {string} name Filter name
683 * @return {mw.rcfilters.dm.FilterItem} Filter item
684 */
685 mw.rcfilters.dm.FiltersViewModel.prototype.getItemByName = function ( name ) {
686 return this.getItems().filter( function ( item ) {
687 return name === item.getName();
688 } )[ 0 ];
689 };
690
691 /**
692 * Set all filters to false or empty/all
693 * This is equivalent to display all.
694 */
695 mw.rcfilters.dm.FiltersViewModel.prototype.emptyAllFilters = function () {
696 this.getItems().forEach( function ( filterItem ) {
697 this.toggleFilterSelected( filterItem.getName(), false );
698 }.bind( this ) );
699 };
700
701 /**
702 * Toggle selected state of one item
703 *
704 * @param {string} name Name of the filter item
705 * @param {boolean} [isSelected] Filter selected state
706 */
707 mw.rcfilters.dm.FiltersViewModel.prototype.toggleFilterSelected = function ( name, isSelected ) {
708 var item = this.getItemByName( name );
709
710 if ( item ) {
711 item.toggleSelected( isSelected );
712 }
713 };
714
715 /**
716 * Toggle selected state of items by their names
717 *
718 * @param {Object} filterDef Filter definitions
719 */
720 mw.rcfilters.dm.FiltersViewModel.prototype.toggleFiltersSelected = function ( filterDef ) {
721 Object.keys( filterDef ).forEach( function ( name ) {
722 this.toggleFilterSelected( name, filterDef[ name ] );
723 }.bind( this ) );
724 };
725
726 /**
727 * Get a group model from its name
728 *
729 * @param {string} groupName Group name
730 * @return {mw.rcfilters.dm.FilterGroup} Group model
731 */
732 mw.rcfilters.dm.FiltersViewModel.prototype.getGroup = function ( groupName ) {
733 return this.groups[ groupName ];
734 };
735
736 /**
737 * Get all filters within a specified group by its name
738 *
739 * @param {string} groupName Group name
740 * @return {mw.rcfilters.dm.FilterItem[]} Filters belonging to this group
741 */
742 mw.rcfilters.dm.FiltersViewModel.prototype.getGroupFilters = function ( groupName ) {
743 return ( this.getGroup( groupName ) && this.getGroup( groupName ).getItems() ) || [];
744 };
745
746 /**
747 * Find items whose labels match the given string
748 *
749 * @param {string} query Search string
750 * @param {boolean} [returnFlat] Return a flat array. If false, the result
751 * is an object whose keys are the group names and values are an array of
752 * filters per group. If set to true, returns an array of filters regardless
753 * of their groups.
754 * @return {Object} An object of items to show
755 * arranged by their group names
756 */
757 mw.rcfilters.dm.FiltersViewModel.prototype.findMatches = function ( query, returnFlat ) {
758 var i,
759 groupTitle,
760 result = {},
761 flatResult = [],
762 items = this.getItems();
763
764 // Normalize so we can search strings regardless of case
765 query = query.toLowerCase();
766
767 // item label starting with the query string
768 for ( i = 0; i < items.length; i++ ) {
769 if ( items[ i ].getLabel().toLowerCase().indexOf( query ) === 0 ) {
770 result[ items[ i ].getGroupName() ] = result[ items[ i ].getGroupName() ] || [];
771 result[ items[ i ].getGroupName() ].push( items[ i ] );
772 flatResult.push( items[ i ] );
773 }
774 }
775
776 if ( $.isEmptyObject( result ) ) {
777 // item containing the query string in their label, description, or group title
778 for ( i = 0; i < items.length; i++ ) {
779 groupTitle = items[ i ].getGroupModel().getTitle();
780 if (
781 items[ i ].getLabel().toLowerCase().indexOf( query ) > -1 ||
782 items[ i ].getDescription().toLowerCase().indexOf( query ) > -1 ||
783 groupTitle.toLowerCase().indexOf( query ) > -1
784 ) {
785 result[ items[ i ].getGroupName() ] = result[ items[ i ].getGroupName() ] || [];
786 result[ items[ i ].getGroupName() ].push( items[ i ] );
787 flatResult.push( items[ i ] );
788 }
789 }
790 }
791
792 return returnFlat ? flatResult : result;
793 };
794
795 /**
796 * Get items that are highlighted
797 *
798 * @return {mw.rcfilters.dm.FilterItem[]} Highlighted items
799 */
800 mw.rcfilters.dm.FiltersViewModel.prototype.getHighlightedItems = function () {
801 return this.getItems().filter( function ( filterItem ) {
802 return filterItem.isHighlightSupported() &&
803 filterItem.getHighlightColor();
804 } );
805 };
806
807 /**
808 * Get items that allow highlights even if they're not currently highlighted
809 *
810 * @return {mw.rcfilters.dm.FilterItem[]} Items supporting highlights
811 */
812 mw.rcfilters.dm.FiltersViewModel.prototype.getItemsSupportingHighlights = function () {
813 return this.getItems().filter( function ( filterItem ) {
814 return filterItem.isHighlightSupported();
815 } );
816 };
817
818 /**
819 * Toggle the highlight feature on and off.
820 * Propagate the change to filter items.
821 *
822 * @param {boolean} enable Highlight should be enabled
823 * @fires highlightChange
824 */
825 mw.rcfilters.dm.FiltersViewModel.prototype.toggleHighlight = function ( enable ) {
826 enable = enable === undefined ? !this.highlightEnabled : enable;
827
828 if ( this.highlightEnabled !== enable ) {
829 this.highlightEnabled = enable;
830
831 this.getItems().forEach( function ( filterItem ) {
832 filterItem.toggleHighlight( this.highlightEnabled );
833 }.bind( this ) );
834
835 this.emit( 'highlightChange', this.highlightEnabled );
836 }
837 };
838
839 /**
840 * Check if the highlight feature is enabled
841 * @return {boolean}
842 */
843 mw.rcfilters.dm.FiltersViewModel.prototype.isHighlightEnabled = function () {
844 return !!this.highlightEnabled;
845 };
846
847 /**
848 * Set highlight color for a specific filter item
849 *
850 * @param {string} filterName Name of the filter item
851 * @param {string} color Selected color
852 */
853 mw.rcfilters.dm.FiltersViewModel.prototype.setHighlightColor = function ( filterName, color ) {
854 this.getItemByName( filterName ).setHighlightColor( color );
855 };
856
857 /**
858 * Clear highlight for a specific filter item
859 *
860 * @param {string} filterName Name of the filter item
861 */
862 mw.rcfilters.dm.FiltersViewModel.prototype.clearHighlightColor = function ( filterName ) {
863 this.getItemByName( filterName ).clearHighlightColor();
864 };
865
866 /**
867 * Clear highlight for all filter items
868 */
869 mw.rcfilters.dm.FiltersViewModel.prototype.clearAllHighlightColors = function () {
870 this.getItems().forEach( function ( filterItem ) {
871 filterItem.clearHighlightColor();
872 } );
873 };
874 }( mediaWiki, jQuery ) );