aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-download.component.ts
blob: 44ece986cfce96ecb95ddcd7c0a2dc400edec681 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                   
                                                    
                                                                     

            

                                                 
                                                  
  
                                                       
                                     
 
                                           
 


                                                
                  


            



                                                    

                     

   

                     
   










                                                                                
 
import { Component, Input, OnInit, ViewChild } from '@angular/core'
import { ModalDirective } from 'ngx-bootstrap/modal'
import { VideoDetails } from '../../shared/video/video-details.model'

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

  @ViewChild('modal') modal: ModalDirective

  downloadType: 'direct' | 'torrent' = 'torrent'
  resolution = -1

  constructor () {
    // empty
  }

  ngOnInit () {
    this.resolution = this.video.files[0].resolution
  }

  show () {
    this.modal.show()
  }

  hide () {
    this.modal.hide()
  }

  download () {
    const file = this.video.files.find(f => f.resolution === this.resolution)
    if (!file) {
      console.error('Could not find file with resolution %d.', this.resolution)
      return
    }

    const link = this.downloadType === 'direct' ? file.fileUrl : file.torrentUrl
    window.open(link)
  }
}