2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
max-len,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-19 05:02:56 -04:00
|
|
|
import App from '../../../base'
|
|
|
|
|
|
|
|
export default App.directive('infiniteScroll', () => ({
|
|
|
|
link(scope, element, attrs, ctrl) {
|
|
|
|
const innerElement = element.find('.infinite-scroll-inner')
|
|
|
|
element.css({ 'overflow-y': 'auto' })
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
const atEndOfListView = function () {
|
2020-05-19 05:02:56 -04:00
|
|
|
if (attrs.infiniteScrollUpwards != null) {
|
|
|
|
return atTopOfListView()
|
|
|
|
} else {
|
|
|
|
return atBottomOfListView()
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
}
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
var atTopOfListView = () => element.scrollTop() < 30
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
var atBottomOfListView = () =>
|
|
|
|
element.scrollTop() + element.height() >= innerElement.height() - 30
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
const listShorterThanContainer = () =>
|
|
|
|
element.height() > innerElement.height()
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
var loadUntilFull = function () {
|
2020-05-19 05:02:56 -04:00
|
|
|
if (
|
|
|
|
(listShorterThanContainer() || atEndOfListView()) &&
|
|
|
|
!scope.$eval(attrs.infiniteScrollDisabled)
|
|
|
|
) {
|
|
|
|
const promise = scope.$eval(attrs.infiniteScroll)
|
|
|
|
return promise.then(() => setTimeout(() => loadUntilFull(), 0))
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
}
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
element.on('scroll', event => loadUntilFull())
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
return scope.$watch(attrs.infiniteScrollInitialize, function (value) {
|
2020-05-19 05:02:56 -04:00
|
|
|
if (value) {
|
|
|
|
return loadUntilFull()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}))
|