[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-12-10 20:58:12 +00:00
parent 6e16a1bc07
commit ee41286ff7
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
3 changed files with 19 additions and 28 deletions

View file

@ -179,11 +179,6 @@ export default {
// init waterfall
localSpectrum = initWaterfall("waterfall-main");
},
};
</script>

View file

@ -21,7 +21,7 @@ export function initWaterfall(id) {
export function addDataToWaterfall(data) {
data = JSON.parse(data);
spectrums.forEach(element => {
spectrums.forEach((element) => {
//console.log(element);
element.addData(data);
});
@ -32,13 +32,11 @@ export function addDataToWaterfall(data) {
* @param {number} index colormap index to use
*/
export function setColormap() {
let index = settings.local.wf_theme;
if (isNaN(index)) index = 0;
console.log("Setting waterfall colormap to " + index)
spectrums.forEach(element => {
console.log("Setting waterfall colormap to " + index);
spectrums.forEach((element) => {
//console.log(element);
element.setColorMap(index);
});
}

View file

@ -2,9 +2,8 @@ import { reactive, ref, watch } from "vue";
import { getConfig, setConfig } from "../js/api";
var nconf = require( "nconf");
nconf.file({file: 'config/config.json'});
var nconf = require("nconf");
nconf.file({ file: "config/config.json" });
// +++
//GUI DEFAULT SETTINGS........
@ -14,19 +13,19 @@ nconf.file({file: 'config/config.json'});
// +++
nconf.defaults({
local: {
host: "127.0.0.1",
port: "5000",
enable_fft: true,
spectrum: "waterfall",
wf_theme: 2,
theme: "default_light",
high_graphics: true,
update_channel: "alpha",
enable_sys_notification: false,
}
host: "127.0.0.1",
port: "5000",
enable_fft: true,
spectrum: "waterfall",
wf_theme: 2,
theme: "default_light",
high_graphics: true,
update_channel: "alpha",
enable_sys_notification: false,
},
});
nconf.required(['local:host','local:port']);
nconf.required(["local:host", "local:port"]);
export const settingsStore = reactive({
local: {
@ -100,7 +99,7 @@ export const settingsStore = reactive({
});
//Save settings for GUI to config file
settingsStore.local = nconf.get('local');
settingsStore.local = nconf.get("local");
saveSettingsToConfig();
export function onChange() {
@ -121,8 +120,7 @@ watch(settingsStore.local, (oldValue, newValue) => {
});
function saveSettingsToConfig() {
nconf.set('local',settingsStore.local);
nconf.set("local", settingsStore.local);
nconf.save();
console.log("Settings saved!");
};
}