mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
126 lines
3.4 KiB
TypeScript
126 lines
3.4 KiB
TypeScript
import { app, BrowserWindow, ipcMain } from 'electron'
|
|
import * as windowStateKeeper from 'electron-window-state'
|
|
import * as path from 'path'
|
|
import * as url from 'url'
|
|
|
|
// IPC Handlers
|
|
import { getIPCInvokeHandlers, getIPCEmitHandlers, IPCEmitEvents } from './shared/IPCHandler'
|
|
import { getSettingsHandler } from './ipc/SettingsHandler.ipc'
|
|
import { dataPath } from './shared/Paths'
|
|
|
|
let mainWindow: BrowserWindow
|
|
const args = process.argv.slice(1)
|
|
const isDevBuild = args.some(val => val == '--dev')
|
|
|
|
restrictToSingleInstance()
|
|
handleOSXWindowClosed()
|
|
app.on('ready', () => {
|
|
// Load settings from file before the window is created
|
|
getSettingsHandler.initSettings().then(createBridgeWindow)
|
|
})
|
|
|
|
/**
|
|
* Only allow a single Bridge window to be open at any one time.
|
|
* If this is attempted, restore the open window instead.
|
|
*/
|
|
function restrictToSingleInstance() {
|
|
const isFirstBridgeInstance = app.requestSingleInstanceLock()
|
|
if (!isFirstBridgeInstance) app.quit()
|
|
app.on('second-instance', () => {
|
|
if (mainWindow != undefined) {
|
|
if (mainWindow.isMinimized()) mainWindow.restore()
|
|
mainWindow.focus()
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Standard OSX window functionality is to
|
|
* minimize when closed and maximize when opened.
|
|
*/
|
|
function handleOSXWindowClosed() {
|
|
app.on('window-all-closed', () => {
|
|
if (process.platform != 'darwin') {
|
|
app.quit()
|
|
}
|
|
})
|
|
|
|
app.on('activate', () => {
|
|
if (mainWindow == undefined) {
|
|
createBridgeWindow()
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Launches and initializes Bridge's main window.
|
|
*/
|
|
function createBridgeWindow() {
|
|
|
|
// Load window size and maximized/restored state from previous session
|
|
const windowState = windowStateKeeper({
|
|
defaultWidth: 1000,
|
|
defaultHeight: 800,
|
|
path: dataPath
|
|
})
|
|
|
|
// Create the browser window
|
|
mainWindow = createBrowserWindow(windowState)
|
|
|
|
// Store window size and maximized/restored state for next session
|
|
windowState.manage(mainWindow)
|
|
|
|
// Don't use a system menu
|
|
mainWindow.setMenu(null)
|
|
|
|
// IPC handlers
|
|
getIPCInvokeHandlers().map(handler => ipcMain.handle(handler.event, (_event, ...args) => handler.handler(args[0])))
|
|
getIPCEmitHandlers().map(handler => ipcMain.on(handler.event, (_event, ...args) => handler.handler(args[0])))
|
|
|
|
// Load angular app
|
|
mainWindow.loadURL(getLoadUrl())
|
|
|
|
if (isDevBuild) {
|
|
mainWindow.webContents.openDevTools()
|
|
}
|
|
|
|
mainWindow.on('closed', () => {
|
|
mainWindow = null // Dereference mainWindow when the window is closed
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Initialize a BrowserWindow object with initial parameters
|
|
*/
|
|
function createBrowserWindow(windowState: windowStateKeeper.State) {
|
|
return new BrowserWindow({
|
|
x: windowState.x,
|
|
y: windowState.y,
|
|
width: windowState.width,
|
|
height: windowState.height,
|
|
frame: false,
|
|
title: 'Bridge',
|
|
webPreferences: {
|
|
nodeIntegration: true,
|
|
allowRunningInsecureContent: (isDevBuild) ? true : false,
|
|
textAreasAreResizable: false
|
|
},
|
|
simpleFullscreen: true,
|
|
fullscreenable: false
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Load from localhost during development; load from index.html in production
|
|
*/
|
|
function getLoadUrl() {
|
|
return url.format({
|
|
protocol: isDevBuild ? 'http:' : 'file:',
|
|
pathname: isDevBuild ? '//localhost:4200/' : path.join(__dirname, '..', 'index.html'),
|
|
slashes: true
|
|
})
|
|
}
|
|
|
|
export function emitIPCEvent<E extends keyof IPCEmitEvents>(event: E, data: IPCEmitEvents[E]) {
|
|
mainWindow.webContents.send(event, data)
|
|
} |