Update connection indicator

This commit is contained in:
Yohann D'ANELLO 2020-11-09 16:23:13 +01:00
parent 2085d13c0d
commit e74acf04f7
1 changed files with 9 additions and 0 deletions

View File

@ -52,7 +52,16 @@ export function initViewerPage(stream, viewersCounterRefreshPeriod, posterUrl) {
}
]
});
player.on("stateChanged", function (prevstate, newstate) {
if (newstate === "loading") {
document.getElementById("connectionIndicator").style.fill = '#ffc107'
}
if (newstate === "ready" || newstate === "play") {
document.getElementById("connectionIndicator").style.fill = '#28a745'
}
})
player.on("error", function (error) {
document.getElementById("connectionIndicator").style.fill = '#dc3545'
if (error.code === 501 || error.code === 406) {
// Clear messages
const errorMsg = document.getElementsByClassName("op-message-text")[0]