aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/standalone/videos/embed.ts
blob: 964ec56f3dabccbc21ec0969f0ba1f15da92fba8 (plain) (tree)
1
2
3
4
5
6
7
8
9

                     
                                   
                        
                                                    
                                             
                                                 
 
                                   
                                                        

 
                                                                       
                                                    
                        

 


                                                








                                                                                       
                             



                                      

                                                        



                                   





















                                 
       
     

                                                            
 
                   
                              
                                                                             
        
      
    
                                   
import './embed.scss'

import * as videojs from 'video.js'
import 'videojs-hotkeys'
import '../../assets/player/peertube-videojs-plugin'
import 'videojs-dock/dist/videojs-dock.es.js'
import { VideoDetails } from '../../../../shared'

function getVideoUrl (id: string) {
  return window.location.origin + '/api/v1/videos/' + id
}

async function loadVideoInfo (videoId: string): Promise<VideoDetails> {
  const response = await fetch(getVideoUrl(videoId))
  return response.json()
}

const urlParts = window.location.href.split('/')
const videoId = urlParts[urlParts.length - 1]

loadVideoInfo(videoId)
  .then(videoInfo => {
    const videoElement = document.getElementById('video-container') as HTMLVideoElement
    const previewUrl = window.location.origin + videoInfo.previewPath
    videoElement.poster = previewUrl

    const videojsOptions = {
      controls: true,
      autoplay: false,
      inactivityTimeout: 500,
      plugins: {
        peertube: {
          videoFiles: videoInfo.files,
          playerElement: videoElement,
          videoViewUrl: getVideoUrl(videoId) + '/views',
          videoDuration: videoInfo.duration
        },
        hotkeys: {
          enableVolumeScroll: false
        }
      },
      controlBar: {
        children: [
          'playToggle',
          'currentTimeDisplay',
          'timeDivider',
          'durationDisplay',
          'liveDisplay',

          'flexibleWidthSpacer',
          'progressControl',

          'webTorrentButton',

          'muteToggle',
          'volumeControl',

          'resolutionMenuButton',
          'peerTubeLinkButton',

          'fullscreenToggle'
        ]
      }
    }
    videojs('video-container', videojsOptions, function () {
      const player = this

      player.dock({
        title: videoInfo.name,
        description: 'Uses P2P, others may know you are watching this video.'
      })
    })
  })
  .catch(err => console.error(err))