mirror of
https://github.com/Eugeny/tabby
synced 2025-01-09 03:39:13 +00:00
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import 'zone.js'
|
|
import 'core-js/es7/reflect'
|
|
import 'core-js/core/delay'
|
|
import 'rxjs'
|
|
|
|
import './global.scss'
|
|
import './toastr.scss'
|
|
|
|
// Always land on the start view
|
|
location.hash = ''
|
|
|
|
import { enableProdMode, NgModuleRef } from '@angular/core'
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
|
|
|
|
import { getRootModule } from './app.module'
|
|
import { findPlugins, loadPlugins, IPluginInfo } from './plugins'
|
|
|
|
;(process as any).enablePromiseAPI = true
|
|
|
|
if (process.platform === 'win32') {
|
|
process.env.HOME = process.env.HOMEDRIVE + process.env.HOMEPATH
|
|
}
|
|
|
|
if (require('electron-is-dev')) {
|
|
console.warn('Running in debug mode')
|
|
} else {
|
|
enableProdMode()
|
|
}
|
|
|
|
async function bootstrap (plugins: IPluginInfo[], safeMode = false): Promise<NgModuleRef<any>> {
|
|
if (safeMode) {
|
|
plugins = plugins.filter(x => x.isBuiltin)
|
|
}
|
|
let pluginsModules = await loadPlugins(plugins, (current, total) => {
|
|
(document.querySelector('.progress .bar') as HTMLElement).style.width = 100 * current / total + '%'
|
|
})
|
|
let module = getRootModule(pluginsModules)
|
|
window['rootModule'] = module
|
|
return platformBrowserDynamic().bootstrapModule(module)
|
|
}
|
|
|
|
findPlugins().then(async plugins => {
|
|
console.log('Starting with plugins:', plugins)
|
|
try {
|
|
await bootstrap(plugins)
|
|
} catch (error) {
|
|
console.error('Angular bootstrapping error:', error)
|
|
console.warn('Trying safe mode')
|
|
window['safeModeReason'] = error
|
|
try {
|
|
await bootstrap(plugins, true)
|
|
} catch (error) {
|
|
console.error('Bootstrap failed:', error)
|
|
}
|
|
}
|
|
})
|