X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=7e4fac730fee05aec961e4d85a3e8a835fe620c5;hb=8527f4b163c41d13820ff0ccf6427643547ab745;hp=f9a9ae7603174a7f0b70777a65a277c6993cb94d;hpb=eb4f957eca2a045ad0d5cf0c1e79b9c08494b088;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index f9a9ae760..7e4fac730 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,146 +1,96 @@ -import { ApplicationRef, NgModule } from '@angular/core'; -import { BrowserModule } from '@angular/platform-browser'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { HttpModule, RequestOptions, XHRBackend } from '@angular/http'; -import { RouterModule } from '@angular/router'; -import { removeNgStyles, createNewHosts } from '@angularclass/hmr'; +import 'focus-visible' +import { tap } from 'rxjs/operators' +import { environment } from 'src/environments/environment' +import { APP_BASE_HREF, registerLocaleData } from '@angular/common' +import { APP_INITIALIZER, NgModule } from '@angular/core' +import { BrowserModule } from '@angular/platform-browser' +import { ServiceWorkerModule } from '@angular/service-worker' +import localeOc from '@app/helpers/locales/oc' +import { AppRoutingModule } from './app-routing.module' +import { AppComponent } from './app.component' +import { CoreModule, PluginService, RedirectService, ServerService } from './core' +import { EmptyComponent } from './empty.component' +import { HeaderComponent, SearchTypeaheadComponent, SuggestionComponent } from './header' +import { HighlightPipe } from './header/highlight.pipe' +import { LanguageChooserComponent, MenuComponent, NotificationComponent } from './menu' +import { ConfirmComponent } from './modal/confirm.component' +import { CustomModalComponent } from './modal/custom-modal.component' +import { InstanceConfigWarningModalComponent } from './modal/instance-config-warning-modal.component' +import { QuickSettingsModalComponent } from './modal/quick-settings-modal.component' +import { AdminWelcomeModalComponent } from './modal/admin-welcome-modal.component' +import { AccountSetupWarningModalComponent } from './modal/account-setup-warning-modal.component' +import { SharedActorImageModule } from './shared/shared-actor-image/shared-actor-image.module' +import { SharedFormModule } from './shared/shared-forms' +import { SharedGlobalIconModule } from './shared/shared-icons' +import { SharedInstanceModule } from './shared/shared-instance' +import { SharedMainModule } from './shared/shared-main' +import { SharedUserInterfaceSettingsModule } from './shared/shared-user-settings' -import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; -import { ProgressbarModule } from 'ng2-bootstrap/components/progressbar'; -import { PaginationModule } from 'ng2-bootstrap/components/pagination'; -import { FileSelectDirective } from 'ng2-file-upload/ng2-file-upload'; +registerLocaleData(localeOc, 'oc') -/* - * Platform and Environment providers/directives/pipes - */ -import { ENV_PROVIDERS } from './environment'; -import { routes } from './app.routes'; -// App is our top level component -import { AppComponent } from './app.component'; -import { AppState } from './app.service'; - -import { - AdminComponent, - FriendsComponent, - FriendAddComponent, - FriendListComponent, - FriendService, - MenuAdminComponent, - RequestsComponent, - RequestStatsComponent, - RequestService, - UsersComponent, - UserAddComponent, - UserListComponent, - UserService -} from './admin'; -import { AccountComponent, AccountService } from './account'; -import { LoginComponent } from './login'; -import { MenuComponent } from './menu.component'; -import { AuthService, AuthHttp, RestExtractor, RestService, SearchComponent, SearchService } from './shared'; -import { - LoaderComponent, - VideosComponent, - VideoAddComponent, - VideoListComponent, - VideoMiniatureComponent, - VideoSortComponent, - VideoWatchComponent, - VideoService, - WebTorrentService -} from './videos'; +export function loadConfigFactory (server: ServerService, pluginService: PluginService, redirectService: RedirectService) { + const initializeServices = () => { + redirectService.init() + pluginService.initializePlugins() + } -// Application wide providers -const APP_PROVIDERS = [ - AppState, + return () => { + const result = server.loadHTMLConfig() + if (result) return result.pipe(tap(() => initializeServices())) - { - provide: AuthHttp, - useFactory: (backend: XHRBackend, defaultOptions: RequestOptions, authService: AuthService) => { - return new AuthHttp(backend, defaultOptions, authService); - }, - deps: [ XHRBackend, RequestOptions, AuthService ] - }, - - AuthService, - RestExtractor, - RestService, + initializeServices() + } +} - VideoService, - SearchService, - FriendService, - RequestService, - UserService, - AccountService, - WebTorrentService -]; -/** - * `AppModule` is the main entry point into Angular2's bootstraping process - */ @NgModule({ bootstrap: [ AppComponent ], + declarations: [ - AccountComponent, - AdminComponent, AppComponent, - BytesPipe, - FileSelectDirective, - FriendAddComponent, - FriendListComponent, - FriendsComponent, - LoaderComponent, - LoginComponent, - MenuAdminComponent, + EmptyComponent, + MenuComponent, - RequestsComponent, - RequestStatsComponent, - SearchComponent, - UserAddComponent, - UserListComponent, - UsersComponent, - VideoAddComponent, - VideoListComponent, - VideoMiniatureComponent, - VideosComponent, - VideoSortComponent, - VideoWatchComponent, + LanguageChooserComponent, + QuickSettingsModalComponent, + NotificationComponent, + HeaderComponent, + SearchTypeaheadComponent, + SuggestionComponent, + HighlightPipe, + + AccountSetupWarningModalComponent, + CustomModalComponent, + AdminWelcomeModalComponent, + InstanceConfigWarningModalComponent, + ConfirmComponent ], - imports: [ // import Angular's modules + + imports: [ BrowserModule, - FormsModule, - ReactiveFormsModule, - HttpModule, - RouterModule.forRoot(routes), + ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }), + + CoreModule, + SharedMainModule, + SharedFormModule, + SharedUserInterfaceSettingsModule, + SharedGlobalIconModule, + SharedInstanceModule, + SharedActorImageModule, - ProgressbarModule, - PaginationModule + 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: APP_BASE_HREF, + useValue: '/' + }, + { + provide: APP_INITIALIZER, + useFactory: loadConfigFactory, + deps: [ ServerService, PluginService, RedirectService ], + multi: true + } ] }) -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 {}