@@ -4,7 +4,7 @@ var utils = require('../../lib/utils.js');
4
4
var autoHide = require ( '../../decorators/autoHide' ) ;
5
5
var headerFooter = require ( '../../decorators/headerFooter' ) ;
6
6
var bindProps = require ( '../../decorators/bindProps' ) ;
7
- var Stats = autoHide ( headerFooter ( require ( '../../components/Stats' ) ) ) ;
7
+ var Stats = autoHide ( headerFooter ( require ( '../../components/Stats/Stats.js ' ) ) ) ;
8
8
9
9
var Template = require ( '../../components/Template' ) ;
10
10
@@ -17,33 +17,32 @@ var defaultTemplates = {
17
17
/**
18
18
* Display various stats about the current search state
19
19
* @param {String|DOMElement } options.container CSS Selector or DOMElement to insert the widget
20
- * @param {Object } [options.cssClasses] CSS classes to add to the wrapping elements: root
21
- * @param {String|String[] } [options.cssClasses.root] CSS class to add to the root element
20
+ * @param {Object } [options.cssClasses] CSS classes to add to the default template
21
+ * @param {String } [options.cssClasses.root] CSS class to add to the root element
22
+ * @param {String } [options.cssClasses.time] CSS class to add to the element wrapping the time processingTimeMs
22
23
* @param {Object } [options.templates] Templates to use for the widget
23
24
* @param {String|Function } [options.templates.header=''] Header template
24
- * @param {String|Function } [options.templates.body='<div>
25
+ * @param {String|Function } [options.templates.body='<div class="{{cssClasses.root}}" >
25
26
{{#hasNoResults}}No results{{/hasNoResults}}
26
27
{{#hasOneResult}}1 result{{/hasOneResult}}
27
28
{{#hasManyResults}}{{#helpers.formatNumber}}{{nbHits}}{{/helpers.formatNumber}} results{{/hasManyResults}}
28
- <small >found in {{processingTimeMS}}ms</small >
29
+ <span class="{{cssClasses.time}}" >found in {{processingTimeMS}}ms</span >
29
30
</div>'] Body template
30
31
* @param {String|Function } [options.templates.footer=''] Footer template
31
32
* @param {Function } [options.transformData] Function to change the object passed to the `body` template
32
33
* @param {boolean } [hideWhenNoResults=true] Hide the container when there's no results
33
34
* @return {Object }
34
35
*/
35
36
function stats ( {
36
- container = null ,
37
- templates = defaultTemplates ,
38
- transformData,
37
+ container,
38
+ cssClasses = { } ,
39
39
hideWhenNoResults = true ,
40
- cssClasses = {
41
- root : null
42
- }
40
+ templates = defaultTemplates ,
41
+ transformData
43
42
} ) {
44
43
var containerNode = utils . getContainerNode ( container ) ;
45
44
46
- if ( container === null ) {
45
+ if ( ! containerNode ) {
47
46
throw new Error ( 'Usage: stats({container[, template, transformData]})' ) ;
48
47
}
49
48
0 commit comments