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

74 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'
2018-01-10 17:18:12 +01:00
import 'videojs-hotkeys'
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
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 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,
videoViewUrl: getVideoUrl(videoId) + '/views',
videoDuration: videoInfo.duration
},
hotkeys: {
enableVolumeScroll: false
}
},
controlBar: {
children: [
'playToggle',
'currentTimeDisplay',
'timeDivider',
'durationDisplay',
'liveDisplay',
'flexibleWidthSpacer',
'progressControl',
'webTorrentButton',
'muteToggle',
'volumeControl',
'resolutionMenuButton',
'peerTubeLinkButton',
'fullscreenToggle'
]
2018-01-09 16:30:39 +01:00
}
}
videojs('video-container', videojsOptions, function () {
const player = this
2017-07-23 14:49:52 +02:00
player.dock({
title: videoInfo.name,
description: 'Use P2P, other may know you are watching that video.'
})
2017-07-23 14:49:52 +02:00
})
})
2018-02-14 16:02:16 +01:00
.catch(err => console.error(err))