1
1
var utils = require ( '../lib/utils.js' ) ;
2
2
var forEach = require ( 'lodash/collection/forEach' ) ;
3
3
4
+ var VALID_AUTOFOCUS_VALUES = {
5
+ true : true ,
6
+ false : true ,
7
+ auto : true
8
+ } ;
9
+
4
10
/**
5
11
* Instantiate a searchbox
6
12
* @param {String|DOMElement } options.container CSS Selector or DOMElement to insert the widget
7
13
* @param {String } [options.placeholder='Search here'] Input's placeholder
8
14
* @param {Object } [options.cssClass] CSS classes to add to the input
9
15
* @param {boolean } [poweredBy=false] Show a powered by Algolia link below the input
16
+ * @param {boolean|string } [autofocus='auto'] autofocus on the input
10
17
* @return {Object }
11
18
*/
12
19
function searchbox ( params ) {
@@ -16,13 +23,16 @@ function searchbox(params) {
16
23
input = input . appendChild ( document . createElement ( 'input' ) ) ;
17
24
}
18
25
26
+ var autofocus = ( typeof params . autofocus === 'boolean' || VALID_AUTOFOCUS_VALUES [ params . autofocus ] ) ?
27
+ params . autofocus :
28
+ 'auto' ;
29
+
19
30
return {
20
31
init : function ( initialState , helper ) {
21
32
var defaultAttributes = {
22
33
autocapitalize : 'off' ,
23
34
autocomplete : 'off' ,
24
35
autocorrect : 'off' ,
25
- autofocus : 'autofocus' ,
26
36
className : params . cssClass ,
27
37
placeholder : params . placeholder ,
28
38
role : 'textbox' ,
@@ -60,6 +70,12 @@ function searchbox(params) {
60
70
input . value = state . query ;
61
71
}
62
72
} ) ;
73
+
74
+ if ( autofocus === 'true' ||
75
+ autofocus === true ||
76
+ autofocus === 'auto' && helper . state . query === '' ) {
77
+ input . focus ( ) ;
78
+ }
63
79
}
64
80
} ;
65
81
}
0 commit comments