owncast/webroot/js/app.js

127 lines
3 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-02 23:56:59 +03:00
},
});
window.messagesContainer = new Vue({
el: "#messages-container",
data: {
messages: []
}
})
window.chatForm = new Vue({
2020-06-10 00:15:00 +03:00
el: "#chatForm",
2020-06-02 23:56:59 +03:00
data: {
message: {
author: "",//localStorage.author || "Viewer" + (Math.floor(Math.random() * 42) + 1),
2020-06-02 23:56:59 +03:00
body: ""
}
},
methods: {
submitChatForm: function (e) {
2020-06-14 06:15:31 +03:00
const message = new Message(this.message);
message.id = uuidv4();
localStorage.author = message.author;
const messageJSON = JSON.stringify(message);
window.ws.send(messageJSON);
e.preventDefault();
this.message.body = "";
2020-06-02 23:56:59 +03:00
}
}
});
2020-06-14 06:15:31 +03:00
var appMessagingMisc = new Messaging();
appMessagingMisc.init();
2020-06-02 23:56:59 +03:00
}
async function getStatus() {
let url = "https://util.real-ity.com:8042/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."
app.viewerCount = status.viewerCount
2020-06-14 08:45:22 +03:00
app.sessionMaxViewerCount = status.sessionMaxViewerCount
app.overallMaxViewerCount = status.overallMaxViewerCount
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)
2020-06-02 23:56:59 +03:00
const protocol = location.protocol == "https:" ? "wss" : "ws"
var ws = new WebSocket("wss://util.real-ity.com:8042/entry")
2020-06-02 23:56:59 +03:00
ws.onmessage = (e) => {
const model = JSON.parse(e.data)
const message = new Message(model)
const existing = this.messagesContainer.messages.filter(function (item) {
return item.id === message.id
})
if (existing.length === 0 || !existing) {
this.messagesContainer.messages.push(message)
scrollSmoothToBottom("messages-container")
}
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
function scrollSmoothToBottom(id) {
2020-06-14 06:15:31 +03:00
const div = document.getElementById(id);
2020-06-02 23:56:59 +03:00
$('#' + id).animate({
scrollTop: div.scrollHeight - div.clientHeight
}, 500)
}
function uuidv4() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
const r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}