]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/+video-watch/shared/metadata/video-attributes.component.ts
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-watch / shared / metadata / video-attributes.component.ts
1 import { Component, Input } from '@angular/core'
2 import { VideoDetails } from '@app/shared/shared-main'
3
4 @Component({
5 selector: 'my-video-attributes',
6 templateUrl: './video-attributes.component.html',
7 styleUrls: [ './video-attributes.component.scss' ]
8 })
9 export class VideoAttributesComponent {
10 @Input() video: VideoDetails
11
12 getVideoHost () {
13 return this.video.channel.host
14 }
15
16 getVideoTags () {
17 if (!this.video || Array.isArray(this.video.tags) === false) return []
18
19 return this.video.tags
20 }
21 }