feat(electron): plotting

added simple plotting tools
This commit is contained in:
2025-08-10 14:50:40 -04:00
parent 8d9b2bd863
commit 7cfc70632b
7 changed files with 1077 additions and 11 deletions

View File

@@ -12,6 +12,7 @@ const uiComponents = require('./renderer/ui-components');
const eventHandlers = require('./renderer/event-handlers');
const opatHandler = require('./renderer/opat-handler');
const fillWorkflow = require('./renderer/fill-workflow');
const opatPlotting = require('./renderer/opat-plotting');
// Initialize all modules with their dependencies
function initializeModules() {
@@ -23,7 +24,8 @@ function initializeModules() {
uiComponents,
eventHandlers,
opatHandler,
fillWorkflow
fillWorkflow,
opatPlotting
};
// Initialize each module with its dependencies
@@ -32,6 +34,7 @@ function initializeModules() {
eventHandlers.initializeDependencies(deps);
opatHandler.initializeDependencies(deps);
fillWorkflow.initializeDependencies(deps);
opatPlotting.initializePlottingDependencies(deps);
console.log('[RENDERER] All modules initialized with dependencies');
}
@@ -84,5 +87,6 @@ window.uiComponents = uiComponents;
window.eventHandlers = eventHandlers;
window.opatHandler = opatHandler;
window.fillWorkflow = fillWorkflow;
window.opatPlotting = opatPlotting;
// === REGENERATED CODE END ===