]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video/abstract-video-list.ts
Lazy load static objects
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video / abstract-video-list.ts
CommitLineData
3caf77d3 1import { debounceTime, first, tap } from 'rxjs/operators'
489290b8 2import { OnDestroy, OnInit } from '@angular/core'
fd45e8f4 3import { ActivatedRoute, Router } from '@angular/router'
ad453580 4import { fromEvent, Observable, of, Subject, Subscription } from 'rxjs'
b2731bff 5import { AuthService } from '../../core/auth'
4635f59d 6import { ComponentPagination } from '../rest/component-pagination.model'
7b87d2d5 7import { VideoSortField } from './sort-field.type'
202f6b6c 8import { Video } from './video.model'
bbe0f064 9import { ScreenService } from '@app/shared/misc/screen.service'
abf325b4 10import { MiniatureDisplayOptions, OwnerDisplayType } from '@app/shared/video/video-miniature.component'
c199c427 11import { Syndication } from '@app/shared/video/syndication.model'
489290b8
C
12import { Notifier, ServerService } from '@app/core'
13import { DisableForReuseHook } from '@app/core/routing/disable-for-reuse-hook'
34c7f429 14import { I18n } from '@ngx-translate/i18n-polyfill'
93aa8552 15import { isLastMonth, isLastWeek, isToday, isYesterday } from '@shared/core-utils/miscs/date'
ba430d75 16import { ResultList, ServerConfig } from '@shared/models'
34c7f429
C
17
18enum GroupDate {
19 UNKNOWN = 0,
20 TODAY = 1,
21 YESTERDAY = 2,
93aa8552
C
22 LAST_WEEK = 3,
23 LAST_MONTH = 4,
34c7f429
C
24 OLDER = 5
25}
0cd4344f 26
489290b8 27export abstract class AbstractVideoList implements OnInit, OnDestroy, DisableForReuseHook {
4635f59d 28 pagination: ComponentPagination = {
fd45e8f4 29 currentPage: 1,
489290b8 30 itemsPerPage: 25,
fd45e8f4
C
31 totalItems: null
32 }
136cce4d 33 sort: VideoSortField = '-publishedAt'
489290b8 34
d59cba29 35 categoryOneOf?: number
3caf77d3 36 languageOneOf?: string[]
136cce4d 37 defaultSort: VideoSortField = '-publishedAt'
489290b8 38
c199c427 39 syndicationItems: Syndication[] = []
244e76a5 40
f3aaa9a9 41 loadOnInit = true
3caf77d3 42 useUserVideoLanguagePreferences = false
22a16e36 43 ownerDisplayType: OwnerDisplayType = 'account'
017c3dca 44 displayModerationBlock = false
9b4b15f9 45 titleTooltip: string
3a0fb65c 46 displayVideoActions = true
34c7f429 47 groupByDate = false
fd45e8f4 48
3caf77d3 49 videos: Video[] = []
489290b8 50 disabled = false
9af61e84 51
abf325b4
C
52 displayOptions: MiniatureDisplayOptions = {
53 date: true,
54 views: true,
55 by: true,
56 privacyLabel: true,
57 privacyText: false,
58 state: false,
59 blacklistInfo: false
60 }
61
ad453580
C
62 onDataSubject = new Subject<any[]>()
63
ba430d75
C
64 protected serverConfig: ServerConfig
65
f8b2c1b4 66 protected abstract notifier: Notifier
b2731bff 67 protected abstract authService: AuthService
b2731bff 68 protected abstract route: ActivatedRoute
489290b8 69 protected abstract serverService: ServerService
bbe0f064 70 protected abstract screenService: ScreenService
489290b8 71 protected abstract router: Router
34c7f429 72 protected abstract i18n: I18n
9bf9d2a5 73 abstract titlePage: string
c88593f7 74
9af61e84 75 private resizeSubscription: Subscription
489290b8
C
76 private angularState: number
77
34c7f429
C
78 private groupedDateLabels: { [id in GroupDate]: string }
79 private groupedDates: { [id: number]: GroupDate } = {}
80
93cae479 81 abstract getVideosObservable (page: number): Observable<ResultList<Video>>
9af61e84 82
c199c427 83 abstract generateSyndicationList (): void
fd45e8f4 84
b2731bff
C
85 get user () {
86 return this.authService.getUser()
87 }
88
fd45e8f4 89 ngOnInit () {
ba430d75
C
90 this.serverConfig = this.serverService.getTmpConfig()
91 this.serverService.getConfig()
92 .subscribe(config => this.serverConfig = config)
93
34c7f429
C
94 this.groupedDateLabels = {
95 [GroupDate.UNKNOWN]: null,
96 [GroupDate.TODAY]: this.i18n('Today'),
97 [GroupDate.YESTERDAY]: this.i18n('Yesterday'),
93aa8552
C
98 [GroupDate.LAST_WEEK]: this.i18n('Last week'),
99 [GroupDate.LAST_MONTH]: this.i18n('Last month'),
34c7f429
C
100 [GroupDate.OLDER]: this.i18n('Older')
101 }
102
fd45e8f4 103 // Subscribe to route changes
5b5e333f 104 const routeParams = this.route.snapshot.queryParams
2bbb3412 105 this.loadRouteParams(routeParams)
a2b817d3 106
9af61e84 107 this.resizeSubscription = fromEvent(window, 'resize')
db400f44 108 .pipe(debounceTime(500))
6194c1b4 109 .subscribe(() => this.calcPageSizes())
3290f37c 110
6194c1b4 111 this.calcPageSizes()
3caf77d3
C
112
113 const loadUserObservable = this.loadUserVideoLanguagesIfNeeded()
114
115 if (this.loadOnInit === true) {
116 loadUserObservable.subscribe(() => this.loadMoreVideos())
117 }
fd45e8f4
C
118 }
119
9af61e84
C
120 ngOnDestroy () {
121 if (this.resizeSubscription) this.resizeSubscription.unsubscribe()
122 }
123
489290b8
C
124 disableForReuse () {
125 this.disabled = true
89724816
C
126 }
127
489290b8
C
128 enabledForReuse () {
129 this.disabled = false
89724816
C
130 }
131
489290b8
C
132 videoById (index: number, video: Video) {
133 return video.id
2bbb3412
C
134 }
135
136 onNearOfBottom () {
489290b8 137 if (this.disabled) return
2bbb3412 138
489290b8
C
139 // Last page
140 if (this.pagination.totalItems <= (this.pagination.currentPage * this.pagination.itemsPerPage)) return
0cd4344f 141
489290b8 142 this.pagination.currentPage += 1
a8ecc6f6 143
489290b8 144 this.setScrollRouteParams()
a8ecc6f6 145
489290b8
C
146 this.loadMoreVideos()
147 }
fd45e8f4 148
489290b8 149 loadMoreVideos () {
93cae479
C
150 this.getVideosObservable(this.pagination.currentPage).subscribe(
151 ({ data, total }) => {
152 this.pagination.totalItems = total
153 this.videos = this.videos.concat(data)
693263e9 154
34c7f429
C
155 if (this.groupByDate) this.buildGroupedDateLabels()
156
693263e9 157 this.onMoreVideos()
ad453580
C
158
159 this.onDataSubject.next(data)
fd45e8f4 160 },
017c3dca 161
489290b8
C
162 error => this.notifier.error(error.message)
163 )
2bbb3412
C
164 }
165
489290b8
C
166 reloadVideos () {
167 this.pagination.currentPage = 1
168 this.videos = []
169 this.loadMoreVideos()
fd45e8f4
C
170 }
171
489290b8
C
172 toggleModerationDisplay () {
173 throw new Error('toggleModerationDisplay is not implemented')
fd45e8f4
C
174 }
175
3a0fb65c
C
176 removeVideoFromArray (video: Video) {
177 this.videos = this.videos.filter(v => v.id !== video.id)
178 }
179
34c7f429
C
180 buildGroupedDateLabels () {
181 let currentGroupedDate: GroupDate = GroupDate.UNKNOWN
182
183 for (const video of this.videos) {
184 const publishedDate = video.publishedAt
185
4e0c1793
C
186 if (currentGroupedDate <= GroupDate.TODAY && isToday(publishedDate)) {
187 if (currentGroupedDate === GroupDate.TODAY) continue
188
34c7f429
C
189 currentGroupedDate = GroupDate.TODAY
190 this.groupedDates[ video.id ] = currentGroupedDate
191 continue
192 }
193
4e0c1793
C
194 if (currentGroupedDate <= GroupDate.YESTERDAY && isYesterday(publishedDate)) {
195 if (currentGroupedDate === GroupDate.YESTERDAY) continue
196
34c7f429
C
197 currentGroupedDate = GroupDate.YESTERDAY
198 this.groupedDates[ video.id ] = currentGroupedDate
199 continue
200 }
201
93aa8552
C
202 if (currentGroupedDate <= GroupDate.LAST_WEEK && isLastWeek(publishedDate)) {
203 if (currentGroupedDate === GroupDate.LAST_WEEK) continue
4e0c1793 204
93aa8552 205 currentGroupedDate = GroupDate.LAST_WEEK
34c7f429
C
206 this.groupedDates[ video.id ] = currentGroupedDate
207 continue
208 }
209
93aa8552
C
210 if (currentGroupedDate <= GroupDate.LAST_MONTH && isLastMonth(publishedDate)) {
211 if (currentGroupedDate === GroupDate.LAST_MONTH) continue
4e0c1793 212
93aa8552 213 currentGroupedDate = GroupDate.LAST_MONTH
34c7f429
C
214 this.groupedDates[ video.id ] = currentGroupedDate
215 continue
216 }
217
4e0c1793
C
218 if (currentGroupedDate <= GroupDate.OLDER) {
219 if (currentGroupedDate === GroupDate.OLDER) continue
220
34c7f429
C
221 currentGroupedDate = GroupDate.OLDER
222 this.groupedDates[ video.id ] = currentGroupedDate
223 }
224 }
225 }
226
227 getCurrentGroupedDateLabel (video: Video) {
228 if (this.groupByDate === false) return undefined
229
230 return this.groupedDateLabels[this.groupedDates[video.id]]
231 }
232
693263e9
C
233 // On videos hook for children that want to do something
234 protected onMoreVideos () { /* empty */ }
235
fd45e8f4 236 protected loadRouteParams (routeParams: { [ key: string ]: any }) {
489290b8
C
237 this.sort = routeParams[ 'sort' ] as VideoSortField || this.defaultSort
238 this.categoryOneOf = routeParams[ 'categoryOneOf' ]
239 this.angularState = routeParams[ 'a-state' ]
0cd4344f 240 }
6194c1b4
C
241
242 private calcPageSizes () {
489290b8 243 if (this.screenService.isInMobileView()) {
6194c1b4 244 this.pagination.itemsPerPage = 5
6194c1b4 245 }
489290b8 246 }
6194c1b4 247
489290b8
C
248 private setScrollRouteParams () {
249 // Already set
250 if (this.angularState) return
6194c1b4 251
489290b8 252 this.angularState = 42
6194c1b4 253
489290b8
C
254 const queryParams = {
255 'a-state': this.angularState,
256 categoryOneOf: this.categoryOneOf
9af61e84 257 }
6194c1b4 258
489290b8 259 let path = this.router.url
ba430d75 260 if (!path || path === '/') path = this.serverConfig.instance.defaultClientRoute
489290b8
C
261
262 this.router.navigate([ path ], { queryParams, replaceUrl: true, queryParamsHandling: 'merge' })
6194c1b4 263 }
3caf77d3
C
264
265 private loadUserVideoLanguagesIfNeeded () {
266 if (!this.authService.isLoggedIn() || !this.useUserVideoLanguagePreferences) {
267 return of(true)
268 }
269
270 return this.authService.userInformationLoaded
271 .pipe(
272 first(),
273 tap(() => this.languageOneOf = this.user.videoLanguages)
274 )
275 }
fd45e8f4 276}