2017-06-16 14:32:15 +02:00
|
|
|
import { ApplicationRef, NgModule } from '@angular/core'
|
|
|
|
import { BrowserModule } from '@angular/platform-browser'
|
2017-06-11 12:28:22 +02:00
|
|
|
import {
|
|
|
|
removeNgStyles,
|
|
|
|
createNewHosts,
|
|
|
|
createInputTransfer
|
2017-06-16 14:32:15 +02:00
|
|
|
} from '@angularclass/hmr'
|
2016-09-06 22:40:57 +02:00
|
|
|
|
2017-07-06 17:43:58 +02:00
|
|
|
import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
|
2017-06-16 14:32:15 +02:00
|
|
|
import 'bootstrap-loader'
|
2016-11-04 17:25:26 +01:00
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
import { ENV_PROVIDERS } from './environment'
|
|
|
|
import { AppRoutingModule } from './app-routing.module'
|
|
|
|
import { AppComponent } from './app.component'
|
|
|
|
import { AppState, InternalStateType } from './app.service'
|
2016-09-09 22:23:41 +02:00
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
import { AccountModule } from './account'
|
|
|
|
import { CoreModule } from './core'
|
|
|
|
import { LoginModule } from './login'
|
|
|
|
import { SignupModule } from './signup'
|
|
|
|
import { SharedModule } from './shared'
|
|
|
|
import { VideosModule } from './videos'
|
2016-11-20 17:18:15 +01:00
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
export function metaFactory (): MetaLoader {
|
2017-03-10 10:33:36 +01:00
|
|
|
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'
|
|
|
|
}
|
2017-06-16 14:32:15 +02:00
|
|
|
})
|
2017-03-10 10:33:36 +01:00
|
|
|
}
|
2016-11-04 17:25:26 +01:00
|
|
|
|
2017-06-11 12:28:22 +02:00
|
|
|
type StoreType = {
|
|
|
|
state: InternalStateType,
|
|
|
|
restoreInputValues: () => void,
|
|
|
|
disposeOldHosts: () => void
|
2017-06-16 14:32:15 +02:00
|
|
|
}
|
2017-06-11 12:28:22 +02:00
|
|
|
|
2016-09-06 22:40:57 +02:00
|
|
|
// Application wide providers
|
|
|
|
const APP_PROVIDERS = [
|
2016-11-20 17:18:15 +01:00
|
|
|
AppState
|
2017-06-16 14:32:15 +02:00
|
|
|
]
|
2016-11-20 17:18:15 +01:00
|
|
|
|
2016-09-06 22:40:57 +02:00
|
|
|
@NgModule({
|
|
|
|
bootstrap: [ AppComponent ],
|
|
|
|
declarations: [
|
2016-11-29 21:41:11 +01:00
|
|
|
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-16 14:32:15 +02:00
|
|
|
constructor (
|
2017-06-11 12:28:22 +02:00
|
|
|
public appRef: ApplicationRef,
|
|
|
|
public appState: AppState
|
|
|
|
) {}
|
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
public hmrOnInit (store: StoreType) {
|
2017-06-11 12:28:22 +02:00
|
|
|
if (!store || !store.state) {
|
2017-06-16 14:32:15 +02:00
|
|
|
return
|
2017-06-11 12:28:22 +02:00
|
|
|
}
|
2017-06-16 14:32:15 +02:00
|
|
|
console.log('HMR store', JSON.stringify(store, null, 2))
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Set state
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
this.appState._state = store.state
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Set input values
|
|
|
|
*/
|
|
|
|
if ('restoreInputValues' in store) {
|
2017-06-16 14:32:15 +02:00
|
|
|
let restoreInputValues = store.restoreInputValues
|
|
|
|
setTimeout(restoreInputValues)
|
2017-06-11 12:28:22 +02:00
|
|
|
}
|
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
this.appRef.tick()
|
|
|
|
delete store.state
|
|
|
|
delete store.restoreInputValues
|
2016-09-06 22:40:57 +02:00
|
|
|
}
|
2017-06-11 12:28:22 +02:00
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
public hmrOnDestroy (store: StoreType) {
|
|
|
|
const cmpLocation = this.appRef.components.map((cmp) => cmp.location.nativeElement)
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Save state
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
const state = this.appState._state
|
|
|
|
store.state = state
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Recreate root elements
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
store.disposeOldHosts = createNewHosts(cmpLocation)
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Save input values
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
store.restoreInputValues = createInputTransfer()
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Remove styles
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
removeNgStyles()
|
2016-09-06 22:40:57 +02:00
|
|
|
}
|
2017-06-11 12:28:22 +02:00
|
|
|
|
2017-06-16 14:32:15 +02:00
|
|
|
public hmrAfterDestroy (store: StoreType) {
|
2017-06-11 12:28:22 +02:00
|
|
|
/**
|
|
|
|
* Display new elements
|
|
|
|
*/
|
2017-06-16 14:32:15 +02:00
|
|
|
store.disposeOldHosts ()
|
|
|
|
delete store.disposeOldHosts
|
2016-09-06 22:40:57 +02:00
|
|
|
}
|
|
|
|
}
|