Add code for re-checking if a user has gone live since loading the page

Also exempt static files from link rewriting in the SPA
There may be more in here.. It's been a long break halfway through this commit.
pull/18/head
knotteye 3 years ago
parent f703d5af7f
commit 8cb78a7dd6
  1. 5
      site/index.js
  2. 6
      templates/user.njk

@ -190,6 +190,8 @@ async function initPlayer(usr) {
shaka.polyfill.installAll();
shakaPolyFilled = true;
}
var live = JSON.parse(await makeRequest("GET", "/api/"+usr+"/config")).live;
if(live){
// Create a Player instance.
const video = document.getElementById('video');
const player = new shaka.Player(video);
@ -212,6 +214,9 @@ async function initPlayer(usr) {
// onError is executed if the asynchronous load fails.
onError(e);
}
} else {
setTimeout(initPlayer, 5000, usr);
}
}
function onErrorEvent(event) {

@ -5,10 +5,13 @@
shakaPolyFilled = false;
var manifestUri = document.location.protocol+'//'+document.location.host+'/live/{{ username }}/index.mpd';
async function initPlayer() {
console.log('Trying to initialize player.');
if(!shakaPolyFilled){
shaka.polyfill.installAll();
shakaPolyFilled = true;
}
var live = JSON.parse(await makeRequest("GET", "/api/{{ username }}/config")).live;
if(live){
// Create a Player instance.
const video = document.getElementById('video');
const player = new shaka.Player(video);
@ -31,6 +34,9 @@ async function initPlayer() {
// onError is executed if the asynchronous load fails.
onError(e);
}
} else {
setTimeout(initPlayer, 5000);
}
}
function onErrorEvent(event) {