-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtaggedInfiniteScroll.js
66 lines (57 loc) · 2.21 KB
/
taggedInfiniteScroll.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
59
60
61
62
63
64
65
66
/*! tagged-infinite-scroll - v1.1.1 - 2015-07-17 */
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['angular'], factory);
} else {
// Browser globals
root.taggedInfiniteScroll = factory(root.angular);
}
}(this, function (angular) {
"use strict";
// Allows a container to support infinite scroll
// Based on: http://binarymuse.github.io/ngInfiniteScroll/
var module = angular.module('tagged.directives.infiniteScroll', []);
module.directive('taggedInfiniteScroll', ['$window', '$timeout', function($window, $timeout) {
return {
scope: {
callback: '&taggedInfiniteScroll',
distance: '=taggedInfiniteScrollDistance',
disabled: '=taggedInfiniteScrollDisabled'
},
link: function(scope, elem, attrs) {
var win = angular.element($window);
var onScroll = function(oldValue, newValue) {
// Do nothing if infinite scroll has been disabled
if (scope.disabled) {
return;
}
var windowHeight = win[0].innerHeight;
var elementBottom = elem[0].offsetTop + elem[0].offsetHeight;
var windowBottom = windowHeight + (win[0].scrollY || win[0].pageYOffset);
var remaining = elementBottom - windowBottom;
var shouldGetMore = (remaining - parseInt(scope.distance || 0, 10) <= 0);
if (shouldGetMore) {
$timeout(scope.callback);
}
};
// Check immediately if we need more items upon reenabling.
scope.$watch('disabled', function(isDisabled){
if (false === isDisabled) onScroll();
});
win.bind('scroll', onScroll);
// Remove window scroll handler when this element is removed.
scope.$on('$destroy', function() {
win.unbind('scroll', onScroll);
});
// Check on next event loop to give the browser a moment to paint.
// Otherwise, the calculations may be off.
$timeout(onScroll);
}
};
}]);
// Just return a value to define the module export.
// This example returns an object, but the module
// can return a function as the exported value.
return module;
}));