RenaiApp/src/main.ts

47 lines
1.5 KiB
TypeScript
Raw Normal View History

import { app } from 'electron';
import { container } from './main/core/container';
import { isDev } from './main/core/dev';
import { IAppWindow } from './main/modules/app-window/i-app-window';
import { ISession } from './main/modules/session/i-session';
2019-06-30 01:18:21 +02:00
async function createWindow(): Promise<void> {
const session: ISession = container.get(Symbol.for('session'));
session.setHeaders();
const appWindowMain: IAppWindow = container.get(Symbol.for('app-window-main'));
2019-06-08 00:36:44 +02:00
// and load the index.html of the app.
await appWindowMain.open();
2019-06-08 00:36:44 +02:00
// Open the DevTools.
if (isDev()) {
appWindowMain.window.webContents.openDevTools();
}
2019-06-08 00:36:44 +02:00
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', async () => {
2019-06-08 00:36:44 +02:00
// On OS X it"s common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
const appWindowMain: IAppWindow = container.get(Symbol.for('app-window-main'));
if (appWindowMain.isClosed()) {
await createWindow();
2019-06-08 00:36:44 +02:00
}
});
// In this file you can include the rest of your app"s specific main process
// code. You can also put them in separate files and require them here.