FreeDATA/gui/src/store/settingsStore.js

86 lines
1.7 KiB
JavaScript
Raw Normal View History

2023-11-18 15:59:19 +00:00
import { reactive, watch } from "vue";
2023-10-03 13:15:17 +00:00
2023-11-18 09:44:17 +00:00
import { getConfig, setConfig } from "../js/api";
2023-10-04 17:54:50 +00:00
2023-11-18 15:53:54 +00:00
export const settingsStore = reactive({
local: {
host: "127.0.0.1",
port: "5000",
2023-11-18 15:59:19 +00:00
enable_fft: false,
2023-11-18 15:53:54 +00:00
},
2023-11-18 09:44:17 +00:00
remote: {
AUDIO: {
enable_auto_tune: false,
input_device: "",
output_device: "",
rx_audio_level: 0,
tx_audio_level: 0,
},
MESH: {
enable_protocol: false,
},
MODEM: {
enable_fft: false,
enable_fsk: false,
enable_low_bandwidth_mode: false,
respond_to_cq: false,
rx_buffer_size: 0,
tuning_range_fmax: 0,
tuning_range_fmin: 0,
tx_delay: 0,
2023-11-18 15:59:19 +00:00
beacon_interval: 0,
2023-11-19 08:56:00 +00:00
enable_hamc: false,
enable_morse_identifier: false,
2023-11-18 09:44:17 +00:00
},
RADIO: {
2023-11-18 11:57:36 +00:00
control: "disabled",
model_id: 0,
serial_port: "",
serial_speed: "",
data_bits: 0,
stop_bits: 0,
serial_handshake: "",
ptt_port: "",
ptt_type: "",
serial_dcd: "",
serial_dtr: "",
},
RIGCTLD: {
ip: "127.0.0.1",
port: 0,
path: "",
command: "",
arguments: "",
2023-11-18 09:44:17 +00:00
},
STATION: {
enable_explorer: false,
enable_stats: false,
mycall: "",
2023-11-18 11:57:36 +00:00
myssid: 0,
2023-11-18 09:44:17 +00:00
mygrid: "",
ssid_list: [],
},
TCI: {
tci_ip: "127.0.0.1",
tci_port: 0,
},
},
2023-11-18 15:53:54 +00:00
});
2023-10-03 13:15:17 +00:00
2023-11-18 09:44:17 +00:00
export function onChange() {
setConfig(settingsStore.remote).then((conf) => {
settingsStore.remote = conf;
});
}
2023-11-18 15:53:54 +00:00
export function getRemote() {
2023-11-20 13:24:45 +00:00
return getConfig().then((conf) => {
2023-11-18 15:53:54 +00:00
settingsStore.remote = conf;
});
}
2023-09-05 17:35:54 +00:00
2023-11-18 16:12:05 +00:00
watch(settingsStore.local, (oldValue, newValue) => {
2023-11-18 15:59:19 +00:00
// TODO handle local file saving
const cenas = newValue;
2023-11-18 16:12:05 +00:00
});