Merge branch 'release/1.4.0' into develop
[oweals/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 import 'focus-visible'
9
10 import { AppRoutingModule } from './app-routing.module'
11 import { AppComponent } from './app.component'
12 import { CoreModule } from './core'
13 import { HeaderComponent } from './header'
14 import { LoginModule } from './login'
15 import { AvatarNotificationComponent, LanguageChooserComponent, MenuComponent } from './menu'
16 import { SharedModule } from './shared'
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 { SearchModule } from '@app/search'
21 import { WelcomeModalComponent } from '@app/modal/welcome-modal.component'
22 import { InstanceConfigWarningModalComponent } from '@app/modal/instance-config-warning-modal.component'
23
24 export function metaFactory (serverService: ServerService): MetaLoader {
25   return new MetaStaticLoader({
26     pageTitlePositioning: PageTitlePositioning.PrependPageTitle,
27     pageTitleSeparator: ' - ',
28     get applicationName () { return serverService.getConfig().instance.name },
29     defaults: {
30       get title () { return serverService.getConfig().instance.name },
31       get description () { return serverService.getConfig().instance.shortDescription }
32     }
33   })
34 }
35
36 @NgModule({
37   bootstrap: [ AppComponent ],
38   declarations: [
39     AppComponent,
40
41     MenuComponent,
42     LanguageChooserComponent,
43     AvatarNotificationComponent,
44     HeaderComponent,
45
46     WelcomeModalComponent,
47     InstanceConfigWarningModalComponent
48   ],
49   imports: [
50     BrowserModule,
51     // FIXME: https://github.com/maxisam/ngx-clipboard/issues/133
52     ClipboardModule,
53
54     CoreModule,
55     SharedModule,
56
57     CoreModule,
58     LoginModule,
59     ResetPasswordModule,
60     SearchModule,
61     SharedModule,
62     VideosModule,
63
64     MetaModule.forRoot({
65       provide: MetaLoader,
66       useFactory: (metaFactory),
67       deps: [ ServerService ]
68     }),
69
70     AppRoutingModule // Put it after all the module because it has the 404 route
71   ],
72   providers: [
73     {
74       provide: TRANSLATIONS,
75       useFactory: (locale: string) => {
76         // On dev mode, test localization
77         if (isOnDevLocale()) {
78           locale = buildFileLocale(getDevLocale())
79           return require(`raw-loader!../locale/target/angular_${locale}.xml`)
80         }
81
82         // Default locale, nothing to translate
83         const completeLocale = getCompleteLocale(locale)
84         if (isDefaultLocale(completeLocale)) return ''
85
86         const fileLocale = buildFileLocale(locale)
87         return require(`raw-loader!../locale/target/angular_${fileLocale}.xml`)
88       },
89       deps: [ LOCALE_ID ]
90     },
91     { provide: TRANSLATIONS_FORMAT, useValue: 'xlf' }
92   ]
93 })
94 export class AppModule {}