]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/abstract-video-list.ts
Responsive homepage
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.ts
CommitLineData
f3aaa9a9 1import { OnInit } from '@angular/core'
fd45e8f4 2import { ActivatedRoute, Router } from '@angular/router'
fd45e8f4 3import { NotificationsService } from 'angular2-notifications'
9bf9d2a5 4import { Observable } from 'rxjs/Observable'
202f6b6c
C
5import { SortField } from './sort-field.type'
6import { VideoPagination } from './video-pagination.model'
7import { Video } from './video.model'
fd45e8f4 8
f3aaa9a9 9export abstract class AbstractVideoList implements OnInit {
fd45e8f4
C
10 pagination: VideoPagination = {
11 currentPage: 1,
12 itemsPerPage: 25,
13 totalItems: null
14 }
9bf9d2a5 15 sort: SortField = '-createdAt'
f3aaa9a9 16 defaultSort: SortField = '-createdAt'
fd45e8f4 17 videos: Video[] = []
f3aaa9a9 18 loadOnInit = true
fd45e8f4
C
19
20 protected notificationsService: NotificationsService
21 protected router: Router
22 protected route: ActivatedRoute
fd45e8f4 23
2bbb3412
C
24 protected abstract currentRoute: string
25
9bf9d2a5 26 abstract titlePage: string
2bbb3412
C
27 private loadedPages: { [ id: number ]: boolean } = {}
28
fd45e8f4
C
29 abstract getVideosObservable (): Observable<{ videos: Video[], totalVideos: number}>
30
31 ngOnInit () {
32 // Subscribe to route changes
2bbb3412
C
33 const routeParams = this.route.snapshot.params
34 this.loadRouteParams(routeParams)
a2b817d3 35
f3aaa9a9 36 if (this.loadOnInit === true) this.loadMoreVideos('after')
fd45e8f4
C
37 }
38
2bbb3412
C
39 onNearOfTop () {
40 if (this.pagination.currentPage > 1) {
41 this.previousPage()
42 }
43 }
44
45 onNearOfBottom () {
46 if (this.hasMoreVideos()) {
47 this.nextPage()
48 }
49 }
50
f3aaa9a9
C
51 reloadVideos () {
52 this.videos = []
53 this.loadedPages = {}
54 this.loadMoreVideos('before')
55 }
56
2bbb3412
C
57 loadMoreVideos (where: 'before' | 'after') {
58 if (this.loadedPages[this.pagination.currentPage] === true) return
fd45e8f4
C
59
60 const observable = this.getVideosObservable()
61
62 observable.subscribe(
63 ({ videos, totalVideos }) => {
a2b817d3 64 // Paging is too high, return to the first one
f595d394 65 if (this.pagination.currentPage > 1 && totalVideos <= ((this.pagination.currentPage - 1) * this.pagination.itemsPerPage)) {
a2b817d3
C
66 this.pagination.currentPage = 1
67 this.setNewRouteParams()
68 return this.reloadVideos()
69 }
70
2bbb3412 71 this.loadedPages[this.pagination.currentPage] = true
fd45e8f4 72 this.pagination.totalItems = totalVideos
2bbb3412
C
73
74 if (where === 'before') {
75 this.videos = videos.concat(this.videos)
76 } else {
77 this.videos = this.videos.concat(videos)
78 }
fd45e8f4
C
79 },
80 error => this.notificationsService.error('Error', error.text)
81 )
82 }
83
2bbb3412 84 protected hasMoreVideos () {
f595d394
C
85 // No results
86 if (this.pagination.totalItems === 0) return false
87
88 // Not loaded yet
2bbb3412
C
89 if (!this.pagination.totalItems) return true
90
202f6b6c 91 const maxPage = this.pagination.totalItems / this.pagination.itemsPerPage
2bbb3412
C
92 return maxPage > this.pagination.currentPage
93 }
94
95 protected previousPage () {
96 this.pagination.currentPage--
97
98 this.setNewRouteParams()
99 this.loadMoreVideos('before')
100 }
101
102 protected nextPage () {
103 this.pagination.currentPage++
fd45e8f4 104
2bbb3412
C
105 this.setNewRouteParams()
106 this.loadMoreVideos('after')
fd45e8f4
C
107 }
108
fd45e8f4
C
109 protected buildRouteParams () {
110 // There is always a sort and a current page
111 const params = {
112 sort: this.sort,
113 page: this.pagination.currentPage
114 }
115
116 return params
117 }
118
119 protected loadRouteParams (routeParams: { [ key: string ]: any }) {
f3aaa9a9 120 this.sort = routeParams['sort'] as SortField || this.defaultSort
fd45e8f4
C
121
122 if (routeParams['page'] !== undefined) {
123 this.pagination.currentPage = parseInt(routeParams['page'], 10)
124 } else {
125 this.pagination.currentPage = 1
126 }
127 }
128
2bbb3412 129 protected setNewRouteParams () {
fd45e8f4 130 const routeParams = this.buildRouteParams()
2bbb3412 131 this.router.navigate([ this.currentRoute, routeParams ])
fd45e8f4
C
132 }
133}