2017-07-23 07:49:52 -05:00
|
|
|
import './embed.scss'
|
|
|
|
|
2017-12-11 10:36:46 -06:00
|
|
|
import * as videojs from 'video.js'
|
2018-01-10 10:18:12 -06:00
|
|
|
import 'videojs-hotkeys'
|
2017-10-06 03:40:09 -05:00
|
|
|
import '../../assets/player/peertube-videojs-plugin'
|
2017-07-23 07:49:52 -05:00
|
|
|
import 'videojs-dock/dist/videojs-dock.es.js'
|
2017-10-25 09:43:19 -05:00
|
|
|
import { VideoDetails } from '../../../../shared'
|
2017-07-23 07:49:52 -05:00
|
|
|
|
2018-02-14 09:02:16 -06:00
|
|
|
async function loadVideoInfo (videoId: string): Promise<VideoDetails> {
|
2018-02-14 04:02:51 -06:00
|
|
|
const response = await fetch(window.location.origin + '/api/v1/videos/' + videoId)
|
2018-02-14 09:02:16 -06:00
|
|
|
return response.json()
|
2017-07-23 07:49:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const urlParts = window.location.href.split('/')
|
|
|
|
const videoId = urlParts[urlParts.length - 1]
|
|
|
|
|
2018-02-14 04:02:51 -06:00
|
|
|
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,
|
|
|
|
plugins: {
|
|
|
|
peertube: {
|
|
|
|
videoFiles: videoInfo.files,
|
|
|
|
playerElement: videoElement,
|
|
|
|
peerTubeLink: true
|
|
|
|
},
|
|
|
|
hotkeys: {
|
|
|
|
enableVolumeScroll: false
|
|
|
|
}
|
2018-01-09 09:30:39 -06:00
|
|
|
}
|
2017-10-06 03:40:09 -05:00
|
|
|
}
|
2018-02-14 04:02:51 -06:00
|
|
|
videojs('video-container', videojsOptions, function () {
|
|
|
|
const player = this
|
2017-07-23 07:49:52 -05:00
|
|
|
|
2018-02-14 04:02:51 -06:00
|
|
|
player.dock({
|
|
|
|
title: videoInfo.name
|
|
|
|
})
|
2017-07-23 07:49:52 -05:00
|
|
|
})
|
|
|
|
})
|
2018-02-14 09:02:16 -06:00
|
|
|
.catch(err => console.error(err))
|