aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+accounts/accounts-routing.module.ts
blob: 3bf0f7185c9eb395736a40c1cbb0041d2783e2b5 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                      
                                                                                  


                                                                                                         
 
                                
   



                               
                       
                                 



                                    
                                     


                         








                                                    



                                          
                                            



                                      



           

                                          

                 
                                                          







           
                                                     

                           
                                     
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { MetaGuard } from '@ngx-meta/core'
import { AccountSearchComponent } from './account-search/account-search.component'
import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
import { AccountVideosComponent } from './account-videos/account-videos.component'
import { AccountsComponent } from './accounts.component'

const accountsRoutes: Routes = [
  {
    path: 'peertube',
    redirectTo: '/videos/local'
  },
  {
    path: ':accountId',
    component: AccountsComponent,
    canActivateChild: [ MetaGuard ],
    children: [
      {
        path: '',
        redirectTo: 'video-channels',
        pathMatch: 'full'
      },
      {
        path: 'video-channels',
        component: AccountVideoChannelsComponent,
        data: {
          meta: {
            title: $localize`Account video channels`
          }
        }
      },
      {
        path: 'videos',
        component: AccountVideosComponent,
        data: {
          meta: {
            title: $localize`Account videos`
          },
          reuse: {
            enabled: true,
            key: 'account-videos-list'
          }
        }
      },
      {
        path: 'search',
        component: AccountSearchComponent,
        data: {
          meta: {
            title: $localize`Search videos within account`
          }
        }
      }
    ]
  }
]

@NgModule({
  imports: [ RouterModule.forChild(accountsRoutes) ],
  exports: [ RouterModule ]
})
export class AccountsRoutingModule {}