File tree 9 files changed +105
-28
lines changed
9 files changed +105
-28
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ search.addWidget(
199
199
container: ' #search-box' ,
200
200
placeholder: ' Search for products' ,
201
201
// cssClass
202
+ // poweredBy: boolean
202
203
})
203
204
);
204
205
```
Original file line number Diff line number Diff line change
1
+ .as-powered-by {
2
+ text-align : right;
3
+ line-height : 18px ;
4
+ font-size : 12px ;
5
+ }
6
+
7
+ .as-powered-by--image {
8
+ height : 16px ;
9
+ margin-bottom : 2px ;
10
+ }
Original file line number Diff line number Diff line change
1
+ var React = require ( 'react' ) ;
2
+ var bem = require ( '../BemHelper' ) ( 'as-powered-by' ) ;
3
+ var logo = require ( 'url?limit=10000!./algolia_logo.png' ) ;
4
+
5
+ require ( 'style?prepend!raw!./index.css' ) ;
6
+
7
+ class PoweredBy extends React . Component {
8
+ render ( ) {
9
+ var poweredByDisplay = ( this . props . display === true ) ? 'block' : 'none' ;
10
+
11
+ return (
12
+ < div
13
+ className = { bem ( ) }
14
+ style = { { display : poweredByDisplay } }
15
+ >
16
+ Powered by
17
+ < a href = "https://www.algolia.com/" >
18
+ < img
19
+ className = { bem ( 'image' ) }
20
+ src = { logo }
21
+ />
22
+ </ a >
23
+ </ div >
24
+ ) ;
25
+ }
26
+ }
27
+
28
+ PoweredBy . propTypes = {
29
+ display : React . PropTypes . bool
30
+ } ;
31
+
32
+ module . exports = PoweredBy ;
Original file line number Diff line number Diff line change 1
1
var React = require ( 'react' ) ;
2
+ var PoweredBy = require ( './PoweredBy' ) ;
2
3
var bem = require ( './BemHelper' ) ( 'as-search-box' ) ;
3
4
var cx = require ( 'classnames' ) ;
4
5
@@ -12,15 +13,18 @@ class SearchBox {
12
13
var classNames = cx ( bem ( 'input' ) , this . props . inputClass ) ;
13
14
14
15
return (
15
- < input type = "text"
16
- placeholder = { this . props . placeholder }
17
- name = "algolia-query"
18
- className = { classNames }
19
- autoComplete = "off"
20
- autoFocus = "autofocus"
21
- onChange = { this . handleChange . bind ( this ) }
22
- role = "textbox"
23
- />
16
+ < div >
17
+ < input type = "text"
18
+ placeholder = { this . props . placeholder }
19
+ name = "algolia-query"
20
+ className = { classNames }
21
+ autoComplete = "off"
22
+ autoFocus = "autofocus"
23
+ onChange = { this . handleChange . bind ( this ) }
24
+ role = "textbox"
25
+ />
26
+ < PoweredBy display = { this . props . poweredBy } />
27
+ </ div >
24
28
) ;
25
29
}
26
30
}
@@ -31,6 +35,7 @@ SearchBox.propTypes = {
31
35
React . PropTypes . string ,
32
36
React . PropTypes . array
33
37
] ) ,
38
+ poweredBy : React . PropTypes . bool ,
34
39
setQuery : React . PropTypes . func ,
35
40
search : React . PropTypes . func
36
41
} ;
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ search.addWidget(
11
11
instantsearch . widgets . searchBox ( {
12
12
container : '#search-box' ,
13
13
placeholder : 'Search for products' ,
14
- cssClass : 'form-control'
14
+ cssClass : 'form-control' ,
15
+ poweredBy : true
15
16
} )
16
17
) ;
17
18
Original file line number Diff line number Diff line change 42
42
"tap-spec" : " 4.1.0" ,
43
43
"tape" : " 4.2.0" ,
44
44
"uglifyjs" : " 2.4.10" ,
45
+ "url-loader" : " ^0.5.6" ,
45
46
"webpack" : " 1.12.2" ,
46
47
"webpack-dev-server" : " 1.11.0"
47
48
},
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ function searchbox(params) {
15
15
search = { helper . search . bind ( helper ) }
16
16
placeholder = { params . placeholder }
17
17
inputClass = { params . cssClass }
18
+ poweredBy = { params . poweredBy }
18
19
/> ,
19
20
container
20
21
) ;
You can’t perform that action at this time.
0 commit comments