[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-11-12 21:35:32 +00:00
parent 3349d09654
commit 3c8e77a237
No known key found for this signature in database
GPG key ID: B66B2D63282C190F

View file

@ -119,39 +119,47 @@ export function stateDispatcher(data) {
export function eventDispatcher(data) {
data = JSON.parse(data);
// break early if we received a dummy callsign
// thats a kind of hotfix, as long as the modem isnt handling this better
if (data["dxcallsign"] == "AA0AA-0" || data["dxcallsign"] == "ZZ9YY-0") {
return;
// break early if we received a dummy callsign
// thats a kind of hotfix, as long as the modem isnt handling this better
if (data["dxcallsign"] == "AA0AA-0" || data["dxcallsign"] == "ZZ9YY-0") {
return;
}
// get ptt state as a first test
stateStore.ptt_state = data.ptt;
// catch modem related events
if (data["freedata"] == "modem-event") {
switch (data["event"]) {
case "start":
displayToast("success", "bi-arrow-left-right", "Modem started", 5000);
return;
case "stop":
displayToast("success", "bi-arrow-left-right", "Modem stopped", 5000);
return;
case "restart":
displayToast(
"secondary",
"bi-bootstrap-reboot",
"Modem restarted",
5000,
);
return;
case "failed":
displayToast(
"danger",
"bi-bootstrap-reboot",
"Modem startup failed | bad config?",
5000,
);
return;
}
}
// get ptt state as a first test
stateStore.ptt_state = data.ptt;
// catch modem related events
if (data["freedata"] == "modem-event") {
switch (data["event"]) {
case "start":
displayToast("success", "bi-arrow-left-right", "Modem started", 5000);
return;
case "stop":
displayToast("success", "bi-arrow-left-right", "Modem stopped", 5000);
return;
case "restart":
displayToast("secondary", "bi-bootstrap-reboot", "Modem restarted", 5000);
return;
case "failed":
displayToast("danger", "bi-bootstrap-reboot", "Modem startup failed | bad config?", 5000);
return;
}
}
/*
/*
var message = "";
if (data["freedata"] == "modem-message") {