@@ -21,7 +21,7 @@ var defaultTemplates = {
21
21
* Instantiate a list of refinements based on a facet
22
22
* @param {String|DOMElement } options.container CSS Selector or DOMElement to insert the widget
23
23
* @param {String } options.facetName Name of the attribute for faceting
24
- * @param {String } [options.operator] How to apply refinements. Possible values: `or`, `and`
24
+ * @param {String } [options.operator='or' ] How to apply refinements. Possible values: `or`, `and`
25
25
* @param {String[] } [options.sortBy=['count:desc']] How to sort refinements. Possible values: `count|isRefined|name:asc|desc`
26
26
* @param {String } [options.limit=1000] How much facet values to get
27
27
* @param {Object } [options.cssClasses] CSS classes to add to the wrapping elements: root, list, item
@@ -35,31 +35,24 @@ var defaultTemplates = {
35
35
</label>`] Item template, provided with `name`, `count`, `isRefined`
36
36
* @param {String|Function } [options.templates.footer=''] Footer template
37
37
* @param {Function } [options.transformData] Function to change the object passed to the item template
38
- * @param {String|Function } [options.singleRefine=false] Are multiple refinements allowed or only one at the same time. You can use this
39
- * to build radio based refinement lists for example
40
38
* @param {boolean } [hideWhenNoResults=true] Hide the container when there's no results
41
39
* @return {Object }
42
40
*/
43
41
function refinementList ( {
44
42
container,
45
43
facetName,
46
- operator = null ,
44
+ operator = 'or' ,
47
45
sortBy = [ 'count:desc' ] ,
48
46
limit = 1000 ,
49
47
cssClasses = { } ,
50
48
hideWhenNoResults = true ,
51
49
templates = defaultTemplates ,
52
- transformData,
53
- singleRefine = false
50
+ transformData
54
51
} ) {
55
52
var containerNode = utils . getContainerNode ( container ) ;
56
- var usage = 'Usage: refinementList({container, facetName, [operator, sortBy, limit, cssClasses.{root,list,item}, templates.{header,item,footer}, transformData, singleRefine, hideIfNoResults]})' ;
53
+ var usage = 'Usage: refinementList({container, facetName, [operator, sortBy, limit, cssClasses.{root,list,item}, templates.{header,item,footer}, transformData, hideIfNoResults]})' ;
57
54
58
- if ( ! container || ! facetName ||
59
- // operator is mandatory when multiple refines allowed
60
- ( operator === null && singleRefine === false ) ||
61
- // operator is not allowed when single refine enabled
62
- ( operator !== null && singleRefine === true ) ) {
55
+ if ( ! container || ! facetName ) {
63
56
throw new Error ( usage ) ;
64
57
}
65
58
@@ -101,24 +94,15 @@ function refinementList({
101
94
facetValues = { facetValues }
102
95
hasResults = { facetValues . length > 0 }
103
96
hideWhenNoResults = { hideWhenNoResults }
104
- toggleRefinement = { toggleRefinement . bind ( null , helper , singleRefine , facetName ) }
97
+ toggleRefinement = { toggleRefinement . bind ( null , helper , facetName ) }
105
98
/> ,
106
99
containerNode
107
100
) ;
108
101
}
109
102
} ;
110
103
}
111
104
112
- function toggleRefinement ( helper , singleRefine , facetName , facetValue ) {
113
- if ( singleRefine ) {
114
- var previousRefinement = helper . getRefinements ( facetName ) ;
115
- helper . clearRefinements ( facetName ) ;
116
- if ( previousRefinement && previousRefinement [ 0 ] && previousRefinement [ 0 ] . value === facetValue ) {
117
- helper . search ( ) ;
118
- return ;
119
- }
120
- }
121
-
105
+ function toggleRefinement ( helper , facetName , facetValue ) {
122
106
helper
123
107
. toggleRefinement ( facetName , facetValue )
124
108
. search ( ) ;
0 commit comments