thelounge/client/js/socket-events/setting.js
2020-03-21 22:55:36 +02:00

25 lines
607 B
JavaScript

"use strict";
import socket from "../socket";
import store from "../store";
socket.on("setting:new", function (data) {
const name = data.name;
const value = data.value;
store.dispatch("settings/update", {name, value, sync: false});
});
socket.on("setting:all", function (settings) {
const serverHasSettings = Object.keys(settings).length > 0;
store.commit("serverHasSettings", serverHasSettings);
if (serverHasSettings) {
for (const name in settings) {
store.dispatch("settings/update", {name, value: settings[name], sync: false});
}
} else {
store.dispatch("settings/syncAll");
}
});