X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fapp-routing.module.ts;h=b5a677d15f21c30136006c78a1ae50666f5cf3c4;hb=61b20252a087e6403b34ef9bdc4fe6fb05936dfb;hp=cff37a7d6f187930eb7622881cdac10ce493aa58;hpb=73471b1a52f242e86364ffb077ea6cadb3b07ae2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index cff37a7d6..b5a677d15 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts @@ -1,33 +1,38 @@ import { NgModule } from '@angular/core' -import { RouterModule, Routes } 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: './+admin/admin.module#AdminModule' + loadChildren: () => import('./+admin/admin.module').then(m => m.AdminModule) }, { path: 'my-account', - loadChildren: './+my-account/my-account.module#MyAccountModule' + loadChildren: () => import('./+my-account/my-account.module').then(m => m.MyAccountModule) }, { path: 'verify-account', - loadChildren: './+verify-account/verify-account.module#VerifyAccountModule' + loadChildren: () => import('./+signup/+verify-account/verify-account.module').then(m => m.VerifyAccountModule) }, { path: 'accounts', - loadChildren: './+accounts/accounts.module#AccountsModule' + loadChildren: () => import('./+accounts/accounts.module').then(m => m.AccountsModule) }, { path: 'video-channels', - loadChildren: './+video-channels/video-channels.module#VideoChannelsModule' + loadChildren: () => import('./+video-channels/video-channels.module').then(m => m.VideoChannelsModule) }, { path: 'about', - loadChildren: './+about/about.module#AboutModule' + loadChildren: () => import('./+about/about.module').then(m => m.AboutModule) + }, + { + path: 'signup', + loadChildren: () => import('./+signup/+register/register.module').then(m => m.RegisterModule) }, { path: '', @@ -35,7 +40,7 @@ const routes: Routes = [ }, { path: '**', - loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule' + loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule) } ] @@ -43,12 +48,14 @@ const routes: Routes = [ imports: [ RouterModule.forRoot(routes, { useHash: Boolean(history.pushState) === false, + scrollPositionRestoration: 'disabled', preloadingStrategy: PreloadSelectedModulesList, - anchorScrolling: 'enabled' + anchorScrolling: 'disabled' }) ], providers: [ - PreloadSelectedModulesList + PreloadSelectedModulesList, + { provide: RouteReuseStrategy, useClass: CustomReuseStrategy } ], exports: [ RouterModule ] })