2018-04-16 16:31:14 -04:00
|
|
|
|
let offset = 12;
|
|
|
|
|
let isLoading = false;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
|
|
|
|
function loadMorePenalties() {
|
2018-04-16 16:31:14 -04:00
|
|
|
|
if (isLoading) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
showLoader();
|
2018-04-16 16:31:14 -04:00
|
|
|
|
isLoading = true;
|
2018-05-04 00:22:10 -04:00
|
|
|
|
$.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);
|
2018-05-04 00:22:10 -04:00
|
|
|
|
if (response.trim().length === 0) {
|
|
|
|
|
staleLoader();
|
|
|
|
|
}
|
2018-04-09 23:33:42 -04:00
|
|
|
|
hideLoader();
|
2018-04-16 16:31:14 -04:00
|
|
|
|
isLoading = false;
|
2018-04-09 23:33:42 -04:00
|
|
|
|
})
|
|
|
|
|
.fail(function (jqxhr, statis, error) {
|
|
|
|
|
errorLoader();
|
2018-04-16 16:31:14 -04:00
|
|
|
|
isLoading = false;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
});
|
2018-04-16 16:31:14 -04:00
|
|
|
|
offset += 12;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 02:32:30 -04:00
|
|
|
|
if ($('#penalty_table').length === 1) {
|
2018-05-04 00:22:10 -04:00
|
|
|
|
|
|
|
|
|
$('#penalty_filter_selection').change(function() {
|
|
|
|
|
// if (offset === 0) {
|
|
|
|
|
location = location.href.split('?')[0] + "?showOnly=" + $('#penalty_filter_selection').val();
|
|
|
|
|
// }
|
|
|
|
|
});
|
|
|
|
|
/*
|
2018-04-09 23:33:42 -04:00
|
|
|
|
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
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
$('html').bind('mousewheel DOMMouseScroll', function (e) {
|
|
|
|
|
var delta = (e.originalEvent.wheelDelta || -e.originalEvent.detail);
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
if (delta < 0 && !hasScrollBar) {
|
|
|
|
|
loadMorePenalties();
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
/*
|
|
|
|
|
https://stackoverflow.com/questions/3898130/check-if-a-user-has-scrolled-to-the-bottom
|
|
|
|
|
*/
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
var _throttleTimer = null;
|
|
|
|
|
var _throttleDelay = 100;
|
|
|
|
|
var $window = $(window);
|
|
|
|
|
var $document = $(document);
|
|
|
|
|
var hasScrollBar = false;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
$document.ready(function () {
|
|
|
|
|
$window
|
|
|
|
|
.off('scroll', ScrollHandler)
|
|
|
|
|
.on('scroll', ScrollHandler);
|
2018-04-16 16:31:14 -04:00
|
|
|
|
|
2018-04-19 01:48:14 -04:00
|
|
|
|
$('#load_penalties_button').click(function () {
|
2018-04-16 16:31:14 -04:00
|
|
|
|
loadMorePenalties();
|
|
|
|
|
});
|
2018-04-09 23:33:42 -04:00
|
|
|
|
});
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
function ScrollHandler(e) {
|
|
|
|
|
//throttle event:
|
|
|
|
|
hasScrollBar = true;
|
|
|
|
|
clearTimeout(_throttleTimer);
|
|
|
|
|
_throttleTimer = setTimeout(function () {
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
//do work
|
|
|
|
|
if ($window.scrollTop() + $window.height() > $document.height() - 100) {
|
|
|
|
|
loadMorePenalties();
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-04-09 23:33:42 -04:00
|
|
|
|
}, _throttleDelay);
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|