48d5f2948640d6a670494697f5a95c9fa810d4dc
[oweals/peertube.git] / client / src / app / videos / +video-watch / modal / video-support.component.ts
1 import { Component, Input, ViewChild } from '@angular/core'
2 import { MarkdownService } from '@app/core'
3 import { VideoDetails } from '@app/shared/shared-main'
4 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
5
6 @Component({
7   selector: 'my-video-support',
8   templateUrl: './video-support.component.html',
9   styleUrls: [ './video-support.component.scss' ]
10 })
11 export class VideoSupportComponent {
12   @Input() video: VideoDetails = null
13
14   @ViewChild('modal', { static: true }) modal: NgbModal
15
16   videoHTMLSupport = ''
17
18   constructor (
19     private markdownService: MarkdownService,
20     private modalService: NgbModal
21   ) { }
22
23   show () {
24     this.modalService.open(this.modal, { centered: true })
25
26     this.markdownService.enhancedMarkdownToHTML(this.video.support)
27       .then(r => this.videoHTMLSupport = r)
28   }
29 }