aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/modal/video-support.component.ts
blob: 48d5f2948640d6a670494697f5a95c9fa810d4dc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                                                           

                                                      
                                                     








                                                 
                                                       


                       


                                             
       

           
                                                          


                                                                   

   
import { Component, Input, ViewChild } from '@angular/core'
import { MarkdownService } from '@app/core'
import { VideoDetails } from '@app/shared/shared-main'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'

@Component({
  selector: 'my-video-support',
  templateUrl: './video-support.component.html',
  styleUrls: [ './video-support.component.scss' ]
})
export class VideoSupportComponent {
  @Input() video: VideoDetails = null

  @ViewChild('modal', { static: true }) modal: NgbModal

  videoHTMLSupport = ''

  constructor (
    private markdownService: MarkdownService,
    private modalService: NgbModal
  ) { }

  show () {
    this.modalService.open(this.modal, { centered: true })

    this.markdownService.enhancedMarkdownToHTML(this.video.support)
      .then(r => this.videoHTMLSupport = r)
  }
}