X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=545d6aedab8e257358805f1a87ba87ae4572c188;hb=1a4710914432b44115b185cec1883fdf409aef1d;hp=191ae6974b230baa80eedfcae54fd1fd54c6edc6;hpb=04de542abd940f9d2ca213fba3c68580c6c9b78a;p=oweals%2Fpeertube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 191ae6974..545d6aeda 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -1,15 +1,41 @@ import { NgModule } from '@angular/core' -import { Routes, RouterModule, PreloadAllModules } from '@angular/router' +import { RouterModule, Routes } from '@angular/router' + +import { PreloadSelectedModulesList } from './core' +import { AppComponent } from '@app/app.component' const routes: Routes = [ + { + path: 'admin', + loadChildren: './+admin/admin.module#AdminModule' + }, + { + path: 'my-account', + loadChildren: './+my-account/my-account.module#MyAccountModule' + }, + { + path: 'verify-account', + loadChildren: './+verify-account/verify-account.module#VerifyAccountModule' + }, + { + path: 'accounts', + loadChildren: './+accounts/accounts.module#AccountsModule' + }, + { + path: 'video-channels', + loadChildren: './+video-channels/video-channels.module#VideoChannelsModule' + }, + { + path: 'about', + loadChildren: './+about/about.module#AboutModule' + }, { path: '', - redirectTo: '/videos/list', - pathMatch: 'full' + component: AppComponent // Avoid 404, app component will redirect dynamically }, { - path: 'admin', - loadChildren: './+admin#AdminModule' + path: '**', + loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule' } ] @@ -17,9 +43,12 @@ const routes: Routes = [ imports: [ RouterModule.forRoot(routes, { useHash: Boolean(history.pushState) === false, - preloadingStrategy: PreloadAllModules + preloadingStrategy: PreloadSelectedModulesList }) ], + providers: [ + PreloadSelectedModulesList + ], exports: [ RouterModule ] }) export class AppRoutingModule {}