-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapp.module.ts
51 lines (48 loc) · 2.31 KB
/
app.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { withRemoteModuleEventsHandler } from 'src/micro-frontends-tooling/with-remote-module-events-handler';
import { withNavigationErrorHandler } from 'src/micro-frontends-tooling/with-navigation-error-handler';
import { RemoteModuleEvent } from 'src/micro-frontends-tooling/remote-module-events';
import { LoadViaRoutingComponent } from './load-via-routing/load-via-routing.component';
import { LoadViaHtmlComponent } from './load-via-html/load-via-html.component';
import { environment } from 'src/environments/environment';
import { NavigationError } from '@angular/router';
// Here we are importing the components with an alias because all the micro-frontends
// wrappers for the checkout mfe are named CheckoutComponent and all the micro-frontends
// wrappers for the payment mfe are named PaymentComponent
//
// We're import the checkout.loaded-via-ng-on-init.component and payment.loaded-via-ng-on-init.component
// and we're using them on /advanced-ng16/shell/src/app/load-via-routing/load-via-routing.component.html
// but we could have done the same with any of the other wrapper components, there's nothing
// special about the `.loaded-via-ng-on-init.` wrapper components.
import { CheckoutComponent as CheckoutComponentViaNgOnInit } from 'src/micro-frontends/checkout/checkout.loaded-via-ng-on-init.component';
import { PaymentComponent as PaymentComponentViaNgOnInit } from 'src/micro-frontends/payment/payment.loaded-via-ng-on-init.component';
@NgModule({
declarations: [
AppComponent,
LoadViaRoutingComponent,
LoadViaHtmlComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
CheckoutComponentViaNgOnInit,
PaymentComponentViaNgOnInit,
],
providers: [
withNavigationErrorHandler((error: NavigationError) => {
if(environment.enableNavigationErrorsLogging) {
console.log("navigation error handler:", error);
}
}),
withRemoteModuleEventsHandler((event: RemoteModuleEvent) => {
if(environment.enableRemoteModuleEventsLogging) {
console.log("remote module events:", event);
}
}),
],
bootstrap: [AppComponent],
})
export class AppModule {}