Skip to content

Commit 16c132c

Browse files
committed
fix(rangeSlider): refinements cleanuo
Do not add the numeric refinements if the values are equal to min/max to cleanup the state+URL. Fix #147
1 parent 0352b22 commit 16c132c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

widgets/range-slider.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,14 @@ function rangeSlider({
6969
max
7070
};
7171
},
72-
_refine(helper, newValues) {
72+
_refine(helper, stats, newValues) {
7373
helper.clearRefinements(facetName);
74-
helper.addNumericRefinement(facetName, '>=', newValues[0]);
75-
helper.addNumericRefinement(facetName, '<=', newValues[1]);
74+
if (newValues[0] > stats.min) {
75+
helper.addNumericRefinement(facetName, '>=', newValues[0]);
76+
}
77+
if (newValues[1] < stats.max) {
78+
helper.addNumericRefinement(facetName, '<=', newValues[1]);
79+
}
7680
helper.search();
7781
},
7882
render({results, helper, templatesConfig}) {
@@ -101,7 +105,7 @@ function rangeSlider({
101105
Template={bindProps(Template, templateProps)}
102106
hideWhenNoResults={hideWhenNoResults}
103107
hasResults={stats.min !== null && stats.max !== null}
104-
onChange={this._refine.bind(this, helper)}
108+
onChange={this._refine.bind(this, helper, stats)}
105109
tooltips={tooltips}
106110
/>,
107111
containerNode

0 commit comments

Comments
 (0)