mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 02:06:29 +03:00
83 lines
1.8 KiB
TypeScript
83 lines
1.8 KiB
TypeScript
import 'v8-compile-cache'
|
|
import './portable'
|
|
import 'source-map-support/register'
|
|
import './sentry'
|
|
import './lru'
|
|
import { app, ipcMain, Menu, dialog } from 'electron'
|
|
import { parseArgs } from './cli'
|
|
import { Application } from './app'
|
|
import electronDebug = require('electron-debug')
|
|
import { loadConfig } from './config'
|
|
|
|
if (!process.env.TABBY_PLUGINS) {
|
|
process.env.TABBY_PLUGINS = ''
|
|
}
|
|
|
|
const argv = parseArgs(process.argv, process.cwd())
|
|
|
|
// eslint-disable-next-line @typescript-eslint/init-declarations
|
|
let configStore: any
|
|
|
|
try {
|
|
configStore = loadConfig()
|
|
} catch (err) {
|
|
dialog.showErrorBox('Could not read config', err.message)
|
|
app.exit(1)
|
|
}
|
|
|
|
const application = new Application(configStore)
|
|
|
|
ipcMain.on('app:new-window', () => {
|
|
application.newWindow()
|
|
})
|
|
|
|
process.on('uncaughtException' as any, err => {
|
|
console.log(err)
|
|
application.broadcast('uncaughtException', err)
|
|
})
|
|
|
|
if (argv.d) {
|
|
electronDebug({
|
|
isEnabled: true,
|
|
showDevTools: true,
|
|
devToolsMode: 'undocked',
|
|
})
|
|
}
|
|
|
|
app.on('activate', async () => {
|
|
if (!application.hasWindows()) {
|
|
application.newWindow()
|
|
} else {
|
|
application.focus()
|
|
}
|
|
})
|
|
|
|
app.on('second-instance', async (_event, newArgv, cwd) => {
|
|
application.handleSecondInstance(newArgv, cwd)
|
|
})
|
|
|
|
if (!app.requestSingleInstanceLock()) {
|
|
app.quit()
|
|
app.exit(0)
|
|
}
|
|
|
|
app.on('ready', async () => {
|
|
if (process.platform === 'darwin') {
|
|
app.dock.setMenu(Menu.buildFromTemplate([
|
|
{
|
|
label: 'New window',
|
|
click () {
|
|
this.app.newWindow()
|
|
},
|
|
},
|
|
]))
|
|
}
|
|
|
|
application.init()
|
|
|
|
const window = await application.newWindow({ hidden: argv.hidden })
|
|
await window.ready
|
|
window.passCliArguments(process.argv, process.cwd(), false)
|
|
window.focus()
|
|
})
|