X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2Fvideos-routing.module.ts;h=926dfaab0845da986c5baf27c491417b025f4f60;hb=9df52d660feb722404be00a50f3c8a612bec1c15;hp=e0e877fc673eba0c3781ccfa6f7ba9e01af5d5f7;hpb=1942f11d5ee6926ad93dc1b79fae18325ba5de18;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+videos/videos-routing.module.ts b/client/src/app/+videos/videos-routing.module.ts index e0e877fc6..926dfaab0 100644 --- a/client/src/app/+videos/videos-routing.module.ts +++ b/client/src/app/+videos/videos-routing.module.ts @@ -1,11 +1,10 @@ import { NgModule } from '@angular/core' import { RouterModule, Routes } from '@angular/router' -import { MetaGuard } from '@ngx-meta/core' +import { LoginGuard } from '@app/core' +import { VideoTrendingComponent } from './video-list' import { VideoOverviewComponent } from './video-list/overview/video-overview.component' import { VideoLocalComponent } from './video-list/video-local.component' -import { VideoMostLikedComponent } from './video-list/video-most-liked.component' import { VideoRecentlyAddedComponent } from './video-list/video-recently-added.component' -import { VideoTrendingComponent } from './video-list/video-trending.component' import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component' import { VideosComponent } from './videos.component' @@ -13,14 +12,13 @@ const videosRoutes: Routes = [ { path: '', component: VideosComponent, - canActivateChild: [ MetaGuard ], children: [ { path: 'overview', component: VideoOverviewComponent, data: { meta: { - title: 'Discover videos' + title: $localize`Discover videos` } } }, @@ -29,33 +27,20 @@ const videosRoutes: Routes = [ component: VideoTrendingComponent, data: { meta: { - title: 'Trending videos' - }, - reuse: { - enabled: true, - key: 'trending-videos-list' + title: $localize`Trending videos` } } }, { path: 'most-liked', - component: VideoMostLikedComponent, - data: { - meta: { - title: 'Most liked videos' - }, - reuse: { - enabled: true, - key: 'most-liked-videos-list' - } - } + redirectTo: 'trending?alg=most-liked' }, { path: 'recently-added', component: VideoRecentlyAddedComponent, data: { meta: { - title: 'Recently added videos' + title: $localize`Recently added videos` }, reuse: { enabled: true, @@ -65,10 +50,11 @@ const videosRoutes: Routes = [ }, { path: 'subscriptions', + canActivate: [ LoginGuard ], component: VideoUserSubscriptionsComponent, data: { meta: { - title: 'Subscriptions' + title: $localize`Subscriptions` }, reuse: { enabled: true, @@ -81,38 +67,13 @@ const videosRoutes: Routes = [ component: VideoLocalComponent, data: { meta: { - title: 'Local videos' + title: $localize`Local videos` }, reuse: { enabled: true, key: 'local-videos-list' } } - }, - { - path: 'upload', - loadChildren: () => import('@app/+videos/+video-edit/video-add.module').then(m => m.VideoAddModule), - data: { - meta: { - title: 'Upload a video' - } - } - }, - { - path: 'update/:uuid', - loadChildren: () => import('@app/+videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule), - data: { - meta: { - title: 'Edit a video' - } - } - }, - { - path: 'watch', - loadChildren: () => import('@app/+videos/+video-watch/video-watch.module').then(m => m.VideoWatchModule), - data: { - preload: 3000 - } } ] }