2016-09-09 15:23:41 -05:00
|
|
|
import { ApplicationRef, NgModule } from '@angular/core';
|
2016-09-06 15:40:57 -05:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { removeNgStyles, createNewHosts } from '@angularclass/hmr';
|
|
|
|
|
2017-03-10 03:33:36 -06:00
|
|
|
import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@nglibs/meta';
|
2017-01-13 05:16:00 -06:00
|
|
|
import 'bootstrap-loader';
|
2016-11-04 11:25:26 -05:00
|
|
|
|
2016-09-06 15:40:57 -05:00
|
|
|
import { ENV_PROVIDERS } from './environment';
|
2016-11-20 10:18:15 -06:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
2016-09-06 15:40:57 -05:00
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { AppState } from './app.service';
|
2016-09-09 15:23:41 -05:00
|
|
|
|
2016-11-20 10:18:15 -06:00
|
|
|
import { AccountModule } from './account';
|
|
|
|
import { CoreModule } from './core';
|
|
|
|
import { LoginModule } from './login';
|
2017-04-10 13:29:33 -05:00
|
|
|
import { SignupModule } from './signup';
|
2016-11-20 10:18:15 -06:00
|
|
|
import { SharedModule } from './shared';
|
|
|
|
import { VideosModule } from './videos';
|
|
|
|
|
2017-03-10 03:33:36 -06: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 11:25:26 -05:00
|
|
|
|
2016-09-06 15:40:57 -05:00
|
|
|
// Application wide providers
|
|
|
|
const APP_PROVIDERS = [
|
2016-11-20 10:18:15 -06:00
|
|
|
AppState
|
2016-09-06 15:40:57 -05:00
|
|
|
];
|
2016-11-20 10:18:15 -06:00
|
|
|
|
2016-09-06 15:40:57 -05:00
|
|
|
@NgModule({
|
|
|
|
bootstrap: [ AppComponent ],
|
|
|
|
declarations: [
|
2016-11-29 14:41:11 -06:00
|
|
|
AppComponent
|
2016-09-06 15:40:57 -05:00
|
|
|
],
|
2016-11-20 10:18:15 -06:00
|
|
|
imports: [
|
2016-09-06 15:40:57 -05:00
|
|
|
BrowserModule,
|
2016-09-09 15:23:41 -05:00
|
|
|
|
2016-11-20 10:18:15 -06:00
|
|
|
CoreModule,
|
|
|
|
SharedModule,
|
|
|
|
|
|
|
|
AppRoutingModule,
|
2016-11-04 11:25:26 -05:00
|
|
|
|
2016-11-20 10:18:15 -06:00
|
|
|
AccountModule,
|
|
|
|
CoreModule,
|
|
|
|
LoginModule,
|
2017-04-10 13:29:33 -05:00
|
|
|
SignupModule,
|
2016-11-20 10:18:15 -06:00
|
|
|
SharedModule,
|
2017-03-12 12:40:05 -05:00
|
|
|
VideosModule,
|
|
|
|
|
|
|
|
MetaModule.forRoot({
|
|
|
|
provide: MetaLoader,
|
|
|
|
useFactory: (metaFactory)
|
|
|
|
})
|
2016-09-06 15:40:57 -05: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;
|
|
|
|
}
|
|
|
|
}
|