1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
import { NgModule } from '@angular/core'
import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router'
import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy'
import { MenuGuards } from '@app/core/routing/menu-guard.service'
import { POSSIBLE_LOCALES } from '@shared/core-utils/i18n'
import { PreloadSelectedModulesList } from './core'
import { EmptyComponent } from './empty.component'
import { ActorsComponent } from './+actors/actors.component'
const routes: Routes = [
{
path: 'admin',
canActivate: [ MenuGuards.close() ],
canDeactivate: [ MenuGuards.open() ],
loadChildren: () => import('./+admin/admin.module').then(m => m.AdminModule)
},
{
path: 'my-account',
loadChildren: () => import('./+my-account/my-account.module').then(m => m.MyAccountModule)
},
{
path: 'my-library',
loadChildren: () => import('./+my-library/my-library.module').then(m => m.MyLibraryModule)
},
{
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: '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)
},
{
path: 'remote-interaction',
loadChildren: () => import('./+remote-interaction/remote-interaction.module').then(m => m.RemoteInteractionModule)
},
{
path: 'video-playlists/watch',
redirectTo: 'videos/watch/playlist'
},
{
path: 'a',
redirectTo: 'accounts'
},
{
path: 'c',
redirectTo: 'video-channels'
},
{
path: ':actorName',
component: ActorsComponent
},
{
path: '',
component: EmptyComponent // Avoid 404, app component will redirect dynamically
}
]
// Avoid 404 when changing language
for (const locale of POSSIBLE_LOCALES) {
routes.push({
path: locale,
component: EmptyComponent
})
}
routes.push({
path: '**',
loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule)
})
@NgModule({
imports: [
RouterModule.forRoot(routes, {
useHash: Boolean(history.pushState) === false,
scrollPositionRestoration: 'disabled',
preloadingStrategy: PreloadSelectedModulesList,
anchorScrolling: 'disabled'
})
],
providers: [
MenuGuards.guards,
PreloadSelectedModulesList,
{ provide: RouteReuseStrategy, useClass: CustomReuseStrategy }
],
exports: [ RouterModule ]
})
export class AppRoutingModule {}
|