diff --git a/gui_vue/package.json b/gui_vue/package.json index db33307a..8c7ce070 100644 --- a/gui_vue/package.json +++ b/gui_vue/package.json @@ -59,7 +59,7 @@ "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.7.4", "@vitejs/plugin-vue": "^4.4.0", - "electron": "^26.0.0", + "electron": "^27.0.0", "electron-builder": "^24.6.3", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", diff --git a/gui_vue/src/components/chat_conversations.vue b/gui_vue/src/components/chat_conversations.vue index 6fff4759..382844a0 100644 --- a/gui_vue/src/components/chat_conversations.vue +++ b/gui_vue/src/components/chat_conversations.vue @@ -44,8 +44,6 @@ function chatSelected(callsign) { chat.beaconLabelArray = []; chat.beaconDataArray = []; } - - console.log(chat.beaconDataArray); } diff --git a/gui_vue/src/components/chat_messages_sent.vue b/gui_vue/src/components/chat_messages_sent.vue index f663ef2f..844e178d 100644 --- a/gui_vue/src/components/chat_messages_sent.vue +++ b/gui_vue/src/components/chat_messages_sent.vue @@ -8,6 +8,16 @@ > + + + + + @@ -53,18 +63,32 @@ + + + + + + + + + + + + + + {{chat.selectedMessageObject["uuid"]}} + + + + +{{chat.selectedMessageObject}} + + + Status + {{chat.selectedMessageObject["status"]}} + + + + Attempts + {{chat.selectedMessageObject["attempt"]}} + + + + Bytes per Minute + {{chat.selectedMessageObject["bytesperminute"]}} + + + + + + + + + { ]); var selectedCallsign = ref(); + // we need a default value in our ref because of our message info modal + var selectedMessageObject = ref({ + "command": "msg", + "hmac_signed": false, + "percent": 0, + "is_new": false, + "_id": "2ead6698", + "timestamp": 1697289795, + "dxcallsign": "DJ2LS-0", + "dxgrid": "null", + "msg": "test", + "checksum": "", + "type": "transmit", + "status": "transmitting", + "attempt": 1, + "uuid": "2ead6698", + "duration": 0, + "nacks": 0, + "speed_list": "null", + "_attachments": { + "": { + "content_type": "text", + "data": "" + } + } +}); var inputText = ref(); var inputFile = ref(); var inputFileName = ref(); @@ -38,6 +64,7 @@ export const useChatStore = defineStore("chatStore", () => { return { selectedCallsign, + selectedMessageObject, inputText, chat_filter, callsign_list,