1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00

Throttle infinite scroller

This commit is contained in:
Chocobozzz 2018-02-22 16:41:02 +01:00
parent 1f30a1853e
commit a9ca764e7e
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 14 additions and 11 deletions

View file

@ -59,14 +59,6 @@ function immutableAssign <A, B> (target: A, source: B) {
return Object.assign({}, target, source)
}
function isInSmallView () {
return window.innerWidth < 600
}
function isInMobileView () {
return window.innerWidth < 500
}
// Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34
function objectToFormData (obj: any, form?: FormData, namespace?: string) {
let fd = form || new FormData()
@ -94,6 +86,18 @@ function lineFeedToHtml (obj: object, keyToNormalize: string) {
})
}
// Try to cache a little bit window.innerWidth
let windowInnerWidth = window.innerWidth
setInterval(() => windowInnerWidth = window.innerWidth, 500)
function isInSmallView () {
return windowInnerWidth < 600
}
function isInMobileView () {
return windowInnerWidth < 500
}
export {
viewportHeight,
getParameterByName,