X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=b5a677d15f21c30136006c78a1ae50666f5cf3c4;hb=61b20252a087e6403b34ef9bdc4fe6fb05936dfb;hp=191ae6974b230baa80eedfcae54fd1fd54c6edc6;hpb=04de542abd940f9d2ca213fba3c68580c6c9b78a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index 191ae6974..b5a677d15 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -1,15 +1,46 @@ import { NgModule } from '@angular/core' -import { Routes, RouterModule, PreloadAllModules } from '@angular/router' +import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router' + +import { PreloadSelectedModulesList } from './core' +import { AppComponent } from '@app/app.component' +import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy' const routes: Routes = [ + { + path: 'admin', + loadChildren: () => import('./+admin/admin.module').then(m => m.AdminModule) + }, + { + path: 'my-account', + loadChildren: () => import('./+my-account/my-account.module').then(m => m.MyAccountModule) + }, + { + path: 'verify-account', + loadChildren: () => import('./+signup/+verify-account/verify-account.module').then(m => m.VerifyAccountModule) + }, + { + path: 'accounts', + loadChildren: () => import('./+accounts/accounts.module').then(m => m.AccountsModule) + }, + { + path: 'video-channels', + loadChildren: () => import('./+video-channels/video-channels.module').then(m => m.VideoChannelsModule) + }, + { + path: 'about', + loadChildren: () => import('./+about/about.module').then(m => m.AboutModule) + }, + { + path: 'signup', + loadChildren: () => import('./+signup/+register/register.module').then(m => m.RegisterModule) + }, { path: '', - redirectTo: '/videos/list', - pathMatch: 'full' + component: AppComponent // Avoid 404, app component will redirect dynamically }, { - path: 'admin', - loadChildren: './+admin#AdminModule' + path: '**', + loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule) } ] @@ -17,9 +48,15 @@ const routes: Routes = [ imports: [ RouterModule.forRoot(routes, { useHash: Boolean(history.pushState) === false, - preloadingStrategy: PreloadAllModules + scrollPositionRestoration: 'disabled', + preloadingStrategy: PreloadSelectedModulesList, + anchorScrolling: 'disabled' }) ], + providers: [ + PreloadSelectedModulesList, + { provide: RouteReuseStrategy, useClass: CustomReuseStrategy } + ], exports: [ RouterModule ] }) export class AppRoutingModule {}