38 lines
790 B
TypeScript
Raw Normal View History

2018-04-09 11:44:02 +00:00
import Diff from "./Diff"
2018-04-02 05:34:16 +00:00
export default class InfiniteScroller {
2017-10-16 10:56:46 +00:00
container: HTMLElement
threshold: number
constructor(container, threshold) {
this.container = container
this.threshold = threshold
2018-04-09 11:44:02 +00:00
let check = () => {
2017-10-16 10:56:46 +00:00
if(this.container.scrollTop + this.container.clientHeight >= this.container.scrollHeight - threshold) {
this.loadMore()
}
2018-04-09 11:44:02 +00:00
}
this.container.addEventListener("scroll", e => {
// Wait for mutations to finish before checking if we need infinite scroll to trigger.
if(Diff.mutations.mutations.length > 0) {
Diff.mutations.wait(() => check())
return
}
// Otherwise, check immediately.
check()
2017-10-16 10:56:46 +00:00
})
}
loadMore() {
let button = document.getElementById("load-more-button")
if(!button) {
return
}
button.click()
}
}