import { Routes } from '@angular/router'; import { HomeComponent } from './core/components/home/home.component'; import { PollService } from './core/services/poll.service'; import { PageNotFoundComponent } from './shared/components/page-not-found/page-not-found.component'; import { SuccessComponent } from './features/administration/success/success.component'; import { WipTodoComponent } from './shared/components/ui/wip-todo/wip-todo.component'; import { CguComponent } from './features/shared/components/ui/static-pages/cgu/cgu.component'; import { LegalComponent } from './features/shared/components/ui/static-pages/legal/legal.component'; import { PrivacyComponent } from './features/shared/components/ui/static-pages/privacy/privacy.component'; import { CipheringComponent } from './features/shared/components/ui/static-pages/ciphering/ciphering.component'; export const routes: Routes = [ { path: '', component: HomeComponent }, { path: 'user', loadChildren: () => import('./features/user-profile/user-profile.module').then((m) => m.UserProfileModule), }, { path: 'administration', loadChildren: () => import('./features/administration/administration.module').then((m) => m.AdministrationModule), // resolve: {poll: PollService}, }, { path: 'poll/:slug/administration', loadChildren: () => import('./features/administration/administration.module').then((m) => m.AdministrationModule), resolve: { poll: PollService }, }, { path: 'poll/:slug/consultation', loadChildren: () => import('./features/consultation/consultation.module').then((m) => m.ConsultationModule), resolve: { poll: PollService }, }, { path: 'poll/:slug/participation', loadChildren: () => import('./features/participation/participation.module').then((m) => m.ParticipationModule), resolve: { poll: PollService }, }, { path: 'oldstuff', loadChildren: () => import('./features/old-stuff/old-stuff.module').then((m) => m.OldStuffModule), }, { path: 'success', component: SuccessComponent, }, { path: 'todo', component: WipTodoComponent, }, { path: 'cgu', component: CguComponent, }, { path: 'legal', component: LegalComponent, }, { path: 'privacy', component: PrivacyComponent, }, { path: 'ciphering', component: CipheringComponent, }, { path: 'page-not-found', component: PageNotFoundComponent }, { path: '**', redirectTo: 'page-not-found', pathMatch: 'full' }, ];