PeerTube/client/src/main.ts

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-11-27 15:31:09 +01:00
import { ApplicationRef, enableProdMode } from '@angular/core'
import { enableDebugTools } from '@angular/platform-browser'
2017-12-12 11:59:28 +01:00
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
import { AppModule } from './app/app.module'
import { environment } from './environments/environment'
import { logger } from './root-helpers'
2017-12-11 17:36:46 +01:00
if (environment.production) {
2017-12-12 11:59:28 +01:00
enableProdMode()
2017-12-11 17:36:46 +01:00
}
logger.registerServerSending(environment.apiUrl)
2017-12-12 14:45:42 +01:00
const bootstrap = () => platformBrowserDynamic()
2020-02-07 15:51:19 +01:00
.bootstrapModule(AppModule)
2018-02-22 14:15:23 +01:00
.then(bootstrapModule => {
2020-11-27 15:31:09 +01:00
if (!environment.production) {
const applicationRef = bootstrapModule.injector.get(ApplicationRef)
const componentRef = applicationRef.components[0]
// allows to run `ng.profiler.timeChangeDetection();`
enableDebugTools(componentRef)
}
2018-02-22 14:15:23 +01:00
return bootstrapModule
})
.catch(err => {
try {
logger.error(err)
} catch (err2) {
console.error('Cannot log error', { err, err2 })
}
// Ensure we display an "incompatible message" on Angular bootstrap error
setTimeout(() => {
if (document.querySelector('my-app').innerHTML === '') {
throw err
}
}, 1000)
2018-02-22 14:15:23 +01:00
return null
})
2017-12-12 14:45:42 +01:00
bootstrap()