IW4M-Admin/WebfrontCore/wwwroot/js/penalty.js

79 lines
2.1 KiB
JavaScript
Raw Normal View History

let offset = 12;
let isLoading = false;
2018-02-21 20:29:23 -05:00
function loadMorePenalties() {
if (isLoading) {
return false;
}
showLoader();
isLoading = true;
$.get('/Penalty/ListAsync', { offset: offset, showOnly : $('#penalty_filter_selection').val() })
2018-02-21 20:29:23 -05:00
.done(function (response) {
$('#penalty_table').append(response);
if (response.trim().length === 0) {
staleLoader();
}
hideLoader();
isLoading = false;
})
.fail(function (jqxhr, statis, error) {
errorLoader();
isLoading = false;
2018-02-21 20:29:23 -05:00
});
offset += 12;
2018-02-21 20:29:23 -05:00
}
if ($('#penalty_table').length === 1) {
$('#penalty_filter_selection').change(function() {
// if (offset === 0) {
location = location.href.split('?')[0] + "?showOnly=" + $('#penalty_filter_selection').val();
// }
});
/*
https://stackoverflow.com/questions/19731730/jquery-js-detect-users-scroll-attempt-without-any-window-overflow-to-scroll
*/
2018-02-21 20:29:23 -05:00
$('html').bind('mousewheel DOMMouseScroll', function (e) {
var delta = (e.originalEvent.wheelDelta || -e.originalEvent.detail);
2018-02-21 20:29:23 -05:00
if (delta < 0 && !hasScrollBar) {
loadMorePenalties();
}
});
2018-02-21 20:29:23 -05:00
/*
https://stackoverflow.com/questions/3898130/check-if-a-user-has-scrolled-to-the-bottom
*/
2018-02-21 20:29:23 -05:00
var _throttleTimer = null;
var _throttleDelay = 100;
var $window = $(window);
var $document = $(document);
var hasScrollBar = false;
2018-02-21 20:29:23 -05:00
$document.ready(function () {
$window
.off('scroll', ScrollHandler)
.on('scroll', ScrollHandler);
$('#load_penalties_button').click(function () {
loadMorePenalties();
});
});
2018-02-21 20:29:23 -05:00
function ScrollHandler(e) {
//throttle event:
hasScrollBar = true;
clearTimeout(_throttleTimer);
_throttleTimer = setTimeout(function () {
2018-02-21 20:29:23 -05:00
//do work
if ($window.scrollTop() + $window.height() > $document.height() - 100) {
loadMorePenalties();
}
2018-02-21 20:29:23 -05:00
}, _throttleDelay);
}
2018-02-21 20:29:23 -05:00
}