PeerTube/client/src/app/shared/shared-main/video/video.resolver.ts

18 lines
411 B
TypeScript

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 })
}
}