File tree 6 files changed +71
-0
lines changed
6 files changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ var React = require ( 'react' ) ;
2
+
3
+ class IndexSelector extends React . Component {
4
+ handleChange ( event ) {
5
+ this . props . setIndex ( event . target . value ) . search ( ) ;
6
+ }
7
+
8
+ render ( ) {
9
+ var currentIndex = this . props . currentIndex ;
10
+ var indices = this . props . indices ;
11
+
12
+ return (
13
+ < select onChange = { this . handleChange . bind ( this ) } value = { currentIndex } >
14
+ { indices . map ( function ( index ) {
15
+ return < option key = { index . name } value = { index . name } > { index . label } </ option > ;
16
+ } ) }
17
+ </ select >
18
+ ) ;
19
+ }
20
+ }
21
+
22
+ IndexSelector . propTypes = {
23
+ currentIndex : React . PropTypes . string ,
24
+ indices : React . PropTypes . array ,
25
+ setIndex : React . PropTypes . func
26
+ } ;
27
+
28
+ module . exports = IndexSelector ;
Original file line number Diff line number Diff line change @@ -22,6 +22,17 @@ search.addWidget(
22
22
} )
23
23
) ;
24
24
25
+ search . addWidget (
26
+ instantsearch . widgets . indexSelector ( {
27
+ container : '#index-selector' ,
28
+ indices : [
29
+ { 'name' : 'instant_search' , 'label' : 'Most relevant' } ,
30
+ { 'name' : 'instant_search_price_asc' , 'label' : 'Lowest price' } ,
31
+ { 'name' : 'instant_search_price_desc' , 'label' : 'Highest price' }
32
+ ]
33
+ } )
34
+ ) ;
35
+
25
36
search . addWidget (
26
37
instantsearch . widgets . hits ( {
27
38
container : '#hits' ,
Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ <h1>Instant search demo <small>using instantsearch.js</small></h1>
40
40
</ div >
41
41
< div class ="col-md-9 ">
42
42
< div id ="stats "> </ div >
43
+ < div >
44
+ Sort by: < span id ="index-selector "> </ span >
45
+ </ div >
43
46
< div id ="hits "> </ div >
44
47
< div id ="pagination " class ="text-center "> </ div >
45
48
</ div >
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ module.exports = {
2
2
InstantSearch : require ( './lib/InstantSearch' ) ,
3
3
widgets : {
4
4
hits : require ( './widgets/hits' ) ,
5
+ indexSelector : require ( './widgets/index-selector' ) ,
5
6
menu : require ( './widgets/menu' ) ,
6
7
multipleChoiceList : require ( './widgets/multiple-choice-list' ) ,
7
8
pagination : require ( './widgets/pagination' ) ,
Original file line number Diff line number Diff line change
1
+ var React = require ( 'react' ) ;
2
+
3
+ var utils = require ( '../../lib/widgetUtils.js' ) ;
4
+
5
+ function indexSelector ( { container = null , indices = null } ) {
6
+ var IndexSelector = require ( '../../components/IndexSelector' ) ;
7
+ var containerNode = utils . getContainerNode ( container ) ;
8
+
9
+ var usage = 'Usage: indexSelector({container, indices})' ;
10
+ if ( container === null || indices === null ) {
11
+ throw new Error ( usage ) ;
12
+ }
13
+
14
+ return {
15
+ render : function ( results , state , helper ) {
16
+ React . render (
17
+ < IndexSelector
18
+ currentIndex = { helper . getIndex ( ) }
19
+ indices = { indices }
20
+ setIndex = { helper . setIndex . bind ( helper ) }
21
+ /> ,
22
+ containerNode
23
+ ) ;
24
+ }
25
+ } ;
26
+ }
27
+
28
+ module . exports = indexSelector ;
You can’t perform that action at this time.
0 commit comments