tabby/app/lib/index.ts

70 lines
1.5 KiB
TypeScript
Raw Normal View History

import './portable'
2021-01-01 17:25:54 +00:00
import 'source-map-support/register'
2019-11-26 14:51:31 +00:00
import './sentry'
import './lru'
import { app, ipcMain, Menu } from 'electron'
import { parseArgs } from './cli'
import { Application } from './app'
2019-05-24 18:46:44 +00:00
import electronDebug = require('electron-debug')
if (!process.env.TERMINUS_PLUGINS) {
process.env.TERMINUS_PLUGINS = ''
}
const application = new Application()
ipcMain.on('app:new-window', () => {
application.newWindow()
})
app.on('activate', () => {
if (!application.hasWindows()) {
application.newWindow()
} else {
application.focus()
}
})
2018-09-20 11:02:07 +00:00
app.on('window-all-closed', () => {
app.quit()
})
process.on('uncaughtException' as any, err => {
console.log(err)
application.broadcast('uncaughtException', err)
})
app.on('second-instance', (_event, argv, cwd) => {
application.handleSecondInstance(argv, cwd)
})
const argv = parseArgs(process.argv, process.cwd())
if (!app.requestSingleInstanceLock()) {
app.quit()
2019-08-07 13:10:00 +00:00
app.exit(0)
}
if (argv.d) {
2019-05-24 19:19:08 +00:00
electronDebug({
isEnabled: true,
showDevTools: true,
2019-11-26 14:51:31 +00:00
devToolsMode: 'undocked',
2019-05-24 19:19:08 +00:00
})
}
app.on('ready', () => {
2018-09-05 08:24:16 +00:00
if (process.platform === 'darwin') {
app.dock.setMenu(Menu.buildFromTemplate([
{
label: 'New window',
click () {
this.app.newWindow()
2020-02-05 12:16:31 +00:00
},
},
2018-09-05 08:24:16 +00:00
]))
}
application.init()
application.newWindow({ hidden: argv.hidden })
})