mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Broadcast an already parsed JSON payload
This commit is contained in:
@@ -51,9 +51,6 @@ new Vue({
|
|||||||
|
|
||||||
this.ws.addEventListener("message", (ev) => {
|
this.ws.addEventListener("message", (ev) => {
|
||||||
const msg = JSON.parse(ev.data);
|
const msg = JSON.parse(ev.data);
|
||||||
if (msg.payload) {
|
|
||||||
msg.payload = JSON.parse(msg.payload);
|
|
||||||
}
|
|
||||||
this.setServerEvent(msg);
|
this.setServerEvent(msg);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,12 @@ const channels = {};
|
|||||||
async function notify (data) {
|
async function notify (data) {
|
||||||
if (data.channel in channels) {
|
if (data.channel in channels) {
|
||||||
data._received = new Date();
|
data._received = new Date();
|
||||||
|
try {
|
||||||
|
const json = JSON.parse(data.payload);
|
||||||
|
data.payload = json;
|
||||||
|
} catch {
|
||||||
|
// Ignore the error
|
||||||
|
}
|
||||||
for (const listener of channels[data.channel]) {
|
for (const listener of channels[data.channel]) {
|
||||||
listener(data);
|
listener(data);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user