|
1 |
| -var React = require('react'); |
2 |
| - |
3 | 1 | var utils = require('../lib/utils.js');
|
4 |
| -var headerFooter = require('../decorators/headerFooter'); |
5 |
| -var SearchBox = headerFooter(require('../components/SearchBox')); |
| 2 | +var forEach = require('lodash/collection/forEach'); |
6 | 3 |
|
7 | 4 | /**
|
8 | 5 | * Instantiate a searchbox
|
9 | 6 | * @param {String|DOMElement} options.container CSS Selector or DOMElement to insert the widget
|
10 | 7 | * @param {String} [options.placeholder='Search here'] Input's placeholder
|
11 |
| - * @param {Object} [options.cssClasses] CSS classes to add to the wrapping elements: root, input |
12 |
| - * @param {String|String[]} [options.cssClasses.root=null] |
13 |
| - * @param {String|String[]} [options.cssClasses.input=null] |
14 |
| - * @param {Object} [options.templates] Templates to use for the widget |
15 |
| - * @param {String|Function} [options.templates.header=''] Header template |
16 |
| - * @param {String|Function} [options.templates.footer=''] Footer template |
| 8 | + * @param {Object} [options.cssClass] CSS classes to add to the input |
17 | 9 | * @param {boolean} [poweredBy=false] Show a powered by Algolia link below the input
|
18 | 10 | * @return {Object}
|
19 | 11 | */
|
20 |
| -function searchbox({ |
21 |
| - container = null, |
22 |
| - placeholder = 'Search here', |
23 |
| - cssClasses = { |
24 |
| - input: null, |
25 |
| - root: null |
26 |
| - }, |
27 |
| - templates = { |
28 |
| - header: '', |
29 |
| - footer: '' |
30 |
| - }, |
31 |
| - poweredBy = false |
32 |
| - }) { |
33 |
| - var containerNode = utils.getContainerNode(container); |
34 |
| - var isFocused = false; |
| 12 | +function searchbox(params) { |
| 13 | + // Hook on an existing input, or add one if none targeted |
| 14 | + var input = utils.getContainerNode(params.container); |
| 15 | + if (input.tagName !== 'INPUT') { |
| 16 | + input = input.appendChild(document.createElement('input')); |
| 17 | + } |
35 | 18 |
|
36 | 19 | return {
|
37 |
| - _render(state, helper) { |
38 |
| - React.render( |
39 |
| - <SearchBox |
40 |
| - onFocus={()=> { isFocused = true; }} |
41 |
| - onBlur={()=> { isFocused = false; }} |
42 |
| - setQuery={helper.setQuery.bind(helper)} |
43 |
| - search={helper.search.bind(helper)} |
44 |
| - placeholder={placeholder} |
45 |
| - templates={templates} |
46 |
| - cssClasses={cssClasses} |
47 |
| - value={state.query} |
48 |
| - poweredBy={poweredBy} |
49 |
| - />, |
50 |
| - containerNode |
51 |
| - ); |
52 |
| - }, |
| 20 | + init: function(initialState, helper) { |
| 21 | + var defaultAttributes = { |
| 22 | + autocapitalize: 'off', |
| 23 | + autocomplete: 'off', |
| 24 | + autocorrect: 'off', |
| 25 | + autofocus: 'autofocus', |
| 26 | + className: params.cssClass, |
| 27 | + placeholder: params.placeholder, |
| 28 | + role: 'textbox', |
| 29 | + spellcheck: 'false', |
| 30 | + type: 'text', |
| 31 | + value: initialState.query |
| 32 | + }; |
| 33 | + |
| 34 | + // Overrides attributes if not already set |
| 35 | + forEach(defaultAttributes, (value, key) => { |
| 36 | + if (input.getAttribute(key)) { |
| 37 | + return; |
| 38 | + } |
| 39 | + input.setAttribute(key, value); |
| 40 | + }); |
| 41 | + |
| 42 | + // Always add our own classes |
| 43 | + input.classList.add('as-search-box__input'); |
53 | 44 |
|
54 |
| - init(initialState, helper) { |
55 |
| - this._render(initialState, helper); |
56 |
| - }, |
| 45 | + input.addEventListener('keyup', () => { |
| 46 | + helper.setQuery(input.value).search(); |
| 47 | + }); |
57 | 48 |
|
58 |
| - render({state, helper}) { |
59 |
| - if (!isFocused) { |
60 |
| - this._render(state, helper); |
| 49 | + // Optional "powered by Algolia" widget |
| 50 | + if (params.poweredBy) { |
| 51 | + var React = require('react'); |
| 52 | + var PoweredBy = require('../components/PoweredBy'); |
| 53 | + var poweredByContainer = document.createElement('div'); |
| 54 | + input.parentNode.appendChild(poweredByContainer); |
| 55 | + React.render(<PoweredBy display />, poweredByContainer); |
61 | 56 | }
|
62 | 57 | }
|
63 | 58 | };
|
|
0 commit comments