mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit removes all the docregion tags in examples that are not being referenced in any doc. PR Close #40479
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { HttpClientInMemoryWebApiModule } from 'angular-in-memory-web-api';
|
|
import { InMemoryDataService } from './in-memory-data.service';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
|
import { HeroDetailComponent } from './hero-detail/hero-detail.component';
|
|
import { HeroesComponent } from './heroes/heroes.component';
|
|
import { HeroSearchComponent } from './hero-search/hero-search.component';
|
|
import { MessagesComponent } from './messages/messages.component';
|
|
|
|
import { PLATFORM_ID, APP_ID, Inject } from '@angular/core';
|
|
import { isPlatformBrowser } from '@angular/common';
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule.withServerTransition({ appId: 'tour-of-heroes' }),
|
|
FormsModule,
|
|
AppRoutingModule,
|
|
HttpClientModule,
|
|
|
|
// The HttpClientInMemoryWebApiModule module intercepts HTTP requests
|
|
// and returns simulated server responses.
|
|
// Remove it when a real server is ready to receive requests.
|
|
HttpClientInMemoryWebApiModule.forRoot(
|
|
InMemoryDataService, { dataEncapsulation: false }
|
|
)
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
DashboardComponent,
|
|
HeroesComponent,
|
|
HeroDetailComponent,
|
|
MessagesComponent,
|
|
HeroSearchComponent
|
|
],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule {
|
|
constructor(
|
|
@Inject(PLATFORM_ID) private platformId: object,
|
|
@Inject(APP_ID) private appId: string) {
|
|
const platform = isPlatformBrowser(platformId) ?
|
|
'in the browser' : 'on the server';
|
|
console.log(`Running ${platform} with appId=${appId}`);
|
|
}
|
|
}
|