FreeDATA/gui_vue/src/components/chat_navbar.vue

147 lines
3.4 KiB
Vue
Raw Normal View History

2023-09-12 15:52:16 +00:00
<script setup lang="ts">
2023-10-03 13:15:17 +00:00
import { saveSettingsToFile } from "../js/settingsHandler";
2023-09-12 15:52:16 +00:00
2023-10-03 13:15:17 +00:00
import { setActivePinia } from "pinia";
import pinia from "../store/index";
2023-09-12 15:52:16 +00:00
setActivePinia(pinia);
2023-10-03 13:15:17 +00:00
import { useSettingsStore } from "../store/settingsStore.js";
2023-09-12 15:52:16 +00:00
const settings = useSettingsStore(pinia);
2023-10-03 13:15:17 +00:00
import { useStateStore } from "../store/stateStore.js";
2023-09-12 15:52:16 +00:00
const state = useStateStore(pinia);
2023-10-03 13:15:17 +00:00
import { useChatStore } from "../store/chatStore.js";
2023-09-14 20:45:29 +00:00
const chat = useChatStore(pinia);
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
PointElement,
LineElement,
Title,
Tooltip,
Legend,
2023-10-03 13:15:17 +00:00
BarElement,
} from "chart.js";
import { Line, Scatter, Bar } from "vue-chartjs";
import { ref, computed } from "vue";
ChartJS.register(
CategoryScale,
LinearScale,
PointElement,
Title,
Tooltip,
Legend,
2023-10-03 13:15:17 +00:00
BarElement,
);
var beaconHistogramOptions = {
type: "bar",
bezierCurve: false, //remove curves from your plot
scaleShowLabels: false, //remove labels
tooltipEvents: [], //remove trigger from tooltips so they will'nt be show
pointDot: false, //remove the points markers
scaleShowGridLines: true, //set to false to remove the grids background
maintainAspectRatio: true,
plugins: {
legend: {
display: false,
},
2023-10-03 13:15:17 +00:00
},
scales: {
x: {
position: "bottom",
display: false,
min: -10,
max: 15,
ticks: {
display: false,
},
},
y: {
display: false,
min: -5,
max: 10,
ticks: {
display: false,
},
2023-10-03 13:15:17 +00:00
},
},
};
//let dataArray = new Array(25).fill(0)
//dataArray = dataArray.add([-3, 10, 8, 5, 3, 0, -5])
//let dataArray1 = dataArray.shift(2)
//console.log(dataArray1)
//[-3, 10, 8, 5, 3, 0, -5]
2023-10-03 13:15:17 +00:00
try {
chat.beaconLabelArray = Object.values(
chat.sorted_beacon_list["DJ2LS-0"].timestamp,
);
chat.beaconDataArray = Object.values(chat.sorted_beacon_list["DJ2LS-0"].snr);
} catch (e) {
console.log(e);
2023-10-01 11:24:54 +00:00
2023-10-03 13:15:17 +00:00
var beaconLabels = [];
var beaconData = [];
2023-10-01 11:24:54 +00:00
}
const beaconHistogramData = computed(() => ({
2023-10-03 13:15:17 +00:00
labels: chat.beaconLabelArray,
datasets: [
2023-10-03 13:15:17 +00:00
{ data: chat.beaconDataArray, tension: 0.1, borderColor: "rgb(0, 255, 0)" },
],
}));
function newChat(obj) {
let callsign = document.getElementById("chatModuleNewDxCall").value;
callsign = callsign.toUpperCase();
chat.callsign_list.add(callsign);
}
2023-09-12 15:52:16 +00:00
</script>
<template>
2023-10-03 13:15:17 +00:00
<nav class="navbar bg-body-tertiary border-bottom">
<div class="container">
<div class="row w-100">
<div class="col-4 p-0 me-2">
<div class="input-group bottom-0 m-0">
<input
class="form-control w-50"
maxlength="9"
style="text-transform: uppercase"
id="chatModuleNewDxCall"
placeholder="DX CALL"
/>
<button
class="btn btn-sm btn-success"
id="createNewChatButton"
type="button"
title="Start a new chat (enter dx call sign first)"
@click="newChat()"
>
new chat
<i class="bi bi-pencil-square" style="font-size: 1.2rem"></i>
</button>
</div>
</div>
<div class="col-7 ms-2 p-0">
<!-- right side of chat nav bar-->
{{ beaconData }}
<Bar
:data="beaconHistogramData"
:options="beaconHistogramOptions"
width="300"
style="height: 100%"
/>
</div>
</div>
</div>
</nav>
2023-09-12 15:52:16 +00:00
</template>