X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp.module.ts;h=e69edbc4b1c9696c9b0b0b3f0256e924c60fa0e2;hb=4a7eeb62f1364678fff28fef4a83a0e9b640017c;hp=950b3c48e3117d2eced9140b64309278e35f2905;hpb=ab32b0fc805b92c5a1d7ac5901cb1a38e94622ca;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 950b3c48e..e69edbc4b 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -1,130 +1,60 @@ -import { NgModule, ApplicationRef } 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 { NgModule } from '@angular/core' +import { BrowserModule } from '@angular/platform-browser' -import { FileSelectDirective } from 'ng2-file-upload/ng2-file-upload'; -import { ProgressbarModule } from 'ng2-bootstrap/components/progressbar'; -import { PaginationModule } from 'ng2-bootstrap/components/pagination'; -import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe'; +import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core' -/* - * 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 { AccountComponent, AccountService } from './account'; -import { LoginComponent } from './login'; -import { - LoaderComponent, - VideosComponent, - VideoAddComponent, - VideoListComponent, - VideoMiniatureComponent, - VideoSortComponent, - VideoWatchComponent, - VideoService -} from './videos'; -import { - FriendsComponent, - FriendAddComponent, - FriendListComponent, - FriendService, - UsersComponent, - UserAddComponent, - UserListComponent, - UserService, - AdminComponent, - MenuAdminComponent -} from './admin'; -import { MenuComponent } from './menu.component'; -import { AuthService, AuthHttp, RestExtractor, RestService, SearchComponent, SearchService } from './shared'; +import { AppRoutingModule } from './app-routing.module' +import { AppComponent } from './app.component' -// Application wide providers -const APP_PROVIDERS = [ - AppState, +import { AccountModule } from './account' +import { CoreModule } from './core' +import { LoginModule } from './login' +import { SignupModule } from './signup' +import { SharedModule } from './shared' +import { VideosModule } from './videos' +import { MenuComponent } from './menu' +import { HeaderComponent } from './header' - { - provide: AuthHttp, - useFactory: (backend: XHRBackend, defaultOptions: RequestOptions, authService: AuthService) => { - return new AuthHttp(backend, defaultOptions, authService); - }, - deps: [ XHRBackend, RequestOptions, AuthService ] - }, +export function metaFactory (): MetaLoader { + return new MetaStaticLoader({ + pageTitlePositioning: PageTitlePositioning.PrependPageTitle, + pageTitleSeparator: ' - ', + applicationName: 'PeerTube', + defaults: { + title: 'PeerTube', + description: 'PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser' + } + }) +} - AuthService, - RestExtractor, - RestExtractor, RestService, VideoService, SearchService, FriendService, UserService, AccountService -]; -/** - * `AppModule` is the main entry point into Angular2's bootstraping process - */ @NgModule({ bootstrap: [ AppComponent ], declarations: [ AppComponent, - BytesPipe, - FileSelectDirective, - AccountComponent, - LoginComponent, - LoaderComponent, - VideosComponent, - VideoAddComponent, - VideoListComponent, - VideoSortComponent, - VideoMiniatureComponent, - VideoWatchComponent, - FriendsComponent, - FriendAddComponent, - FriendListComponent, - UsersComponent, - UserAddComponent, - UserListComponent, - AdminComponent, - MenuAdminComponent, + MenuComponent, - SearchComponent + HeaderComponent ], - imports: [ // import Angular's modules + imports: [ BrowserModule, - FormsModule, - ReactiveFormsModule, - HttpModule, - RouterModule.forRoot(routes), - ProgressbarModule, - PaginationModule + + CoreModule, + SharedModule, + + AppRoutingModule, + + AccountModule, + CoreModule, + LoginModule, + SignupModule, + SharedModule, + VideosModule, + + MetaModule.forRoot({ + provide: MetaLoader, + useFactory: (metaFactory) + }) ], - providers: [ // expose our Services and Providers into Angular's dependency injection - ENV_PROVIDERS, - APP_PROVIDERS - ] + providers: [ ] }) -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 {}