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

61 lines
1.9 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-02-14 16:02:16 +01:00
async function loadVideoInfo (videoId: string): Promise<VideoDetails> {
const response = await fetch(getVideoUrl(videoId))
2018-02-14 16:02:16 +01:00
return response.json()
2017-07-23 14:49:52 +02:00
}
const urlParts = window.location.href.split('/')
const videoId = urlParts[urlParts.length - 1]
loadVideoInfo(videoId)
.then(videoInfo => {
const videoContainerId = 'video-container'
const videoElement = document.getElementById(videoContainerId) as HTMLVideoElement
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))