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

139 lines
3.2 KiB
TypeScript
Raw Normal View History

import { ApplicationRef, NgModule } from '@angular/core'
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-07-06 17:43:58 +02:00
import { MetaModule, MetaLoader, MetaStaticLoader, PageTitlePositioning } from '@ngx-meta/core'
import 'bootstrap-loader'
2016-11-04 17:25:26 +01: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
import { AccountModule } from './account'
import { CoreModule } from './core'
import { LoginModule } from './login'
import { SignupModule } from './signup'
import { SharedModule } from './shared'
import { VideosModule } from './videos'
2017-12-08 10:41:49 +01:00
import { MenuComponent } from './menu'
2017-12-05 17:46:33 +01:00
import { HeaderComponent } from './header'
2016-11-20 17:18:15 +01: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-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-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
]
2016-11-20 17:18:15 +01:00
2016-09-06 22:40:57 +02:00
@NgModule({
bootstrap: [ AppComponent ],
declarations: [
2017-12-01 09:20:19 +01:00
AppComponent,
MenuComponent,
2017-12-05 17:46:33 +01:00
HeaderComponent
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 {
constructor (
2017-06-11 12:28:22 +02:00
public appRef: ApplicationRef,
public appState: AppState
) {}
public hmrOnInit (store: StoreType) {
2017-06-11 12:28:22 +02:00
if (!store || !store.state) {
return
2017-06-11 12:28:22 +02:00
}
console.log('HMR store', JSON.stringify(store, null, 2))
2017-06-11 12:28:22 +02:00
/**
* Set state
*/
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)
2017-06-11 12:28:22 +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
public hmrOnDestroy (store: StoreType) {
const cmpLocation = this.appRef.components.map((cmp) => cmp.location.nativeElement)
2017-06-11 12:28:22 +02:00
/**
* Save state
*/
const state = this.appState._state
store.state = state
2017-06-11 12:28:22 +02:00
/**
* Recreate root elements
*/
store.disposeOldHosts = createNewHosts(cmpLocation)
2017-06-11 12:28:22 +02:00
/**
* Save input values
*/
store.restoreInputValues = createInputTransfer()
2017-06-11 12:28:22 +02:00
/**
* Remove styles
*/
removeNgStyles()
2016-09-06 22:40:57 +02:00
}
2017-06-11 12:28:22 +02:00
public hmrAfterDestroy (store: StoreType) {
2017-06-11 12:28:22 +02:00
/**
* Display new elements
*/
2017-10-31 16:37:37 +01:00
store.disposeOldHosts()
delete store.disposeOldHosts
2016-09-06 22:40:57 +02:00
}
}