1
0
Fork 0
peertube/client/src/app/app-routing.module.ts

83 lines
2.5 KiB
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core'
2019-03-21 15:49:46 +00:00
import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router'
2018-06-28 15:16:22 +00:00
import { AppComponent } from '@app/app.component'
2019-03-21 15:49:46 +00:00
import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy'
import { MenuGuards } from '@app/core/routing/menu-guard.service'
2020-06-23 12:10:17 +00:00
import { PreloadSelectedModulesList } from './core'
2020-06-23 12:49:20 +00:00
import { EmptyComponent } from './empty.component'
2016-11-20 16:18:15 +00:00
const routes: Routes = [
2018-05-17 13:25:50 +00:00
{
path: 'admin',
canActivate: [ MenuGuards.close() ],
canDeactivate: [ MenuGuards.open() ],
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+admin/admin.module').then(m => m.AdminModule)
2018-05-17 13:25:50 +00:00
},
{
path: 'my-account',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+my-account/my-account.module').then(m => m.MyAccountModule)
2018-05-17 13:25:50 +00:00
},
{
path: 'verify-account',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+signup/+verify-account/verify-account.module').then(m => m.VerifyAccountModule)
},
2018-05-17 13:25:50 +00:00
{
path: 'accounts',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+accounts/accounts.module').then(m => m.AccountsModule)
2018-05-17 13:25:50 +00:00
},
{
path: 'video-channels',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+video-channels/video-channels.module').then(m => m.VideoChannelsModule)
2018-05-31 09:35:01 +00:00
},
2018-06-27 12:21:03 +00:00
{
path: 'about',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+about/about.module').then(m => m.AboutModule)
2018-06-27 12:21:03 +00:00
},
2019-05-29 12:39:49 +00:00
{
path: 'signup',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+signup/+register/register.module').then(m => m.RegisterModule)
2019-05-29 12:39:49 +00:00
},
2020-06-23 12:49:20 +00:00
{
path: 'reset-password',
loadChildren: () => import('./+reset-password/reset-password.module').then(m => m.ResetPasswordModule)
},
{
path: 'login',
loadChildren: () => import('./+login/login.module').then(m => m.LoginModule)
},
{
path: 'search',
loadChildren: () => import('./+search/search.module').then(m => m.SearchModule)
},
{
path: 'videos',
loadChildren: () => import('./+videos/videos.module').then(m => m.VideosModule)
},
2018-06-28 15:16:22 +00:00
{
path: '',
2020-06-23 12:49:20 +00:00
component: EmptyComponent // Avoid 404, app component will redirect dynamically
2018-06-28 15:16:22 +00:00
},
2018-05-31 09:35:01 +00:00
{
path: '**',
2019-07-24 14:05:59 +00:00
loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule)
2018-05-17 13:25:50 +00:00
}
]
2016-11-20 16:18:15 +00:00
@NgModule({
2017-09-06 19:48:15 +00:00
imports: [
RouterModule.forRoot(routes, {
useHash: Boolean(history.pushState) === false,
2019-03-21 15:49:46 +00:00
scrollPositionRestoration: 'disabled',
preloadingStrategy: PreloadSelectedModulesList,
2019-03-21 15:49:46 +00:00
anchorScrolling: 'disabled'
2017-09-06 19:48:15 +00:00
})
],
2018-03-01 12:57:29 +00:00
providers: [
MenuGuards.guards,
2019-03-21 15:49:46 +00:00
PreloadSelectedModulesList,
{ provide: RouteReuseStrategy, useClass: CustomReuseStrategy }
2018-03-01 12:57:29 +00:00
],
2016-11-20 16:18:15 +00:00
exports: [ RouterModule ]
})
export class AppRoutingModule {}