X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=dda705811fb8bc8b8867081ad37b6f94139a0dd9;hb=f332ffa2a2e9bd7d223c78b6123dbba272f21e84;hp=7d1760fcdafde6dd466d4aec02f3036dc64165f8;hpb=ad42bea3a55ca7937f082cc641764de70ce34bd1;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 7d1760fcd..dda705811 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,92 +1,94 @@ -import { ApplicationRef, NgModule } from '@angular/core'; -import { BrowserModule } from '@angular/platform-browser'; -import { removeNgStyles, createNewHosts } from '@angularclass/hmr'; +import { LOCALE_ID, NgModule, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core' +import { BrowserModule } from '@angular/platform-browser' +import { ServerService } from '@app/core' +import { ResetPasswordModule } from '@app/reset-password' -import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@nglibs/meta'; -// TODO: remove, we need this to avoid error in ng2-smart-table -import 'rxjs/add/operator/toPromise'; -import 'bootstrap-loader'; +import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' +import { ClipboardModule } from 'ngx-clipboard' +import 'focus-visible' -import { ENV_PROVIDERS } from './environment'; -import { AppRoutingModule } from './app-routing.module'; -import { AppComponent } from './app.component'; -import { AppState } from './app.service'; +import { AppRoutingModule } from './app-routing.module' +import { AppComponent } from './app.component' +import { CoreModule } from './core' +import { HeaderComponent } from './header' +import { LoginModule } from './login' +import { AvatarNotificationComponent, LanguageChooserComponent, MenuComponent } from './menu' +import { SharedModule } from './shared' +import { VideosModule } from './videos' +import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '../../../shared/models/i18n' +import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils' +import { SearchModule } from '@app/search' +import { WelcomeModalComponent } from '@app/modal/welcome-modal.component' +import { InstanceConfigWarningModalComponent } from '@app/modal/instance-config-warning-modal.component' -import { AccountModule } from './account'; -import { CoreModule } from './core'; -import { LoginModule } from './login'; -import { SignupModule } from './signup'; -import { SharedModule } from './shared'; -import { VideosModule } from './videos'; - -export function metaFactory(): MetaLoader { +export function metaFactory (serverService: ServerService): MetaLoader { return new MetaStaticLoader({ pageTitlePositioning: PageTitlePositioning.PrependPageTitle, pageTitleSeparator: ' - ', - applicationName: 'PeerTube', + get applicationName () { return serverService.getTmpConfig().instance.name }, defaults: { - title: 'PeerTube', - description: 'PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser' + get title () { return serverService.getTmpConfig().instance.name }, + get description () { return serverService.getTmpConfig().instance.shortDescription } } - }); + }) } -// Application wide providers -const APP_PROVIDERS = [ - AppState -]; - @NgModule({ bootstrap: [ AppComponent ], declarations: [ - AppComponent + AppComponent, + + MenuComponent, + LanguageChooserComponent, + AvatarNotificationComponent, + HeaderComponent, + + WelcomeModalComponent, + InstanceConfigWarningModalComponent ], imports: [ BrowserModule, + // FIXME: https://github.com/maxisam/ngx-clipboard/issues/133 + ClipboardModule, CoreModule, SharedModule, - AppRoutingModule, - - AccountModule, CoreModule, LoginModule, - SignupModule, + ResetPasswordModule, + SearchModule, SharedModule, VideosModule, MetaModule.forRoot({ provide: MetaLoader, - useFactory: (metaFactory) - }) + useFactory: (metaFactory), + deps: [ ServerService ] + }), + + AppRoutingModule // Put it after all the module because it has the 404 route ], - providers: [ // expose our Services and Providers into Angular's dependency injection - ENV_PROVIDERS, - APP_PROVIDERS + providers: [ + { + provide: TRANSLATIONS, + useFactory: (locale: string) => { + // On dev mode, test localization + if (isOnDevLocale()) { + locale = buildFileLocale(getDevLocale()) + return require(`raw-loader!../locale/angular.${locale}.xlf`) + } + + // Default locale, nothing to translate + const completeLocale = getCompleteLocale(locale) + if (isDefaultLocale(completeLocale)) return '' + + const fileLocale = buildFileLocale(locale) + return require(`raw-loader!../locale/angular.${fileLocale}.xlf`) + }, + deps: [ LOCALE_ID ] + }, + { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' } ] }) -export class AppModule { - constructor(public appRef: ApplicationRef, public appState: AppState) {} - hmrOnInit(store) { - if (!store || !store.state) return; - console.log('HMR store', store); - this.appState._state = store.state; - this.appRef.tick(); - delete store.state; - } - hmrOnDestroy(store) { - const cmpLocation = this.appRef.components.map(cmp => cmp.location.nativeElement); - // recreate elements - const state = this.appState._state; - store.state = state; - store.disposeOldHosts = createNewHosts(cmpLocation); - // remove styles - removeNgStyles(); - } - hmrAfterDestroy(store) { - // display new elements - store.disposeOldHosts(); - delete store.disposeOldHosts; - } -} +export class AppModule {}