@@ -4,6 +4,8 @@ let ReactDOM = require('react-dom');
4
4
let utils = require ( '../../lib/utils.js' ) ;
5
5
let bem = utils . bemHelper ( 'ais-refinement-list' ) ;
6
6
let cx = require ( 'classnames' ) ;
7
+ let find = require ( 'lodash/collection/find' ) ;
8
+ let includes = require ( 'lodash/collection/includes' ) ;
7
9
8
10
let autoHideContainerHOC = require ( '../../decorators/autoHideContainer' ) ;
9
11
let headerFooterHOC = require ( '../../decorators/headerFooter' ) ;
@@ -131,9 +133,7 @@ function isRefined(state, attributeName, option) {
131
133
}
132
134
133
135
function refine ( state , attributeName , options , facetValue ) {
134
- let refinedOption = options . find ( function ( option ) {
135
- return option . name === facetValue ;
136
- } ) ;
136
+ let refinedOption = find ( options , { name : facetValue } ) ;
137
137
138
138
let currentRefinements = state . getNumericRefinements ( attributeName ) ;
139
139
@@ -181,10 +181,9 @@ function refine(state, attributeName, options, facetValue) {
181
181
182
182
function hasNumericRefinement ( currentRefinements , operator , value ) {
183
183
let hasOperatorRefinements = currentRefinements [ operator ] !== undefined ;
184
+ let includesValue = includes ( currentRefinements [ operator ] , value ) ;
184
185
185
- return hasOperatorRefinements && currentRefinements [ operator ] . find ( function ( refinement ) {
186
- return refinement === value ;
187
- } ) !== undefined ;
186
+ return hasOperatorRefinements && includesValue ;
188
187
}
189
188
190
189
module . exports = numericRefinementList ;
0 commit comments