Skip to content

Commit db73e38

Browse files
committed
fix(refinementList): Remove singleRefine attribute
Fixes #220
1 parent 836644f commit db73e38

File tree

2 files changed

+9
-28
lines changed

2 files changed

+9
-28
lines changed

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ search.addWidget(
550550
* Instantiate a list of refinements based on a facet
551551
* @param {String|DOMElement} options.container CSS Selector or DOMElement to insert the widget
552552
* @param {String} options.facetName Name of the attribute for faceting
553-
* @param {String} [options.operator] How to apply refinements. Possible values: `or`, `and`
553+
* @param {String} [options.operator='or'] How to apply refinements. Possible values: `or`, `and`
554554
* @param {String[]} [options.sortBy=['count:desc']] How to sort refinements. Possible values: `count|isRefined|name:asc|desc`
555555
* @param {String} [options.limit=1000] How much facet values to get
556556
* @param {Object} [options.cssClasses] CSS classes to add to the wrapping elements: root, list, item
@@ -564,8 +564,6 @@ search.addWidget(
564564
</label>`] Item template, provided with `name`, `count`, `isRefined`
565565
* @param {String|Function} [options.templates.footer=''] Footer template
566566
* @param {Function} [options.transformData] Function to change the object passed to the item template
567-
* @param {String|Function} [options.singleRefine=false] Are multiple refinements allowed or only one at the same time. You can use this
568-
* to build radio based refinement lists for example
569567
* @param {boolean} [hideWhenNoResults=true] Hide the container when there's no results
570568
* @return {Object}
571569
*/
@@ -581,8 +579,7 @@ search.addWidget(
581579
search.addWidget(
582580
instantsearch.widgets.refinementList({
583581
container: '#brands',
584-
facetName: 'brands',
585-
operator: 'or'
582+
facetName: 'brands'
586583
})
587584
);
588585
```

widgets/refinement-list.js

+7-23
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var defaultTemplates = {
2121
* Instantiate a list of refinements based on a facet
2222
* @param {String|DOMElement} options.container CSS Selector or DOMElement to insert the widget
2323
* @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`
2525
* @param {String[]} [options.sortBy=['count:desc']] How to sort refinements. Possible values: `count|isRefined|name:asc|desc`
2626
* @param {String} [options.limit=1000] How much facet values to get
2727
* @param {Object} [options.cssClasses] CSS classes to add to the wrapping elements: root, list, item
@@ -35,31 +35,24 @@ var defaultTemplates = {
3535
</label>`] Item template, provided with `name`, `count`, `isRefined`
3636
* @param {String|Function} [options.templates.footer=''] Footer template
3737
* @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
4038
* @param {boolean} [hideWhenNoResults=true] Hide the container when there's no results
4139
* @return {Object}
4240
*/
4341
function refinementList({
4442
container,
4543
facetName,
46-
operator = null,
44+
operator = 'or',
4745
sortBy = ['count:desc'],
4846
limit = 1000,
4947
cssClasses = {},
5048
hideWhenNoResults = true,
5149
templates = defaultTemplates,
52-
transformData,
53-
singleRefine = false
50+
transformData
5451
}) {
5552
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]})';
5754

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) {
6356
throw new Error(usage);
6457
}
6558

@@ -101,24 +94,15 @@ function refinementList({
10194
facetValues={facetValues}
10295
hasResults={facetValues.length > 0}
10396
hideWhenNoResults={hideWhenNoResults}
104-
toggleRefinement={toggleRefinement.bind(null, helper, singleRefine, facetName)}
97+
toggleRefinement={toggleRefinement.bind(null, helper, facetName)}
10598
/>,
10699
containerNode
107100
);
108101
}
109102
};
110103
}
111104

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) {
122106
helper
123107
.toggleRefinement(facetName, facetValue)
124108
.search();

0 commit comments

Comments
 (0)