[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-11-18 16:12:05 +00:00
parent a2130fab5e
commit 2582972c34
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
17 changed files with 39 additions and 42 deletions

View file

@ -108,7 +108,7 @@ function newChat() {
let callsign = this.newChatCall.value;
callsign = callsign.toUpperCase().trim();
if (callsign === "") return;
startChatWithNewStation(callsign);
startChatWithNewStation(callsign);
//updateAllChat(false);
this.newChatCall.value = "";
}

View file

@ -6,7 +6,7 @@ import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
import { useStateStore } from "../store/stateStore.js";
const state = useStateStore(pinia);

View file

@ -77,9 +77,7 @@ function set_hamlib_rf_level() {
id="dropdownMenuButton"
data-bs-toggle="dropdown"
aria-expanded="false"
>
</button>
></button>
<!-- Dropdown Menu -->
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">

View file

@ -8,7 +8,7 @@ setActivePinia(pinia);
import { useChatStore } from "../store/chatStore.js";
const chat = useChatStore(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
import {
deleteChatByCallsign,

View file

@ -1,10 +1,9 @@
<script setup lang="ts">
import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
function saveSettings() {
saveSettingsToFile();

View file

@ -6,8 +6,7 @@ setActivePinia(pinia);
import { useStateStore } from "../store/stateStore.js";
const state = useStateStore(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
</script>
<template>

View file

@ -5,7 +5,7 @@ import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
</script>
<template>

View file

@ -5,7 +5,7 @@ import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
</script>
<template>

View file

@ -5,7 +5,7 @@ import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
function saveSettings() {
saveSettingsToFile();

View file

@ -318,7 +318,10 @@ import { serialDeviceOptions } from "../js/deviceFormHelper";
@change="onChange"
v-model="settings.remote.RADIO.serial_port"
>
<option v-for="option in serialDeviceOptions()" v-bind:value="option.port">
<option
v-for="option in serialDeviceOptions()"
v-bind:value="option.port"
>
{{ option.port }}
</option>
</select>

View file

@ -6,7 +6,6 @@ import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings, onChange } from "../store/settingsStore.js";
</script>
<template>

View file

@ -13,12 +13,12 @@ const chat = useChatStore(pinia);
import { useStateStore } from "../store/stateStore.js";
const state = useStateStore(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
import { displayToast } from "./popupHandler.js";
//const FD = require("./src/js/freedata.js");
import { btoa_FD,sortByProperty } from "./freedata.js";
import { btoa_FD, sortByProperty } from "./freedata.js";
// define default message object
interface Attachment {
@ -592,7 +592,7 @@ function addObjToDatabase(newobj) {
console.log("new database entry");
console.log(response);
if (newobj.command === "msg" || newobj.command==="newchat") {
if (newobj.command === "msg" || newobj.command === "newchat") {
chat.unsorted_chat_list.push(newobj);
chat.sorted_chat_list = sortChatList();
}
@ -696,27 +696,26 @@ function deleteFromDatabaseByCallsign(callsign) {
/**
* Add a newuser to the database, for when newuser button is clicked
* @param {string} call callsign of new user
*/
*/
export function startChatWithNewStation(call) {
let newchat: newChatDefaultObject = {
command: "newchat",
is_new: false,
timestamp: Math.floor((new Date()).getTime() / 1000),
dxcallsign: call,
};
addObjToDatabase(newchat);
if (!chat.sorted_beacon_list[call]) {
// If not, initialize it with an empty array for snr values
chat.sorted_beacon_list[call] = {
call,
snr: [],
timestamp: [],
command: "newchat",
is_new: false,
timestamp: Math.floor(new Date().getTime() / 1000),
dxcallsign: call,
};
chat.callsign_list.add(call);
}
//chat.unsorted_chat_list.push(newchat);
//chat.sorted_chat_list = sortChatList();
addObjToDatabase(newchat);
if (!chat.sorted_beacon_list[call]) {
// If not, initialize it with an empty array for snr values
chat.sorted_beacon_list[call] = {
call,
snr: [],
timestamp: [],
};
chat.callsign_list.add(call);
}
//chat.unsorted_chat_list.push(newchat);
//chat.sorted_chat_list = sortChatList();
}
// function for handling a received beacon

View file

@ -16,7 +16,7 @@ setActivePinia(pinia);
import { useStateStore } from "../store/stateStore.js";
const stateStore = useStateStore(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
export function connectionFailed(endpoint, event) {
stateStore.modem_connection = "disconnected";

View file

@ -141,4 +141,4 @@ export function processModemConfig(data) {
}
}
}
}
}

View file

@ -18,7 +18,7 @@ setActivePinia(pinia);
import { useStateStore } from "../store/stateStore.js";
const stateStore = useStateStore(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
var client = new net.Socket();
var socketchunk = ""; // Current message, per connection.

View file

@ -4,7 +4,7 @@ import { setActivePinia } from "pinia";
import pinia from "../store/index";
setActivePinia(pinia);
import { settingsStore as settings} from "../store/settingsStore.js";
import { settingsStore as settings } from "../store/settingsStore.js";
var spectrum = new Object();

View file

@ -81,7 +81,7 @@ if (settingsStore.remote.STATION.mycall === "") {
getRemote();
}
watch (settingsStore.local, (oldValue, newValue) => {
watch(settingsStore.local, (oldValue, newValue) => {
// TODO handle local file saving
const cenas = newValue;
})
});