Skip to content

Commit 92cebeb

Browse files
committed
feat(bem): Add BEM-styling to the Stats widget
Updated the Stats widget to use ais-stats BEM classes. Exact same rendering as before, but open the way to theme creation. BREAKING CHANGE: We now use a `span.ais-stats--time` instead of a `small` tag in the stats widget.
1 parent 6b42e34 commit 92cebeb

File tree

5 files changed

+36
-34
lines changed

5 files changed

+36
-34
lines changed

README.md

+8-18
Original file line numberDiff line numberDiff line change
@@ -259,15 +259,16 @@ search.addWidget(
259259
/**
260260
* Display various stats about the current search state
261261
* @param {String|DOMElement} options.container CSS Selector or DOMElement to insert the widget
262-
* @param {Object} [options.cssClasses] CSS classes to add to the wrapping elements: root
263-
* @param {String|String[]} [options.cssClasses.root] CSS class to add to the root element
262+
* @param {Object} [options.cssClasses] CSS classes to add to the default template
263+
* @param {String} [options.cssClasses.root] CSS class to add to the root element
264+
* @param {String} [options.cssClasses.time] CSS class to add to the element wrapping the time processingTimeMs
264265
* @param {Object} [options.templates] Templates to use for the widget
265266
* @param {String|Function} [options.templates.header=''] Header template
266-
* @param {String|Function} [options.templates.body='<div>
267+
* @param {String|Function} [options.templates.body='<div class="{{cssClasses.root}}">
267268
{{#hasNoResults}}No results{{/hasNoResults}}
268269
{{#hasOneResult}}1 result{{/hasOneResult}}
269270
{{#hasManyResults}}{{#helpers.formatNumber}}{{nbHits}}{{/helpers.formatNumber}} results{{/hasManyResults}}
270-
<small>found in {{processingTimeMS}}ms</small>
271+
<span class="{{cssClasses.time}}">found in {{processingTimeMS}}ms</span>
271272
</div>'] Body template
272273
* @param {String|Function} [options.templates.footer=''] Footer template
273274
* @param {Function} [options.transformData] Function to change the object passed to the `body` template
@@ -276,13 +277,10 @@ search.addWidget(
276277
*/
277278
```
278279

279-
280280
#### Usage
281281

282282
![Example of the stats widget][stats]
283283

284-
#### API
285-
286284
#### Usage
287285

288286
```html
@@ -293,17 +291,9 @@ search.addWidget(
293291
search.addWidget(
294292
instantsearch.widgets.stats({
295293
container: '#stats',
296-
template: // mustache string or function(stats) with the following keys
297-
// hasManyResults: boolean
298-
// hasNoResults: boolean
299-
// hasOneResult: boolean
300-
// hitsPerPage: number
301-
// nbHits: number
302-
// nbPages: number
303-
// page: number
304-
// processingTimeMS: number
305-
// query: string
306-
transformData: // function to modify the data passed to the template
294+
cssClasses: {
295+
time: 'label label-info'
296+
}
307297
})
308298
);
309299
```

components/Stats.js components/Stats/Stats.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
var React = require('react');
22

3-
var Template = require('./Template');
3+
var Template = require('../Template');
4+
var bem = require('../../lib/utils').bemHelper('ais-stats');
5+
var cx = require('classnames');
6+
7+
require('style?prepend!raw!./stats.css');
48

59
class Stats extends React.Component {
610
render() {
@@ -13,7 +17,11 @@ class Stats extends React.Component {
1317
nbPages: this.props.nbPages,
1418
page: this.props.page,
1519
processingTimeMS: this.props.processingTimeMS,
16-
query: this.props.query
20+
query: this.props.query,
21+
cssClasses: {
22+
root: cx(bem(null), this.props.cssClasses.root),
23+
time: cx(bem('time'), this.props.cssClasses.time)
24+
}
1725
};
1826

1927
return (

components/Stats/stats.css

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.ais-stats {
2+
}
3+
.ais-stats--time {
4+
font-size: small;
5+
}

widgets/stats/index.js

+11-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var utils = require('../../lib/utils.js');
44
var autoHide = require('../../decorators/autoHide');
55
var headerFooter = require('../../decorators/headerFooter');
66
var bindProps = require('../../decorators/bindProps');
7-
var Stats = autoHide(headerFooter(require('../../components/Stats')));
7+
var Stats = autoHide(headerFooter(require('../../components/Stats/Stats.js')));
88

99
var Template = require('../../components/Template');
1010

@@ -17,33 +17,32 @@ var defaultTemplates = {
1717
/**
1818
* Display various stats about the current search state
1919
* @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
2223
* @param {Object} [options.templates] Templates to use for the widget
2324
* @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}}">
2526
{{#hasNoResults}}No results{{/hasNoResults}}
2627
{{#hasOneResult}}1 result{{/hasOneResult}}
2728
{{#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>
2930
</div>'] Body template
3031
* @param {String|Function} [options.templates.footer=''] Footer template
3132
* @param {Function} [options.transformData] Function to change the object passed to the `body` template
3233
* @param {boolean} [hideWhenNoResults=true] Hide the container when there's no results
3334
* @return {Object}
3435
*/
3536
function stats({
36-
container = null,
37-
templates = defaultTemplates,
38-
transformData,
37+
container,
38+
cssClasses = {},
3939
hideWhenNoResults = true,
40-
cssClasses = {
41-
root: null
42-
}
40+
templates = defaultTemplates,
41+
transformData
4342
}) {
4443
var containerNode = utils.getContainerNode(container);
4544

46-
if (container === null) {
45+
if (!containerNode) {
4746
throw new Error('Usage: stats({container[, template, transformData]})');
4847
}
4948

widgets/stats/template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<div>
1+
<div class="{{cssClasses.root}}">
22
{{#hasNoResults}}No results{{/hasNoResults}}
33
{{#hasOneResult}}1 result{{/hasOneResult}}
44
{{#hasManyResults}}{{#helpers.formatNumber}}{{nbHits}}{{/helpers.formatNumber}} results{{/hasManyResults}}
5-
<small>found in {{processingTimeMS}}ms</small>
5+
<span class="{{cssClasses.time}}">found in {{processingTimeMS}}ms</span>
66
</div>

0 commit comments

Comments
 (0)