aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/shared-main/video/video.resolver.ts
blob: dc07bb5dafcbd666afacbe7492533281bd203cbf (plain) (tree)
1
2
3
4
5
6
                                          
                                                        
                                              

             
                            










                                                   
import { Injectable } from '@angular/core'
import { ActivatedRouteSnapshot } from '@angular/router'
import { VideoService } from './video.service'

@Injectable()
export class VideoResolver {
  constructor (
    private videoService: VideoService
  ) {
  }

  resolve (route: ActivatedRouteSnapshot) {
    const videoId: string = route.params['videoId']

    return this.videoService.getVideo({ videoId })
  }
}