import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { appRoutes } from './app.routes';
import { AppMainTitleComponent } from './components/app-main-title/app-main-title.component';
import { AppNavigationComponent } from './components/app-navigation/app-navigation.component';
import { DuplicatePaymentAlertComponent } from './components/duplicate-payment-alert/duplicate-payment-alert.component';
import { ErrorScreenComponent } from './components/error-screen/error-screen.component';
import { HomeComponent } from './components/home/home.component';
import { LoaderModule } from './components/loader/loader.module';
import { LoginComponent } from './components/login/login.component';
import { NotFoundComponent } from './components/not-found/not-found.component';
import { PaymentsModule } from './components/payments/payments.module';
import { SendingMoneyModule } from './components/sending-money/sending-money.module';
import { PaymentInFlightExplainComponent } from './components/success-screen/payment-in-flight-explain';
import { SuccessScreenComponent } from './components/success-screen/success-screen.component';
import { TemplatesModule } from './components/templates/templates.module';
import { TimeoutModule } from './components/timeout/timeout.module';
import { VersionLabelComponent } from './components/version-label/version-label.component';
import { AuthInterceptor } from './providers/interceptors/auth.interceptor';
import { ClipboardService } from './providers/services/clipboard.service';
import { SharedModule } from './shared.module';
import { WindowTokenModule } from './window-token.module';
export function tokenGetter() {
return;
}
@NgModule({
bootstrap: [AppComponent],
imports: [
BrowserModule.withServerTransition({ appId: 'ng-cli-universal' }),
HttpClientModule,
WindowTokenModule,
SharedModule,
FormsModule,
TimeoutModule,
LoaderModule,
TemplatesModule,
SendingMoneyModule,
PaymentsModule,
appRoutes
],
declarations: [
AppComponent,
LoginComponent,
HomeComponent,
VersionLabelComponent,
AppMainTitleComponent,
AppNavigationComponent,
SuccessScreenComponent,
PaymentInFlightExplainComponent,
ErrorScreenComponent,
NotFoundComponent,
DuplicatePaymentAlertComponent
],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: AuthInterceptor,
multi: true
},
{ provide: 'ORIGIN_URL', useValue: location.origin },
ClipboardService
]
})
export class AppModule {}