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

136 lines
3.2 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';
2017-06-11 12:28:22 +02:00
import {
removeNgStyles,
createNewHosts,
createInputTransfer
} from '@angularclass/hmr';
2016-09-06 22:40:57 +02:00
2017-03-10 10:33:36 +01:00
import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@nglibs/meta';
2017-04-12 22:00:17 +02:00
// TODO: remove, we need this to avoid error in ng2-smart-table
import 'rxjs/add/operator/toPromise';
2017-01-13 12:16:00 +01:00
import 'bootstrap-loader';
2016-11-04 17:25:26 +01:00
2016-09-06 22:40:57 +02:00
import { ENV_PROVIDERS } from './environment';
2016-11-20 17:18:15 +01:00
import { AppRoutingModule } from './app-routing.module';
2016-09-06 22:40:57 +02:00
import { AppComponent } from './app.component';
2017-06-11 12:28:22 +02:00
import { AppState, InternalStateType } from './app.service';
2016-09-09 22:23:41 +02:00
2016-11-20 17:18:15 +01:00
import { AccountModule } from './account';
import { CoreModule } from './core';
import { LoginModule } from './login';
2017-04-10 20:29:33 +02:00
import { SignupModule } from './signup';
2016-11-20 17:18:15 +01:00
import { SharedModule } from './shared';
import { VideosModule } from './videos';
2017-03-10 10:33:36 +01:00
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'
}
});
}
2016-11-04 17:25:26 +01:00
2017-06-11 12:28:22 +02:00
type StoreType = {
state: InternalStateType,
restoreInputValues: () => void,
disposeOldHosts: () => void
};
2016-09-06 22:40:57 +02:00
// Application wide providers
const APP_PROVIDERS = [
2016-11-20 17:18:15 +01:00
AppState
2016-09-06 22:40:57 +02:00
];
2016-11-20 17:18:15 +01:00
2016-09-06 22:40:57 +02:00
@NgModule({
bootstrap: [ AppComponent ],
declarations: [
AppComponent
2016-09-06 22:40:57 +02:00
],
2016-11-20 17:18:15 +01:00
imports: [
2016-09-06 22:40:57 +02:00
BrowserModule,
2016-09-09 22:23:41 +02:00
2016-11-20 17:18:15 +01:00
CoreModule,
SharedModule,
AppRoutingModule,
2016-11-04 17:25:26 +01:00
2016-11-20 17:18:15 +01:00
AccountModule,
CoreModule,
LoginModule,
2017-04-10 20:29:33 +02:00
SignupModule,
2016-11-20 17:18:15 +01:00
SharedModule,
2017-03-12 18:40:05 +01:00
VideosModule,
MetaModule.forRoot({
provide: MetaLoader,
useFactory: (metaFactory)
})
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 {
2017-06-11 12:28:22 +02:00
constructor(
public appRef: ApplicationRef,
public appState: AppState
) {}
public hmrOnInit(store: StoreType) {
if (!store || !store.state) {
return;
}
console.log('HMR store', JSON.stringify(store, null, 2));
/**
* Set state
*/
2016-09-06 22:40:57 +02:00
this.appState._state = store.state;
2017-06-11 12:28:22 +02:00
/**
* Set input values
*/
if ('restoreInputValues' in store) {
let restoreInputValues = store.restoreInputValues;
setTimeout(restoreInputValues);
}
2016-09-06 22:40:57 +02:00
this.appRef.tick();
delete store.state;
2017-06-11 12:28:22 +02:00
delete store.restoreInputValues;
2016-09-06 22:40:57 +02:00
}
2017-06-11 12:28:22 +02:00
public hmrOnDestroy(store: StoreType) {
const cmpLocation = this.appRef.components.map((cmp) => cmp.location.nativeElement);
/**
* Save state
*/
2016-09-06 22:40:57 +02:00
const state = this.appState._state;
store.state = state;
2017-06-11 12:28:22 +02:00
/**
* Recreate root elements
*/
2016-09-06 22:40:57 +02:00
store.disposeOldHosts = createNewHosts(cmpLocation);
2017-06-11 12:28:22 +02:00
/**
* Save input values
*/
store.restoreInputValues = createInputTransfer();
/**
* Remove styles
*/
2016-09-06 22:40:57 +02:00
removeNgStyles();
}
2017-06-11 12:28:22 +02:00
public hmrAfterDestroy(store: StoreType) {
/**
* Display new elements
*/
2016-09-06 22:40:57 +02:00
store.disposeOldHosts();
delete store.disposeOldHosts;
}
}