Skip to content
Snippets Groups Projects
app.module.ts 4.68 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { LOCALE_ID, NgModule } from '@angular/core';
    
    import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
    
    import { BrowserModule } from '@angular/platform-browser';
    
    import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
    import { ToastrModule } from 'ngx-toastr';
    
    import { AppRoutingModule } from './app-routing.module';
    
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { AppComponent } from './app.component';
    
    import { CartoComponent } from './carto/carto.component';
    
    import { CustomBreakPointsProvider } from './config/custom-breakpoint';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { FooterComponent } from './footer/footer.component';
    import { HeaderComponent } from './header/header.component';
    
    import { SharedModule } from './shared/shared.module';
    
    import { MapModule } from './map/map.module';
    
    import { StructureListComponent } from './structure-list/structure-list.component';
    import { CardComponent } from './structure-list/components/card/card.component';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { StructureListSearchComponent } from './structure-list/components/structure-list-search/structure-list-search.component';
    
    import { StructureDetailsComponent } from './structure-list/components/structure-details/structure-details.component';
    
    import { ModalFilterComponent } from './structure-list/components/modal-filter/modal-filter.component';
    
    import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
    
    import { PageComponent } from './page/page.component';
    
    import { ContactComponent } from './contact/contact.component';
    
    import { FormComponent } from './form/structure-form/form.component';
    
    import { AuthGuard } from './guards/auth.guard';
    import { CustomHttpInterceptor } from './config/http-interceptor';
    
    import { ResetEmailComponent } from './reset-email/reset-email.component';
    
    import { ResetPasswordComponent } from './reset-password/reset-password.component';
    
    import { AdminGuard } from './guards/admin.guard';
    
    import { DeactivateGuard } from './guards/deactivate.guard';
    
    import { TempUserResolver } from './resolvers/temp-user.resolver';
    
    import { StructureJoinComponent } from './structure-join/structure-join.component';
    
    import { RouterListenerService } from './services/routerListener.service';
    
    import { NewsletterSubscriptionComponent } from './newsletter-subscription/newsletter-subscription.component';
    
    import { OrientationFormComponent } from './form/orientation-form/orientation-form.component';
    import { StructureDetailPrintComponent } from './form/orientation-form/component/structure-detail-print/structure-detail-print.component';
    import { StructureListPrintComponent } from './form/orientation-form/component/structure-list-print/structure-list-print.component';
    import { StructurePrintHeaderComponent } from './form/orientation-form/component/structure-print-header/structure-print-header.component';
    
    import { OrientationComponent } from './form/orientation-form/component/orientation-modal/orientation-modal.component';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { ServiceWorkerModule } from '@angular/service-worker';
    import { environment } from '../environments/environment';
    
    import { StructureResolver } from './resolvers/structure.resolver';
    import { RoleGuard } from './guards/role.guard';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    import { UpdateService } from './services/update.service';
    
    import { DataShareConsentComponent } from './shared/components/data-share-consent/data-share-consent.component';
    
    import { FormViewModule } from './form/form-view/form-view.module';
    import { LoginComponent } from './login/login.component';
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    
    @NgModule({
    
      declarations: [
        AppComponent,
        HeaderComponent,
        FooterComponent,
    
        StructureListComponent,
        CardComponent,
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
        StructureListSearchComponent,
    
        ModalFilterComponent,
    
        StructureDetailsComponent,
    
        LegalNoticeComponent,
    
        ContactComponent,
    
        ResetPasswordComponent,
    
        FormComponent,
    
        StructureJoinComponent,
    
        NewsletterSubscriptionComponent,
    
        OrientationFormComponent,
        StructureDetailPrintComponent,
        StructureListPrintComponent,
        StructurePrintHeaderComponent,
    
    Jérémie BRISON's avatar
    Jérémie BRISON committed
      ],
    
      imports: [
        BrowserModule,
        HttpClientModule,
        AppRoutingModule,
        SharedModule,
        MapModule,
        BrowserAnimationsModule,
        ToastrModule.forRoot(),
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
        ServiceWorkerModule.register('ngsw-worker.js', {
          enabled: environment.production,
        }),
    
      providers: [
        { provide: LOCALE_ID, useValue: 'fr' },
        { provide: HTTP_INTERCEPTORS, useClass: CustomHttpInterceptor, multi: true },
        CustomBreakPointsProvider,
        AuthGuard,
    
        AdminGuard,
    
        TempUserResolver,
    
        RouterListenerService,
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
        UpdateService,
    
      bootstrap: [AppComponent],
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
    })
    
    export class AppModule {}