workflow_launcher/main.js

31 lines
750 B
JavaScript
Raw Normal View History

2024-03-11 11:01:07 -04:00
const Factory = require('./factory.js')
const { app, BrowserWindow, ipcMain, ipcRenderer } = require('electron')
const path = require('node:path')
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js')
}
})
win.loadFile('index.html')
}
app.whenReady().then(() => {
2024-03-12 02:13:02 -04:00
ipcMain.handle('run', (_, param) => {
2024-03-11 11:01:07 -04:00
Factory.get(param.workflow)
Factory.workflow.run(param.application, param, './tmp/')
2024-03-11 11:01:07 -04:00
})
createWindow()
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit()
})
})
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit()
}
})