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