9665d2d457
hide flagged status of users on webfront unless logged in (will still show the level if they report someone because cba to update the view component w/out auth status) add terminal to the radar maps
93 lines
2.6 KiB
JavaScript
93 lines
2.6 KiB
JavaScript
let loaderOffset = 10;
|
|
let loadCount = 10;
|
|
let loaderReachedEnd = false;
|
|
let startAt = null;
|
|
let isLoaderLoading = false;
|
|
let loadUri = '';
|
|
let loaderResponseId = '';
|
|
|
|
function initLoader(location, loaderId, count = 10, start = count) {
|
|
loadUri = location;
|
|
loaderResponseId = loaderId;
|
|
loadCount = count;
|
|
loaderOffset = start;
|
|
setupListeners();
|
|
}
|
|
|
|
function loadMoreItems() {
|
|
if (isLoaderLoading || loaderReachedEnd) {
|
|
return false;
|
|
}
|
|
|
|
showLoader();
|
|
isLoaderLoading = true;
|
|
$.get(loadUri, { offset: loaderOffset, count: loadCount, startAt: startAt })
|
|
.done(function (response) {
|
|
$(loaderResponseId).append(response);
|
|
if (response.trim().length === 0) {
|
|
staleLoader();
|
|
loaderReachedEnd = true;
|
|
$('.loader-load-more').addClass('disabled');
|
|
}
|
|
$(document).trigger("loaderFinished", response);
|
|
startAt = $(response).filter('.loader-data-time').last().data('time');
|
|
hideLoader();
|
|
isLoaderLoading = false;
|
|
})
|
|
.fail(function (jqxhr, statis, error) {
|
|
errorLoader();
|
|
isLoaderLoading = false;
|
|
});
|
|
loaderOffset += loadCount;
|
|
}
|
|
|
|
function _ScrollHandler(e) {
|
|
//throttle event:
|
|
hasScrollBar = true;
|
|
clearTimeout(_throttleTimer);
|
|
_throttleTimer = setTimeout(function () {
|
|
|
|
//do work
|
|
if ($window.scrollTop() + $window.height() > $document.height() - 100) {
|
|
loadMoreItems();
|
|
}
|
|
|
|
}, _throttleDelay);
|
|
}
|
|
|
|
function setupListeners() {
|
|
if ($(loaderResponseId).length === 1) {
|
|
/*
|
|
https://stackoverflow.com/questions/19731730/jquery-js-detect-users-scroll-attempt-without-any-window-overflow-to-scroll
|
|
*/
|
|
|
|
$('html').bind('mousewheel DOMMouseScroll', function (e) {
|
|
var delta = e.originalEvent.wheelDelta || -e.originalEvent.detail;
|
|
|
|
if (delta < 0 && !hasScrollBar) {
|
|
loadMoreItems();
|
|
}
|
|
});
|
|
|
|
/*
|
|
https://stackoverflow.com/questions/3898130/check-if-a-user-has-scrolled-to-the-bottom
|
|
*/
|
|
|
|
var _throttleTimer = null;
|
|
var _throttleDelay = 100;
|
|
var $window = $(window);
|
|
var $document = $(document);
|
|
var hasScrollBar = false;
|
|
|
|
$document.ready(function () {
|
|
$window
|
|
.off('scroll', _ScrollHandler)
|
|
.on('scroll', _ScrollHandler);
|
|
$('.loader-load-more:not(.disabled)').click(function (e) {
|
|
if (!isLoaderLoading) {
|
|
loadMoreItems();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
} |