PeerTube/client/src/main.ts

63 lines
2.0 KiB
TypeScript
Raw Normal View History

2018-06-05 15:01:45 +02:00
import { enableProdMode, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core'
2017-12-12 11:59:28 +01:00
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'
2017-12-11 17:36:46 +01:00
2017-12-12 11:59:28 +01:00
import { AppModule } from './app/app.module'
import { environment } from './environments/environment'
2017-12-11 17:36:46 +01:00
2017-12-12 14:45:42 +01:00
import { hmrBootstrap } from './hmr'
2018-06-06 17:37:13 +02:00
import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
2018-08-16 11:48:48 +02:00
import { buildFileLocale } from '../../shared'
2017-12-12 14:45:42 +01:00
let providers: any[] = []
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
}
2018-06-06 17:37:13 +02:00
// Template translation, should be in the bootstrap step
if (isOnDevLocale()) {
2018-08-16 11:48:48 +02:00
const locale = buildFileLocale(getDevLocale())
2019-11-07 15:33:23 +01:00
const translations = require(`raw-loader!./locale/angular.${locale}.xlf`)
2018-06-05 15:01:45 +02:00
providers = [
{ provide: TRANSLATIONS, useValue: translations },
{ provide: TRANSLATIONS_FORMAT, useValue: 'xlf' }
]
}
2017-12-12 14:45:42 +01:00
const bootstrap = () => platformBrowserDynamic()
2018-06-05 15:01:45 +02:00
.bootstrapModule(AppModule, { providers })
2018-02-22 14:15:23 +01:00
.then(bootstrapModule => {
2018-02-26 11:44:54 +01:00
// TODO: Uncomment and remove unregistration when https://github.com/angular/angular/issues/21191 is fixed
2018-02-22 14:15:23 +01:00
// TODO: Remove when https://github.com/angular/angular-cli/issues/8779 is fixed?
2018-02-26 11:44:54 +01:00
// if ('serviceWorker' in navigator && environment.production) {
// navigator.serviceWorker.register('/ngsw-worker.js')
// .catch(err => console.error('Cannot register service worker.', err))
// }
2019-02-08 16:16:40 +01:00
if (navigator.serviceWorker && typeof navigator.serviceWorker.getRegistrations === 'function') {
navigator.serviceWorker.getRegistrations()
.then(registrations => {
for (const registration of registrations) {
registration.unregister()
}
})
}
2018-02-22 14:15:23 +01:00
return bootstrapModule
})
.catch(err => {
console.error(err)
return null
})
2017-12-12 14:45:42 +01:00
if (environment.hmr) {
if (module[ 'hot' ]) {
hmrBootstrap(module, bootstrap)
} else {
console.error('HMR is not enabled for webpack-dev-server!')
console.log('Are you using the --hmr flag for ng serve?')
}
} else {
bootstrap()
}