27 lines
840 B
JavaScript
27 lines
840 B
JavaScript
const { ipcMain, dialog } = require("electron");
|
|
const { mainWindow } = require("./main");
|
|
const settings = require("electron-settings");
|
|
const { DecodeEstimate } = require("./decoder/decoder");
|
|
const ipcTypes = require("../src/ipc.types");
|
|
//Import Ipc Handlers
|
|
require("./file-watcher/file-watcher-ipc");
|
|
|
|
console.log("*** Added IPC Handlers ***");
|
|
|
|
ipcMain.on(
|
|
ipcTypes.default.fileWatcher.toMain.filepathsGet,
|
|
async (event, object) => {
|
|
const filePaths = await settings.get("filePaths");
|
|
event.reply(
|
|
ipcTypes.default.fileWatcher.toRenderer.filepathsList,
|
|
filePaths
|
|
);
|
|
}
|
|
);
|
|
|
|
ipcMain.on("test", async (event, object) => {
|
|
console.log("Received test IPC Command");
|
|
const job = await DecodeEstimate("C:\\VPS\\EMS\\687_3_A.AD1");
|
|
event.reply("test-success", { status: 0, message: null, data: job });
|
|
});
|