Last active
April 14, 2019 09:17
-
-
Save littleiffel/7486759 to your computer and use it in GitHub Desktop.
My directive for infinite scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.directive('infiniteScroll', [ | |
'$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) { | |
return { | |
link: function(scope, elem, attrs) { | |
var checkWhenEnabled, handler, scrollDistance, scrollEnabled; | |
$window = angular.element($window); | |
elem.css('overflow-y', 'scroll'); | |
elem.css('overflow-x', 'hidden'); | |
elem.css('height', 'inherit'); | |
scrollDistance = 0; | |
if (attrs.infiniteScrollDistance != null) { | |
scope.$watch(attrs.infiniteScrollDistance, function(value) { | |
return scrollDistance = parseInt(value, 10); | |
}); | |
} | |
scrollEnabled = true; | |
checkWhenEnabled = false; | |
if (attrs.infiniteScrollDisabled != null) { | |
scope.$watch(attrs.infiniteScrollDisabled, function(value) { | |
scrollEnabled = !value; | |
if (scrollEnabled && checkWhenEnabled) { | |
checkWhenEnabled = false; | |
return handler(); | |
} | |
}); | |
} | |
$rootScope.$on('refreshStart', function(event, parameters){ | |
elem.animate({ scrollTop: "0" }); | |
}); | |
handler = function() { | |
var container, elementBottom, remaining, shouldScroll, containerBottom; | |
container = $(elem.children()[0]); | |
elementBottom = elem.offset().top + elem.height(); | |
containerBottom = container.offset().top + container.height(); | |
remaining = containerBottom - elementBottom ; | |
shouldScroll = remaining <= elem.height() * scrollDistance; | |
if (shouldScroll && scrollEnabled) { | |
if ($rootScope.$$phase) { | |
return scope.$eval(attrs.infiniteScroll); | |
} else { | |
return scope.$apply(attrs.infiniteScroll); | |
} | |
} else if (shouldScroll) { | |
return checkWhenEnabled = true; | |
} | |
}; | |
elem.on('scroll', handler); | |
scope.$on('$destroy', function() { | |
return $window.off('scroll', handler); | |
}); | |
return $timeout((function() { | |
if (attrs.infiniteScrollImmediateCheck) { | |
if (scope.$eval(attrs.infiniteScrollImmediateCheck)) { | |
return handler(); | |
} | |
} else { | |
return handler(); | |
} | |
}), 0); | |
} | |
}; | |
} | |
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="estates-listing" extend-height> | |
<div class="content" infinite-scroll="addMoreItems()" infinite-scroll-distance="2"> | |
<div class="content-wrapper"> | |
<div class="house" ng-animate="'animate'" ng-class="{inactive: (selectedEstate != null || selectedEstate != undefined) && estate.id!=selectedEstate.id , active:(selectedEstate != null || selectedEstate != undefined) && estate.id==selectedEstate.id}" ng-repeat="estate in estates | orderBy: orderProp : orderReverse | limitTo: config.itemsDisplayedInList track by estate.id" ng-mouseover="highlightMarker(estate)" ng-mouseleave="leaveMarker(estate)" ng-click="showDetailview(estate.id)" > | |
<div id="l-el{{estate.id}}"> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$rootScope.$on('refreshStart',xxxxxxxx) doesn't work,bro.I don't know what's this function means.........