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-03-30 10:40:00 -05:00
|
|
|
|
2017-10-25 09:43:19 -05:00
|
|
|
import { VideoDetails } from '../../../../shared'
|
2018-03-30 10:40:00 -05:00
|
|
|
import { getVideojsOptions } from '../../assets/player/peertube-player'
|
2017-07-23 07:49:52 -05:00
|
|
|
|
2018-02-14 10:16:32 -06:00
|
|
|
function getVideoUrl (id: string) {
|
2018-02-14 11:21:14 -06:00
|
|
|
return window.location.origin + '/api/v1/videos/' + id
|
2018-02-14 10:16:32 -06:00
|
|
|
}
|
|
|
|
|
2018-02-14 09:02:16 -06:00
|
|
|
async function loadVideoInfo (videoId: string): Promise<VideoDetails> {
|
2018-02-14 10:16:32 -06:00
|
|
|
const response = await fetch(getVideoUrl(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 => {
|
2018-03-30 10:40:00 -05:00
|
|
|
const videoContainerId = 'video-container'
|
|
|
|
|
|
|
|
const videoElement = document.getElementById(videoContainerId) as HTMLVideoElement
|
|
|
|
videoElement.poster = window.location.origin + videoInfo.previewPath
|
2018-02-14 04:02:51 -06:00
|
|
|
|
2018-03-27 03:34:40 -05:00
|
|
|
let autoplay = false
|
|
|
|
|
|
|
|
try {
|
|
|
|
let params = new URL(window.location.toString()).searchParams
|
|
|
|
autoplay = params.has('autoplay') && (params.get('autoplay') === '1' || params.get('autoplay') === 'true')
|
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot get params from URL.', err)
|
|
|
|
}
|
|
|
|
|
2018-03-30 10:40:00 -05:00
|
|
|
const videojsOptions = getVideojsOptions({
|
2018-03-27 03:34:40 -05:00
|
|
|
autoplay,
|
2018-03-30 10:40:00 -05:00
|
|
|
inactivityTimeout: 1500,
|
|
|
|
videoViewUrl: getVideoUrl(videoId) + '/views',
|
|
|
|
playerElement: videoElement,
|
|
|
|
videoFiles: videoInfo.files,
|
|
|
|
videoDuration: videoInfo.duration,
|
|
|
|
enableHotkeys: true,
|
|
|
|
peertubeLink: true
|
|
|
|
})
|
|
|
|
videojs(videoContainerId, videojsOptions, function () {
|
2018-02-14 04:02:51 -06:00
|
|
|
const player = this
|
2017-07-23 07:49:52 -05:00
|
|
|
|
2018-02-14 04:02:51 -06:00
|
|
|
player.dock({
|
2018-02-28 08:33:45 -06:00
|
|
|
title: videoInfo.name,
|
2018-03-19 11:35:01 -05:00
|
|
|
description: 'Uses P2P, others may know you are watching this video.'
|
2018-02-14 04:02:51 -06:00
|
|
|
})
|
2017-07-23 07:49:52 -05:00
|
|
|
})
|
|
|
|
})
|
2018-02-14 09:02:16 -06:00
|
|
|
.catch(err => console.error(err))
|