]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/app.module.ts
Display table next/prev/first/last icons
[github/Chocobozzz/PeerTube.git] / client / src / app / app.module.ts
1 import { LOCALE_ID, NgModule, TRANSLATIONS, TRANSLATIONS_FORMAT } from '@angular/core'
2 import { BrowserModule } from '@angular/platform-browser'
3 import { ServerService } from '@app/core'
4 import { ResetPasswordModule } from '@app/reset-password'
5
6 import { MetaLoader, MetaModule, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
7 import { ClipboardModule } from 'ngx-clipboard'
8
9 import { AppRoutingModule } from './app-routing.module'
10 import { AppComponent } from './app.component'
11 import { CoreModule } from './core'
12 import { HeaderComponent } from './header'
13 import { LoginModule } from './login'
14 import { MenuComponent } from './menu'
15 import { SharedModule } from './shared'
16 import { SignupModule } from './signup'
17 import { VideosModule } from './videos'
18 import { buildFileLocale, getCompleteLocale, isDefaultLocale } from '../../../shared/models/i18n'
19 import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils'
20 import { LanguageChooserComponent } from '@app/menu/language-chooser.component'
21
22 export function metaFactory (serverService: ServerService): MetaLoader {
23 return new MetaStaticLoader({
24 pageTitlePositioning: PageTitlePositioning.PrependPageTitle,
25 pageTitleSeparator: ' - ',
26 get applicationName () { return serverService.getConfig().instance.name },
27 defaults: {
28 get title () { return serverService.getConfig().instance.name },
29 get description () { return serverService.getConfig().instance.shortDescription }
30 }
31 })
32 }
33
34 @NgModule({
35 bootstrap: [ AppComponent ],
36 declarations: [
37 AppComponent,
38
39 MenuComponent,
40 LanguageChooserComponent,
41 HeaderComponent
42 ],
43 imports: [
44 BrowserModule,
45 // FIXME: https://github.com/maxisam/ngx-clipboard/issues/133
46 ClipboardModule,
47
48 CoreModule,
49 SharedModule,
50
51 CoreModule,
52 LoginModule,
53 ResetPasswordModule,
54 SignupModule,
55 SharedModule,
56 VideosModule,
57
58 MetaModule.forRoot({
59 provide: MetaLoader,
60 useFactory: (metaFactory),
61 deps: [ ServerService ]
62 }),
63
64 AppRoutingModule // Put it after all the module because it has the 404 route
65 ],
66 providers: [
67 {
68 provide: TRANSLATIONS,
69 useFactory: (locale) => {
70 // On dev mode, test localization
71 if (isOnDevLocale()) {
72 locale = getDevLocale()
73 return require(`raw-loader!../locale/target/angular_${locale}.xml`)
74 }
75
76 // Default locale, nothing to translate
77 const completeLocale = getCompleteLocale(locale)
78 if (isDefaultLocale(completeLocale)) return ''
79
80 const fileLocale = buildFileLocale(locale)
81 return require(`raw-loader!../locale/target/angular_${fileLocale}.xml`)
82 },
83 deps: [ LOCALE_ID ]
84 },
85 { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' }
86 ]
87 })
88 export class AppModule {}