feature/IO-3066-1-scaffolding: Minor cleanup, addition of idea project files.

This commit is contained in:
Dave Richer
2025-04-16 14:13:17 -04:00
parent affe412586
commit 8b7280f66c
12 changed files with 84 additions and 37 deletions

View File

@@ -1,14 +1,9 @@
import { dialog, IpcMainInvokeEvent } from "electron";
import {dialog, IpcMainInvokeEvent} from "electron";
import log from "electron-log/main";
import _ from "lodash";
import Store from "../store/store";
import { getMainWindow } from "../util/toRenderer";
import {
addWatcherPath,
removeWatcherPath,
StartWatcher,
StopWatcher,
} from "../watcher/watcher";
import {getMainWindow} from "../util/toRenderer";
import {addWatcherPath, removeWatcherPath, StartWatcher, StopWatcher,} from "../watcher/watcher";
const SettingsWatchedFilePathsAdd = async (): Promise<string[]> => {
const mainWindow = getMainWindow();
@@ -75,11 +70,10 @@ const SettingsWatcherPollingSet = async (
return { enabled, interval };
};
const SettingsPpcFilPathGet = async (): Promise<string> => {
const ppcFilePath: string = Store.get("settings.ppcFilePath");
return ppcFilePath;
const SettingsPpcFilePathGet = async (): Promise<string> => {
return Store.get("settings.ppcFilePath");
};
const SettingsPpcFilPathSet = async (): Promise<string> => {
const SettingsPpcFilePathSet = async (): Promise<string> => {
const mainWindow = getMainWindow();
if (!mainWindow) {
log.error("No main window found when trying to open dialog");
@@ -95,12 +89,10 @@ const SettingsPpcFilPathSet = async (): Promise<string> => {
return (Store.get("settings.ppcFilePath") as string) || "";
};
const SettingEmsOutFilPathGet = async (): Promise<string> => {
const emsOutFilePath: string = Store.get("settings.emsOutFilePath");
return emsOutFilePath;
const SettingEmsOutFilePathGet = async (): Promise<string> => {
return Store.get("settings.emsOutFilePath");
};
const SettingEmsOutFilPathSet = async (): Promise<string> => {
const SettingEmsOutFilePathSet = async (): Promise<string> => {
const mainWindow = getMainWindow();
if (!mainWindow) {
log.error("No main window found when trying to open dialog");
@@ -118,13 +110,13 @@ const SettingEmsOutFilPathSet = async (): Promise<string> => {
};
export {
SettingsPpcFilPathGet,
SettingsPpcFilPathSet,
SettingsPpcFilePathGet,
SettingsPpcFilePathSet,
SettingsWatchedFilePathsAdd,
SettingsWatchedFilePathsGet,
SettingsWatchedFilePathsRemove,
SettingsWatcherPollingGet,
SettingsWatcherPollingSet,
SettingEmsOutFilPathGet,
SettingEmsOutFilPathSet,
SettingEmsOutFilePathGet,
SettingEmsOutFilePathSet,
};