owncast/webroot/js/app.js

105 lines
2.6 KiB
JavaScript
Raw Normal View History

2020-06-02 23:56:59 +03:00
function setupApp() {
Vue.filter('plural', function (string, count) {
if (count === 1) {
2020-06-14 06:15:31 +03:00
return string;
} else {
2020-06-14 06:15:31 +03:00
return string + "s";
}
})
2020-06-02 23:56:59 +03:00
window.app = new Vue({
2020-06-14 06:15:31 +03:00
el: "#stream-info",
2020-06-02 23:56:59 +03:00
data: {
streamStatus: "",
viewerCount: 0,
2020-06-14 11:10:26 +03:00
sessionMaxViewerCount: 0,
overallMaxViewerCount: 0,
2020-06-02 23:56:59 +03:00
},
});
window.messagesContainer = new Vue({
el: "#messages-container",
data: {
messages: []
}
})
2020-06-14 09:38:09 +03:00
window.VIDEOJS_NO_DYNAMIC_STYLE = true;
2020-06-14 06:15:31 +03:00
var appMessagingMisc = new Messaging();
appMessagingMisc.init();
2020-06-15 01:18:43 +03:00
const config = new Config();
2020-06-02 23:56:59 +03:00
}
async function getStatus() {
let url = "https://goth.land/status";
2020-06-02 23:56:59 +03:00
try {
const response = await fetch(url);
const status = await response.json(); // read response body and parse as JSON
2020-06-02 23:56:59 +03:00
app.streamStatus = status.online
? "Stream is online."
: "Stream is offline."
2020-06-14 11:10:26 +03:00
app.viewerCount = status.viewerCount;
app.sessionMaxViewerCount = status.sessionMaxViewerCount;
app.overallMaxViewerCount = status.overallMaxViewerCount;
2020-06-14 08:45:22 +03:00
2020-06-02 23:56:59 +03:00
} catch (e) {
app.streamStatus = "Stream server is offline."
app.viewerCount = 0
2020-06-02 23:56:59 +03:00
}
}
2020-06-14 06:15:31 +03:00
var websocketReconnectTimer;
2020-06-02 23:56:59 +03:00
function setupWebsocket() {
clearTimeout(websocketReconnectTimer)
// Uncomment to point to somewhere other than goth.land
// const protocol = location.protocol == "https:" ? "wss" : "ws"
// var ws = new WebSocket(protocol + "://" + location.host + "/entry")
var ws = new WebSocket("wss://goth.land/entry")
2020-06-02 23:56:59 +03:00
ws.onmessage = (e) => {
const model = JSON.parse(e.data)
// Ignore non-chat messages (such as keepalive PINGs)
if (model.type !== SocketMessageTypes.CHAT) { return; }
const message = new Message(model)
const existing = this.messagesContainer.messages.filter(function (item) {
return item.id === message.id
})
if (existing.length === 0 || !existing) {
2020-06-14 10:24:26 +03:00
this.messagesContainer.messages.push(message);
2020-06-14 11:10:26 +03:00
setTimeout(() => { jumpToBottom("#messages-container"); } , 50); // could be better. is there a sort of Vue "componentDidUpdate" we can do this on?
}
2020-06-02 23:56:59 +03:00
}
ws.onclose = (e) => {
// connection closed, discard old websocket and create a new one in 5s
ws = null
console.log("Websocket closed.")
websocketReconnectTimer = setTimeout(setupWebsocket, 5000)
}
// On ws error just close the socket and let it re-connect again for now.
ws.onerror = (e) => {
console.log("Websocket error: ", e)
ws.close()
}
2020-06-02 23:56:59 +03:00
window.ws = ws
}
setupApp()
getStatus()
2020-06-10 00:15:00 +03:00
setupWebsocket()
// setInterval(getStatus, 5000)
2020-06-02 23:56:59 +03:00