ownerDisplayType: OwnerDisplayType = 'account'
protected baseVideoWidth = 215
- protected baseVideoHeight = 230
+ protected baseVideoHeight = 205
protected abstract notificationsService: NotificationsService
protected abstract authService: AuthService
protected otherRouteParams = {}
private resizeSubscription: Subscription
+ private firstLoadedPage: number
abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}>
abstract generateSyndicationList ()
this.loadMoreVideos(this.pagination.currentPage)
}
- loadMoreVideos (page: number) {
+ loadMoreVideos (page: number, loadOnTop = false) {
+ this.adjustVideoPageHeight()
+
+ const currentY = window.scrollY
+
if (this.loadedPages[page] !== undefined) return
if (this.loadingPage[page] === true) return
({ videos, totalVideos }) => {
this.loadingPage[page] = false
+ if (this.firstLoadedPage === undefined || this.firstLoadedPage > page) this.firstLoadedPage = page
+
// Paging is too high, return to the first one
if (this.pagination.currentPage > 1 && totalVideos <= ((this.pagination.currentPage - 1) * this.pagination.itemsPerPage)) {
this.pagination.currentPage = 1
// Initialize infinite scroller now we loaded the first page
if (Object.keys(this.loadedPages).length === 1) {
// Wait elements creation
- setTimeout(() => this.infiniteScroller.initialize(), 500)
+ setTimeout(() => {
+ this.infiniteScroller.initialize()
+
+ // At our first load, we did not load the first page
+ // Load the previous page so the user can move on the top (and browser previous pages)
+ if (this.pagination.currentPage > 1) this.loadMoreVideos(this.pagination.currentPage - 1, true)
+ }, 500)
}
+
+ // Insert elements on the top but keep the scroll in the previous position
+ if (loadOnTop) setTimeout(() => { window.scrollTo(0, currentY + this.pageHeight) }, 0)
},
error => {
this.loadingPage[page] = false
this.videoPages = Object.values(this.loadedPages)
}
+ protected adjustVideoPageHeight () {
+ const numberOfPagesLoaded = Object.keys(this.loadedPages).length
+ if (!numberOfPagesLoaded) return
+
+ this.pageHeight = this.videosElement.nativeElement.offsetHeight / numberOfPagesLoaded
+ }
+
protected buildVideoHeight () {
// Same ratios than base width/height
return this.videosElement.nativeElement.offsetWidth * (this.baseVideoHeight / this.baseVideoWidth)
selector: '[myInfiniteScroller]'
})
export class InfiniteScrollerDirective implements OnInit, OnDestroy {
- private static PAGE_VIEW_TOP_MARGIN = 500
-
@Input() containerHeight: number
@Input() pageHeight: number
+ @Input() firstLoadedPage = 1
@Input() percentLimit = 70
@Input() autoInit = false
private scrollDownSub: Subscription
private scrollUpSub: Subscription
private pageChangeSub: Subscription
+ private middleScreen: number
constructor () {
this.decimalLimit = this.percentLimit / 100
}
initialize () {
+ this.middleScreen = window.innerHeight / 2
+
// Emit the last value
const throttleOptions = { leading: true, trailing: true }
}
private calculateCurrentPage (current: number) {
- return Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight))
+ const scrollY = current + this.middleScreen
+
+ const page = Math.max(1, Math.ceil(scrollY / this.pageHeight))
+
+ // Offset page
+ return page + (this.firstLoadedPage - 1)
}
}