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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { LoginGuard } from '../core'
import { MyFollowersComponent } from './my-follows/my-followers.component'
import { MySubscriptionsComponent } from './my-follows/my-subscriptions.component'
import { MyHistoryComponent } from './my-history/my-history.component'
import { MyLibraryComponent } from './my-library.component'
import { MyOwnershipComponent } from './my-ownership/my-ownership.component'
import { MyVideoImportsComponent } from './my-video-imports/my-video-imports.component'
import { MyVideoPlaylistCreateComponent } from './my-video-playlists/my-video-playlist-create.component'
import { MyVideoPlaylistElementsComponent } from './my-video-playlists/my-video-playlist-elements.component'
import { MyVideoPlaylistUpdateComponent } from './my-video-playlists/my-video-playlist-update.component'
import { MyVideoPlaylistsComponent } from './my-video-playlists/my-video-playlists.component'
import { MyVideosComponent } from './my-videos/my-videos.component'
const myLibraryRoutes: Routes = [
{
path: '',
component: MyLibraryComponent,
canActivateChild: [ LoginGuard ],
children: [
{
path: '',
redirectTo: 'video-channels',
pathMatch: 'full'
},
{
path: 'video-channels',
loadChildren: () => {
return import('./+my-video-channels/my-video-channels.module').then(m => m.MyVideoChannelsModule)
}
},
{
path: 'video-playlists',
component: MyVideoPlaylistsComponent,
data: {
meta: {
title: $localize`My playlists`
}
}
},
{
path: 'video-playlists/create',
component: MyVideoPlaylistCreateComponent,
data: {
meta: {
title: $localize`Create a new playlist`
}
}
},
{
path: 'video-playlists/:videoPlaylistId',
component: MyVideoPlaylistElementsComponent,
data: {
meta: {
title: $localize`Playlist elements`
}
}
},
{
path: 'video-playlists/update/:videoPlaylistId',
component: MyVideoPlaylistUpdateComponent,
data: {
meta: {
title: $localize`Update playlist`
}
}
},
{
path: 'videos',
component: MyVideosComponent,
data: {
meta: {
title: $localize`My videos`
},
reuse: {
enabled: true,
key: 'my-videos-list'
}
}
},
{
path: 'video-imports',
component: MyVideoImportsComponent,
data: {
meta: {
title: $localize`My video imports`
}
}
},
{
path: 'subscriptions',
component: MySubscriptionsComponent,
data: {
meta: {
title: $localize`My subscriptions`
}
}
},
{
path: 'followers',
component: MyFollowersComponent,
data: {
meta: {
title: $localize`My followers`
}
}
},
{
path: 'ownership',
component: MyOwnershipComponent,
data: {
meta: {
title: $localize`Ownership changes`
}
}
},
{
path: 'history/videos',
component: MyHistoryComponent,
data: {
meta: {
title: $localize`My video history`
},
reuse: {
enabled: true,
key: 'my-videos-history-list'
}
}
}
]
}
]
@NgModule({
imports: [ RouterModule.forChild(myLibraryRoutes) ],
exports: [ RouterModule ]
})
export class MyLibraryRoutingModule {}
|