Skip to content

Commit caff168

Browse files
author
guillaumervls
committed
v 0.1.0 - loader prop takes a React component
1 parent 2db2fa5 commit caff168

6 files changed

+21
-27
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/** -diff merge=binary

README.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ React Infinite Scroll
33

44
*React infinite scroll component*
55

6-
Demo: http://jsfiddle.net/mb9vJ/
6+
Demo: http://jsfiddle.net/mb9vJ/1
77

88
# Getting started
99

@@ -50,22 +50,26 @@ In this case, it will depend on `react`.
5050
which means that for the first loading, `loadMore` will be called with `1`
5151

5252
- `loadMore(pageToLoad)` : This function is called when the user scrolls down
53-
and we need to load stuff
53+
and we need to load stuff
5454

5555
- `hasMore` : Boolean stating if we should keep listening to scroll event and
56-
trying to load more stuff
56+
trying to load more stuff
5757

58-
- `loader` : Loader element to be displayed while loading stuff, can be provided as :
59-
60-
* an component consrtuctor : i.e. `React.DOM.div` (or a component of yours)
61-
* an object, for more customization :
62-
`{component:React.DOM.div, props:{className:'loader'}, children:'Loading ...'}`
58+
- `loader` : Loader element to be displayed while loading stuff
6359

6460
- `threshold` : The distance between the bottom of the page and the bottom of the
6561
window's viewport that triggers the loading of new stuff -
6662
*Defaults to `250`*
6763

6864

65+
## Changelog
66+
67+
### v0.1.0
68+
69+
`loader` now takes a React component
70+
(no more component constructor or object `{component:... , props:... , ...}`).
71+
72+
6973
## (Re)build
7074

7175
```

dist/react-infinite-scroll.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/example.html

+3-7
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,14 @@
3636
render: function () {
3737
console.log('render');
3838
return React.addons.InfiniteScroll({
39-
loader: {
40-
component: React.DOM.div,
41-
props: {
39+
loader: React.DOM.div({
4240
className: 'loader'
43-
},
44-
children: 'Loading ...'
45-
},
41+
}, 'Loading...'),
4642
loadMore: this.loadMore,
4743
hasMore: this.state.hasMore
4844
}, React.DOM.div.apply(null, [null].concat(this.state.items)));
4945
}
5046
});
5147
React.renderComponent(Wrapper(), document.body);
5248
</script>
53-
</html>
49+
</html >

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-infinite-scroll",
3-
"version": "0.0.6",
3+
"version": "0.1.0",
44
"description": "",
55
"main": "src/react-infinite-scroll.js",
66
"scripts": {

src/react-infinite-scroll.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = function (React) {
1616
pageStart: 0,
1717
hasMore: false,
1818
loadMore: function () {},
19-
loader: React.DOM.span,
2019
threshold: 250
2120
};
2221
},
@@ -30,14 +29,8 @@ module.exports = function (React) {
3029
this.attachScrollListener();
3130
},
3231
render: function () {
33-
var loaderProp = this.props.loader,
34-
loaderElmt;
35-
if (typeof loaderProp === 'function') {
36-
loaderElmt = loaderProp();
37-
} else if (typeof loaderProp === 'object') {
38-
loaderElmt = loaderProp.component(loaderProp.props, loaderProp.children);
39-
}
40-
return React.DOM.div(null, this.props.children, this.props.hasMore && loaderElmt);
32+
var props = this.props;
33+
return React.DOM.div(null, props.children, props.hasMore && props.loader);
4134
},
4235
scrollListener: function () {
4336
var el = this.getDOMNode();

0 commit comments

Comments
 (0)