aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/videos/embed.ts
blob: e68ee193af38048385d33b83eaca6daffc442e9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import './embed.scss'

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

function loadVideoInfo (videoId: string, callback: (err: Error, res?: VideoDetails) => void) {
  const xhttp = new XMLHttpRequest()
  xhttp.onreadystatechange = function () {
    if (this.readyState === 4 && this.status === 200) {
      const json = JSON.parse(this.responseText)
      return callback(null, json)
    }
  }

  xhttp.onerror = err => callback(err.error)

  const url = window.location.origin + '/api/v1/videos/' + videoId
  xhttp.open('GET', url, true)
  xhttp.send()
}

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

loadVideoInfo(videoId, (err, videoInfo) => {
  if (err) {
    console.error(err)
    return
  }

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

  const videojsOptions = {
    controls: true,
    autoplay: false,
    plugins: {
      peertube: {
        videoFiles: videoInfo.files,
        playerElement: videoElement,
        peerTubeLink: true
      },
      hotkeys: {
        enableVolumeScroll: false
      }
    }
  }
  videojs('video-container', videojsOptions, function () {
    const player = this

    player.dock({
      title: videoInfo.name
    })
  })
})