Chocobozzz/PeerTube

View on GitHub
client/src/app/+videos/routes.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { UrlSegment } from '@angular/router'
import { LoginGuard } from '@app/core'
import { OverviewService, VideosListCommonPageComponent } from './video-list'
import { VideoOverviewComponent } from './video-list/overview/video-overview.component'
import { VideoUserSubscriptionsComponent } from './video-list/video-user-subscriptions.component'
import { BlocklistService } from '@app/shared/shared-moderation/blocklist.service'
import { VideoBlockService } from '@app/shared/shared-moderation/video-block.service'
import { UserSubscriptionService } from '@app/shared/shared-user-subscription/user-subscription.service'
import { VideoPlaylistService } from '@app/shared/shared-video-playlist/video-playlist.service'
import { AbuseService } from '@app/shared/shared-moderation/abuse.service'

export default [
  {
    path: '',
    providers: [
      OverviewService,
      UserSubscriptionService,
      VideoPlaylistService,
      BlocklistService,
      VideoBlockService,
      AbuseService
    ],
    children: [
      {
        path: 'overview',
        component: VideoOverviewComponent,
        data: {
          meta: {
            title: $localize`Discover videos`
          }
        }
      },

      {
        // Old URL redirection
        path: 'most-liked',
        redirectTo: 'trending?sort=most-liked'
      },
      {
        matcher: (url: UrlSegment[]) => {
          if (url.length === 1 && [ 'recently-added', 'trending', 'local' ].includes(url[0].path)) {
            return {
              consumed: url,
              posParams: {
                page: new UrlSegment(url[0].path, {})
              }
            }
          }

          return null
        },

        component: VideosListCommonPageComponent,
        data: {
          reuse: {
            enabled: true,
            key: 'videos-list'
          }
        }
      },

      {
        path: 'subscriptions',
        canActivate: [ LoginGuard ],
        component: VideoUserSubscriptionsComponent,
        data: {
          meta: {
            title: $localize`Subscriptions`
          },
          reuse: {
            enabled: true,
            key: 'subscription-videos-list'
          }
        }
      }
    ]
  }
]