Add miniature quick actions to add video to Watch later playlist
[oweals/peertube.git] / client / src / app / shared / video-playlist / video-playlist-element.model.ts
1 import { VideoPlaylistElement as ServerVideoPlaylistElement, VideoPlaylistElementType } from '../../../../../shared/models/videos'
2 import { Video } from '@app/shared/video/video.model'
3
4 export class VideoPlaylistElement implements ServerVideoPlaylistElement {
5   id: number
6   position: number
7   startTimestamp: number
8   stopTimestamp: number
9
10   type: VideoPlaylistElementType
11
12   video?: Video
13
14   constructor (hash: ServerVideoPlaylistElement, translations: {}) {
15     this.id = hash.id
16     this.position = hash.position
17     this.startTimestamp = hash.startTimestamp
18     this.stopTimestamp = hash.stopTimestamp
19
20     this.type = hash.type
21
22     if (hash.video) this.video = new Video(hash.video, translations)
23   }
24 }