mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Move Tx progress updates to tnc message status
This commit is contained in:
parent
327284287c
commit
d43d6f5c5a
2 changed files with 9 additions and 8 deletions
|
@ -456,6 +456,7 @@ ipcMain.on('request-new-msg-received', (event, arg) => {
|
||||||
});
|
});
|
||||||
ipcMain.on('request-update-transmission-status', (event, arg) => {
|
ipcMain.on('request-update-transmission-status', (event, arg) => {
|
||||||
chat.webContents.send('action-update-transmission-status', arg);
|
chat.webContents.send('action-update-transmission-status', arg);
|
||||||
|
win.webContents.send('action-update-transmission-status',arg);
|
||||||
});
|
});
|
||||||
|
|
||||||
ipcMain.on('request-open-tnc-log', () => {
|
ipcMain.on('request-open-tnc-log', () => {
|
||||||
|
|
|
@ -1478,8 +1478,13 @@ document.getElementById('hamlib_rigctld_stop').addEventListener('click', () => {
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
//Listen for events caused by tnc 'tnc-message's
|
||||||
|
ipcRenderer.on('action-update-transmission-status', (event, arg) => {
|
||||||
|
var data =arg["data"][0];
|
||||||
|
var txprog = document.getElementById("transmission_progress")
|
||||||
|
txprog.setAttribute("aria-valuenow", data.percent);
|
||||||
|
txprog.setAttribute("style", "width:" + data.percent + "%;");
|
||||||
|
});
|
||||||
|
|
||||||
ipcRenderer.on('action-update-tnc-state', (event, arg) => {
|
ipcRenderer.on('action-update-tnc-state', (event, arg) => {
|
||||||
// update FFT
|
// update FFT
|
||||||
|
@ -1893,12 +1898,7 @@ var speedChartOptions = {
|
||||||
var total_bytes = arg.total_bytes;
|
var total_bytes = arg.total_bytes;
|
||||||
}
|
}
|
||||||
document.getElementById("total_bytes").innerHTML = total_bytes;
|
document.getElementById("total_bytes").innerHTML = total_bytes;
|
||||||
//Only update if values differ to prevent re-rendering control
|
|
||||||
var txprog = document.getElementById("transmission_progress")
|
|
||||||
if (txprog.getAttribute("aria-valuenow") != arg.arq_transmission_percent)
|
|
||||||
txprog.setAttribute("aria-valuenow", arg.arq_transmission_percent);
|
|
||||||
if (txprog.getAttribute("style") != "width:" + arg.arq_transmission_percent + "%;")
|
|
||||||
txprog.setAttribute("style", "width:" + arg.arq_transmission_percent + "%;");
|
|
||||||
|
|
||||||
// UPDATE HEARD STATIONS
|
// UPDATE HEARD STATIONS
|
||||||
var tbl = document.getElementById("heardstations");
|
var tbl = document.getElementById("heardstations");
|
||||||
|
|
Loading…
Reference in a new issue