PeerTube/client/src/standalone/videos/embed.ts

59 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-07-23 14:49:52 +02:00
import './embed.scss'
2017-12-11 17:36:46 +01:00
import * as videojs from 'video.js'
import '../../assets/player/peertube-videojs-plugin'
2017-07-23 14:49:52 +02:00
import 'videojs-dock/dist/videojs-dock.es.js'
2017-10-25 16:43:19 +02:00
import { VideoDetails } from '../../../../shared'
2017-07-23 14:49:52 +02:00
2017-10-25 16:43:19 +02:00
function loadVideoInfo (videoId: string, callback: (err: Error, res?: VideoDetails) => void) {
2017-07-23 14:49:52 +02:00
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) => {
2017-07-23 14:49:52 +02:00
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
},
2018-01-09 16:30:39 +01:00
hotkeys: {
enableVolumeScroll: false
}
}
}
videojs('video-container', videojsOptions, function () {
2017-07-23 14:49:52 +02:00
const player = this
player.dock({
title: videoInfo.name
2017-07-23 14:49:52 +02:00
})
})
})