-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinfinite-scroll.js
58 lines (48 loc) · 1.52 KB
/
infinite-scroll.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';
var ReactDOM = require('react-dom');
var defaultInitialPage = 1;
var defaultOffset = 250;
var topOfElement = function(element) {
if (!element) {
return 0;
}
return element.offsetTop + topOfElement(element.offsetParent);
};
/**
* @extends ReactCompositeComponentInterface
*
* @mixin InfiniteScrollMixin
*/
var InfiniteScrollMixin = {
componentWillMount: function() {
this.nextPage = this.props.initialPage || defaultInitialPage;
},
componentWillUnmount: function() {
this.detachScrollListener();
},
componentDidMount: function() {
this.attachScrollListener();
},
componentDidUpdate: function() {
this.attachScrollListener();
},
scrollListener: function () {
var el = ReactDOM.findDOMNode(this);
var offset = this.props.offset || defaultOffset;
var scrollTop = (window.pageYOffset !== undefined) ? window.pageYOffset : (document.documentElement || document.body.parentNode || document.body).scrollTop;
if (topOfElement(el) + el.offsetHeight - scrollTop - window.innerHeight < offset) {
this.detachScrollListener();
this.fetchNextPage(this.nextPage++);
}
},
attachScrollListener: function () {
window.addEventListener('scroll', this.scrollListener);
window.addEventListener('resize', this.scrollListener);
this.scrollListener();
},
detachScrollListener: function () {
window.removeEventListener('scroll', this.scrollListener);
window.removeEventListener('resize', this.scrollListener);
}
};
module.exports = InfiniteScrollMixin;