owncast/webroot/js/app.js

80 lines
2.0 KiB
JavaScript
Raw Normal View History

async function setupApp() {
Vue.filter('plural', function (string, count) {
if (count === 1) {
2020-06-14 05:15:31 +02:00
return string;
} else {
2020-06-14 05:15:31 +02:00
return string + "s";
}
})
2020-06-02 22:56:59 +02:00
window.app = new Vue({
el: "#app-container",
2020-06-02 22:56:59 +02:00
data: {
streamStatus: "",
viewerCount: 0,
2020-06-14 10:10:26 +02:00
sessionMaxViewerCount: 0,
overallMaxViewerCount: 0,
messages: [],
description: "",
title: "",
2020-06-02 22:56:59 +02:00
},
});
2020-06-15 06:14:42 +02:00
// init messaging interactions
2020-06-14 05:15:31 +02:00
var appMessagingMisc = new Messaging();
appMessagingMisc.init();
2020-06-15 00:18:43 +02:00
const config = await new Config().init();
app.description = autoLink(config.description, { embed: false });
app.title = config.title;
2020-06-02 22:56:59 +02:00
}
2020-06-14 05:15:31 +02:00
var websocketReconnectTimer;
2020-06-02 22:56:59 +02: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 22:56:59 +02: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.app.messages.filter(function (item) {
return item.id === message.id
})
if (existing.length === 0 || !existing) {
this.app.messages.push(message);
2020-06-14 10:10:26 +02:00
setTimeout(() => { jumpToBottom("#messages-container"); } , 50); // could be better. is there a sort of Vue "componentDidUpdate" we can do this on?
}
2020-06-02 22:56:59 +02: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-16 02:40:12 +02:00
window.ws = ws;
2020-06-02 22:56:59 +02:00
}
setupApp()
2020-06-09 23:15:00 +02:00
setupWebsocket()
2020-06-02 22:56:59 +02:00