[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-11-17 21:36:37 +00:00
parent d84dc12fb0
commit 2e4b06732e
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
3 changed files with 26 additions and 15 deletions

View file

@ -1,5 +1,4 @@
<script setup lang="ts">
import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
@ -12,11 +11,15 @@ const state = useStateStore(pinia);
function getOverallHealth() {
//Return a number indicating health for icon bg color; lower the number the healthier
let health = 0
let health = 0;
if (state.modem_connection !== "connected") health += 5;
if (!state.is_modem_running) health += 3;
if (settings.radiocontrol==="rigctld" && ( state.rigctld_started === undefined || state.rigctld_started === "false")) health += 2;
if (process.env.FDUpdateAvail === '1') health+=1;
if (
settings.radiocontrol === "rigctld" &&
(state.rigctld_started === undefined || state.rigctld_started === "false")
)
health += 2;
if (process.env.FDUpdateAvail === "1") health += 1;
return health;
}
</script>
@ -27,8 +30,13 @@ function getOverallHealth() {
data-bs-toggle="modal"
data-bs-target="#modemCheck"
title="Check FreeDATA status"
:class=" getOverallHealth() >4 ? 'bg-danger' : getOverallHealth() < 2 ? '' : 'bg-warning'"
:class="
getOverallHealth() > 4
? 'bg-danger'
: getOverallHealth() < 2
? ''
: 'bg-warning'
"
><i class="bi bi-activity h3"></i>
</a>
</template>

View file

@ -28,7 +28,10 @@ export function stateDispatcher(data) {
stateStore.modem_connection = "connected";
if (data["freedata-message"] == "state-change" || data["freedata-message"] == "state" ) {
if (
data["freedata-message"] == "state-change" ||
data["freedata-message"] == "state"
) {
stateStore.channel_busy = data["channel_busy"];
stateStore.is_codec2_traffic = data["is_codec2_traffic"];
stateStore.is_modem_running = data["is_modem_running"];