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

95 lines
2.8 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'
2017-10-25 16:43:19 +02:00
import { VideoDetails } from '../../../../shared'
import { getVideojsOptions } from '../../assets/player/peertube-player'
2017-07-23 14:49:52 +02:00
function getVideoUrl (id: string) {
2018-02-14 18:21:14 +01:00
return window.location.origin + '/api/v1/videos/' + id
}
2018-04-19 18:06:59 +02:00
function loadVideoInfo (videoId: string): Promise<Response> {
return fetch(getVideoUrl(videoId))
}
function removeElement (element: HTMLElement) {
element.parentElement.removeChild(element)
}
function displayError (videoElement: HTMLVideoElement, text: string) {
// Remove video element
removeElement(videoElement)
document.title = 'Sorry - ' + text
const errorBlock = document.getElementById('error-block')
errorBlock.style.display = 'flex'
const errorText = document.getElementById('error-content')
errorText.innerHTML = text
}
function videoNotFound (videoElement: HTMLVideoElement) {
const text = 'This video does not exist.'
displayError(videoElement, text)
}
function videoFetchError (videoElement: HTMLVideoElement) {
const text = 'We cannot fetch the video. Please try again later.'
displayError(videoElement, text)
2017-07-23 14:49:52 +02:00
}
const urlParts = window.location.href.split('/')
const videoId = urlParts[urlParts.length - 1]
loadVideoInfo(videoId)
2018-04-19 18:06:59 +02:00
.then(async response => {
const videoContainerId = 'video-container'
const videoElement = document.getElementById(videoContainerId) as HTMLVideoElement
2018-04-19 18:06:59 +02:00
if (!response.ok) {
if (response.status === 404) return videoNotFound(videoElement)
return videoFetchError(videoElement)
}
const videoInfo: VideoDetails = await response.json()
2018-03-27 10:34:40 +02:00
let autoplay = false
2018-04-05 17:06:59 +02:00
let startTime = 0
2018-03-27 10:34:40 +02:00
try {
let params = new URL(window.location.toString()).searchParams
autoplay = params.has('autoplay') && (params.get('autoplay') === '1' || params.get('autoplay') === 'true')
2018-04-05 17:06:59 +02:00
const startTimeParamString = params.get('start')
const startTimeParamNumber = parseInt(startTimeParamString, 10)
if (isNaN(startTimeParamNumber) === false) startTime = startTimeParamNumber
2018-03-27 10:34:40 +02:00
} catch (err) {
console.error('Cannot get params from URL.', err)
}
const videojsOptions = getVideojsOptions({
2018-03-27 10:34:40 +02:00
autoplay,
inactivityTimeout: 1500,
videoViewUrl: getVideoUrl(videoId) + '/views',
playerElement: videoElement,
videoFiles: videoInfo.files,
videoDuration: videoInfo.duration,
enableHotkeys: true,
2018-04-03 15:11:46 +02:00
peertubeLink: true,
2018-04-05 17:06:59 +02:00
poster: window.location.origin + videoInfo.previewPath,
startTime
})
videojs(videoContainerId, videojsOptions, function () {
const player = this
2017-07-23 14:49:52 +02:00
player.dock({
title: videoInfo.name,
2018-03-19 17:35:01 +01:00
description: 'Uses P2P, others may know you are watching this video.'
})
2017-07-23 14:49:52 +02:00
})
})
2018-02-14 16:02:16 +01:00
.catch(err => console.error(err))