mirror of https://github.com/Chocobozzz/PeerTube
Use fetch instead of XMLHttpRequest (#292)
parent
0cd4344f3c
commit
f2f1118f17
|
@ -6,31 +6,16 @@ import '../../assets/player/peertube-videojs-plugin'
|
||||||
import 'videojs-dock/dist/videojs-dock.es.js'
|
import 'videojs-dock/dist/videojs-dock.es.js'
|
||||||
import { VideoDetails } from '../../../../shared'
|
import { VideoDetails } from '../../../../shared'
|
||||||
|
|
||||||
function loadVideoInfo (videoId: string, callback: (err: Error, res?: VideoDetails) => void) {
|
async function loadVideoInfo (videoId: string) {
|
||||||
const xhttp = new XMLHttpRequest()
|
const response = await fetch(window.location.origin + '/api/v1/videos/' + videoId)
|
||||||
xhttp.onreadystatechange = function () {
|
return response.json();
|
||||||
if (this.readyState === 4 && this.status === 200) {
|
|
||||||
const json = JSON.parse(this.responseText)
|
|
||||||
return callback(null, json)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
xhttp.onerror = err => callback(err.error)
|
|
||||||
|
|
||||||
const url = window.location.origin + '/api/v1/videos/' + videoId
|
|
||||||
xhttp.open('GET', url, true)
|
|
||||||
xhttp.send()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const urlParts = window.location.href.split('/')
|
const urlParts = window.location.href.split('/')
|
||||||
const videoId = urlParts[urlParts.length - 1]
|
const videoId = urlParts[urlParts.length - 1]
|
||||||
|
|
||||||
loadVideoInfo(videoId, (err, videoInfo) => {
|
loadVideoInfo(videoId)
|
||||||
if (err) {
|
.then(videoInfo => {
|
||||||
console.error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const videoElement = document.getElementById('video-container') as HTMLVideoElement
|
const videoElement = document.getElementById('video-container') as HTMLVideoElement
|
||||||
const previewUrl = window.location.origin + videoInfo.previewPath
|
const previewUrl = window.location.origin + videoInfo.previewPath
|
||||||
videoElement.poster = previewUrl
|
videoElement.poster = previewUrl
|
||||||
|
@ -56,4 +41,7 @@ loadVideoInfo(videoId, (err, videoInfo) => {
|
||||||
title: videoInfo.name
|
title: videoInfo.name
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
.catch(err => {
|
||||||
|
console.error(err);
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue