dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_CoreModule cluster_CoreModule_imports StoreModule StoreModule CoreModule CoreModule StoreModule->CoreModule

File

src/app/core/core.module.ts

Imports

import { HttpClientModule } from '@angular/common/http';
import { NgModule, Optional, SkipSelf } from '@angular/core';
import { CcfApiConfiguration, CcfApiModule } from '@ccf-openapi/ng-client';
import { DataSourceService } from 'ccf-shared';
import { AnalyticsModule } from 'ccf-shared/analytics';

import { environment } from '../../environments/environment';
import { DelegateDataSourceService } from './services/data-source/data-source.service';
import { StoreModule } from './store/store.module';

@NgModule({
  imports: [
    HttpClientModule,
    AnalyticsModule.forRoot({
      gaToken: environment.googleAnalyticsToken,

      appName: 'organ-info',
      projectName: 'ccf',

      developmentMode: !environment.production,
    }),

    CcfApiModule.forRoot(
      () =>
        new CcfApiConfiguration({
          basePath: environment.dbOptions.remoteApiEndpoint,
        }),
    ),

    StoreModule,
  ],
  providers: [{ provide: DataSourceService, useExisting: DelegateDataSourceService }],
  exports: [],
})
export class CoreModule {
  constructor(@Optional() @SkipSelf() core: CoreModule) {
    if (core) {
      throw new Error('The core module should only be imported once in the root module');
    }
  }
}

results matching ""

    No results matching ""