PeerTube/client/src/app/app.module.ts

171 lines
4.4 KiB
TypeScript
Raw Normal View History

2016-09-09 22:23:41 +02:00
import { ApplicationRef, NgModule } from '@angular/core';
2016-09-06 22:40:57 +02:00
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';
2016-09-09 22:23:41 +02:00
import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe';
2016-11-04 17:25:26 +01:00
2016-10-13 21:59:19 +02:00
import { DropdownModule } from 'ng2-bootstrap/components/dropdown';
2016-09-06 22:40:57 +02:00
import { ProgressbarModule } from 'ng2-bootstrap/components/progressbar';
import { PaginationModule } from 'ng2-bootstrap/components/pagination';
2016-11-04 16:23:18 +01:00
import { ModalModule } from 'ng2-bootstrap/components/modal';
2016-11-04 17:25:26 +01:00
import { FileUploadModule } from 'ng2-file-upload/ng2-file-upload';
2016-09-06 22:40:57 +02:00
2016-11-04 17:25:26 +01:00
import { MetaConfig, MetaModule } from 'ng2-meta';
2016-09-06 22:40:57 +02:00
/*
* 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';
2016-09-09 22:23:41 +02:00
import {
AdminComponent,
FriendsComponent,
FriendAddComponent,
FriendListComponent,
FriendService,
MenuAdminComponent,
2016-09-23 17:09:38 +02:00
RequestsComponent,
RequestStatsComponent,
RequestService,
2016-09-09 22:23:41 +02:00
UsersComponent,
UserAddComponent,
UserListComponent,
UserService
} from './admin';
2016-09-06 22:40:57 +02:00
import { AccountComponent, AccountService } from './account';
import { LoginComponent } from './login';
2016-09-09 22:23:41 +02:00
import { MenuComponent } from './menu.component';
import { AuthService, AuthHttp, RestExtractor, RestService, SearchComponent, SearchService } from './shared';
2016-09-06 22:40:57 +02:00
import {
LoaderComponent,
VideosComponent,
VideoAddComponent,
VideoListComponent,
VideoMiniatureComponent,
VideoSortComponent,
VideoWatchComponent,
VideoShareComponent,
VideoMagnetComponent,
2016-09-09 22:16:51 +02:00
VideoService,
WebTorrentService
2016-09-06 22:40:57 +02:00
} from './videos';
2016-11-04 17:25:26 +01:00
const metaConfig: MetaConfig = {
//Append a title suffix such as a site name to all titles
//Defaults to false
useTitleSuffix: true,
defaults: {
title: 'PeerTube'
}
};
2016-09-06 22:40:57 +02:00
// Application wide providers
const APP_PROVIDERS = [
AppState,
{
provide: AuthHttp,
useFactory: (backend: XHRBackend, defaultOptions: RequestOptions, authService: AuthService) => {
return new AuthHttp(backend, defaultOptions, authService);
},
deps: [ XHRBackend, RequestOptions, AuthService ]
},
AuthService,
RestExtractor,
2016-09-09 22:23:41 +02:00
RestService,
VideoService,
SearchService,
FriendService,
2016-09-23 17:09:38 +02:00
RequestService,
2016-09-09 22:23:41 +02:00
UserService,
AccountService,
WebTorrentService
2016-09-06 22:40:57 +02:00
];
/**
* `AppModule` is the main entry point into Angular2's bootstraping process
*/
@NgModule({
bootstrap: [ AppComponent ],
declarations: [
2016-09-09 22:23:41 +02:00
AccountComponent,
AdminComponent,
2016-09-06 22:40:57 +02:00
AppComponent,
BytesPipe,
2016-09-09 22:23:41 +02:00
FriendAddComponent,
FriendListComponent,
FriendsComponent,
2016-09-06 22:40:57 +02:00
LoaderComponent,
2016-09-09 22:23:41 +02:00
LoginComponent,
MenuAdminComponent,
MenuComponent,
2016-09-23 17:09:38 +02:00
RequestsComponent,
RequestStatsComponent,
2016-09-09 22:23:41 +02:00
SearchComponent,
UserAddComponent,
UserListComponent,
UsersComponent,
2016-09-06 22:40:57 +02:00
VideoAddComponent,
VideoListComponent,
VideoMiniatureComponent,
2016-09-09 22:23:41 +02:00
VideosComponent,
VideoSortComponent,
2016-09-06 22:40:57 +02:00
VideoWatchComponent,
VideoShareComponent,
VideoMagnetComponent
2016-09-06 22:40:57 +02:00
],
imports: [ // import Angular's modules
BrowserModule,
FormsModule,
ReactiveFormsModule,
HttpModule,
RouterModule.forRoot(routes),
2016-09-09 22:23:41 +02:00
2016-10-13 21:59:19 +02:00
DropdownModule,
2016-09-06 22:40:57 +02:00
ProgressbarModule,
PaginationModule,
2016-11-04 16:23:18 +01:00
ModalModule,
2016-11-04 17:25:26 +01:00
FileUploadModule,
MetaModule.forRoot(metaConfig)
2016-09-06 22:40:57 +02:00
],
providers: [ // expose our Services and Providers into Angular's dependency injection
ENV_PROVIDERS,
APP_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;
}
}