@@ -5,6 +5,13 @@ import {isSpecialClick} from '../../lib/utils.js';
5
5
import Template from '../Template.js' ;
6
6
7
7
class RefinementList extends React . Component {
8
+ constructor ( props ) {
9
+ super ( props ) ;
10
+ this . state = {
11
+ isShowMoreOpen : false
12
+ } ;
13
+ }
14
+
8
15
refine ( value ) {
9
16
this . props . toggleRefinement ( value ) ;
10
17
}
@@ -45,7 +52,7 @@ class RefinementList extends React.Component {
45
52
< div
46
53
className = { cssClassItem }
47
54
key = { key }
48
- onClick = { this . handleClick . bind ( this , facetValue [ this . props . attributeNameKey ] ) }
55
+ onClick = { this . handleItemClick . bind ( this , facetValue [ this . props . attributeNameKey ] ) }
49
56
>
50
57
< Template data = { templateData } templateKey = "item" { ...this . props . templateProps } />
51
58
{ subList }
@@ -69,7 +76,7 @@ class RefinementList extends React.Component {
69
76
//
70
77
// Finally, we always stop propagation of the event to avoid multiple levels RefinementLists to fail: click
71
78
// on child would click on parent also
72
- handleClick ( value , e ) {
79
+ handleItemClick ( value , e ) {
73
80
if ( isSpecialClick ( e ) ) {
74
81
// do not alter the default browser behavior
75
82
// if one special key is down
@@ -101,16 +108,32 @@ class RefinementList extends React.Component {
101
108
this . refine ( value ) ;
102
109
}
103
110
111
+ handleClickShowMore ( ) {
112
+ const isShowMoreOpen = ! this . state . isShowMoreOpen ;
113
+ this . setState ( { isShowMoreOpen} ) ;
114
+ }
115
+
104
116
render ( ) {
105
117
// Adding `-lvl0` classes
106
118
let cssClassList = [ this . props . cssClasses . list ] ;
107
119
if ( this . props . cssClasses . depth ) {
108
120
cssClassList . push ( `${ this . props . cssClasses . depth } ${ this . props . depth } ` ) ;
109
121
}
110
122
123
+ const limit = this . state . isShowMoreOpen ? this . props . limitMax : this . props . limitMin ;
124
+ const showmoreBtn =
125
+ this . props . showMore ?
126
+ < Template
127
+ onClick = { ( ) => this . handleClickShowMore ( ) }
128
+ templateKey = { 'showmore-' + ( this . state . isShowMoreOpen ? 'active' : 'inactive' ) }
129
+ { ...this . props . templateProps }
130
+ /> :
131
+ undefined ;
132
+
111
133
return (
112
134
< div className = { cx ( cssClassList ) } >
113
- { this . props . facetValues . map ( this . _generateFacetItem , this ) }
135
+ { this . props . facetValues . map ( this . _generateFacetItem , this ) . slice ( 0 , limit ) }
136
+ { showmoreBtn }
114
137
</ div >
115
138
) ;
116
139
}
@@ -128,6 +151,9 @@ RefinementList.propTypes = {
128
151
} ) ,
129
152
depth : React . PropTypes . number ,
130
153
facetValues : React . PropTypes . array ,
154
+ limitMax : React . PropTypes . number ,
155
+ limitMin : React . PropTypes . number ,
156
+ showMore : React . PropTypes . bool ,
131
157
templateProps : React . PropTypes . object . isRequired ,
132
158
toggleRefinement : React . PropTypes . func . isRequired
133
159
} ;
0 commit comments