]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/video-playlist/video-playlist-element-miniature.component.ts
Lazy load static objects
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / video-playlist / video-playlist-element-miniature.component.ts
CommitLineData
ba430d75 1import { ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core'
e2f01c47 2import { Video } from '@app/shared/video/video.model'
ba430d75 3import { ServerConfig, VideoPlaylistElementType, VideoPlaylistElementUpdate } from '@shared/models'
e2f01c47
C
4import { AuthService, ConfirmService, Notifier, ServerService } from '@app/core'
5import { ActivatedRoute } from '@angular/router'
6import { I18n } from '@ngx-translate/i18n-polyfill'
7import { VideoService } from '@app/shared/video/video.service'
8import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
9import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap'
10import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model'
11import { secondsToTime } from '../../../assets/player/utils'
bfbd9128 12import { VideoPlaylistElement } from '@app/shared/video-playlist/video-playlist-element.model'
e2f01c47
C
13
14@Component({
15 selector: 'my-video-playlist-element-miniature',
16 styleUrls: [ './video-playlist-element-miniature.component.scss' ],
bce47964
C
17 templateUrl: './video-playlist-element-miniature.component.html',
18 changeDetection: ChangeDetectionStrategy.OnPush
e2f01c47 19})
ba430d75 20export class VideoPlaylistElementMiniatureComponent implements OnInit {
f36da21e 21 @ViewChild('moreDropdown', { static: false }) moreDropdown: NgbDropdown
e2f01c47
C
22
23 @Input() playlist: VideoPlaylist
bfbd9128 24 @Input() playlistElement: VideoPlaylistElement
e2f01c47
C
25 @Input() owned = false
26 @Input() playing = false
27 @Input() rowLink = false
28 @Input() accountLink = true
bfbd9128 29 @Input() position: number // Keep this property because we're in the OnPush change detection strategy
e2f01c47 30
bfbd9128 31 @Output() elementRemoved = new EventEmitter<VideoPlaylistElement>()
e2f01c47
C
32
33 displayTimestampOptions = false
34
35 timestampOptions: {
36 startTimestampEnabled: boolean
37 startTimestamp: number
38 stopTimestampEnabled: boolean
39 stopTimestamp: number
40 } = {} as any
41
ba430d75
C
42 private serverConfig: ServerConfig
43
e2f01c47
C
44 constructor (
45 private authService: AuthService,
46 private serverService: ServerService,
47 private notifier: Notifier,
48 private confirmService: ConfirmService,
49 private route: ActivatedRoute,
50 private i18n: I18n,
51 private videoService: VideoService,
bce47964
C
52 private videoPlaylistService: VideoPlaylistService,
53 private cdr: ChangeDetectorRef
e2f01c47
C
54 ) {}
55
ba430d75
C
56 ngOnInit (): void {
57 this.serverConfig = this.serverService.getTmpConfig()
58 this.serverService.getConfig()
59 .subscribe(config => {
60 this.serverConfig = config
61 this.cdr.detectChanges()
62 })
63 }
64
bfbd9128
C
65 isUnavailable (e: VideoPlaylistElement) {
66 return e.type === VideoPlaylistElementType.UNAVAILABLE
67 }
68
69 isPrivate (e: VideoPlaylistElement) {
70 return e.type === VideoPlaylistElementType.PRIVATE
71 }
72
73 isDeleted (e: VideoPlaylistElement) {
74 return e.type === VideoPlaylistElementType.DELETED
75 }
76
e2f01c47
C
77 buildRouterLink () {
78 if (!this.playlist) return null
79
80 return [ '/videos/watch/playlist', this.playlist.uuid ]
81 }
82
83 buildRouterQuery () {
bfbd9128 84 if (!this.playlistElement || !this.playlistElement.video) return {}
e2f01c47
C
85
86 return {
bfbd9128
C
87 videoId: this.playlistElement.video.uuid,
88 start: this.playlistElement.startTimestamp,
89 stop: this.playlistElement.stopTimestamp
e2f01c47
C
90 }
91 }
92
93 isVideoBlur (video: Video) {
ba430d75 94 return video.isVideoNSFWForUser(this.authService.getUser(), this.serverConfig)
e2f01c47
C
95 }
96
bfbd9128
C
97 removeFromPlaylist (playlistElement: VideoPlaylistElement) {
98 this.videoPlaylistService.removeVideoFromPlaylist(this.playlist.id, playlistElement.id)
e2f01c47
C
99 .subscribe(
100 () => {
101 this.notifier.success(this.i18n('Video removed from {{name}}', { name: this.playlist.displayName }))
102
bfbd9128 103 this.elementRemoved.emit(playlistElement)
e2f01c47
C
104 },
105
106 err => this.notifier.error(err.message)
107 )
108
109 this.moreDropdown.close()
110 }
111
bfbd9128 112 updateTimestamps (playlistElement: VideoPlaylistElement) {
e2f01c47
C
113 const body: VideoPlaylistElementUpdate = {}
114
115 body.startTimestamp = this.timestampOptions.startTimestampEnabled ? this.timestampOptions.startTimestamp : null
116 body.stopTimestamp = this.timestampOptions.stopTimestampEnabled ? this.timestampOptions.stopTimestamp : null
117
bfbd9128 118 this.videoPlaylistService.updateVideoOfPlaylist(this.playlist.id, playlistElement.id, body)
e2f01c47
C
119 .subscribe(
120 () => {
121 this.notifier.success(this.i18n('Timestamps updated'))
122
bfbd9128
C
123 playlistElement.startTimestamp = body.startTimestamp
124 playlistElement.stopTimestamp = body.stopTimestamp
bce47964
C
125
126 this.cdr.detectChanges()
e2f01c47
C
127 },
128
129 err => this.notifier.error(err.message)
130 )
131
132 this.moreDropdown.close()
133 }
134
bfbd9128
C
135 formatTimestamp (playlistElement: VideoPlaylistElement) {
136 const start = playlistElement.startTimestamp
137 const stop = playlistElement.stopTimestamp
e2f01c47
C
138
139 const startFormatted = secondsToTime(start, true, ':')
140 const stopFormatted = secondsToTime(stop, true, ':')
141
142 if (start === null && stop === null) return ''
143
144 if (start !== null && stop === null) return this.i18n('Starts at ') + startFormatted
145 if (start === null && stop !== null) return this.i18n('Stops at ') + stopFormatted
146
147 return this.i18n('Starts at ') + startFormatted + this.i18n(' and stops at ') + stopFormatted
148 }
149
150 onDropdownOpenChange () {
151 this.displayTimestampOptions = false
152 }
153
bfbd9128 154 toggleDisplayTimestampsOptions (event: Event, playlistElement: VideoPlaylistElement) {
e2f01c47
C
155 event.preventDefault()
156
157 this.displayTimestampOptions = !this.displayTimestampOptions
158
159 if (this.displayTimestampOptions === true) {
160 this.timestampOptions = {
161 startTimestampEnabled: false,
162 stopTimestampEnabled: false,
163 startTimestamp: 0,
bfbd9128 164 stopTimestamp: playlistElement.video.duration
e2f01c47
C
165 }
166
bfbd9128 167 if (playlistElement.startTimestamp) {
e2f01c47 168 this.timestampOptions.startTimestampEnabled = true
bfbd9128 169 this.timestampOptions.startTimestamp = playlistElement.startTimestamp
e2f01c47
C
170 }
171
bfbd9128 172 if (playlistElement.stopTimestamp) {
e2f01c47 173 this.timestampOptions.stopTimestampEnabled = true
bfbd9128 174 this.timestampOptions.stopTimestamp = playlistElement.stopTimestamp
e2f01c47
C
175 }
176 }
bce47964
C
177
178 // FIXME: why do we have to use setTimeout here?
179 setTimeout(() => {
180 this.cdr.detectChanges()
181 })
e2f01c47
C
182 }
183}