59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
/// <reference path='../../../../typings/browser/ambient/webtorrent/webtorrent.d.ts' />
|
|
|
|
import { Component, OnInit, ElementRef } from 'angular2/core';
|
|
import { RouteParams, CanDeactivate, ComponentInstruction } from 'angular2/router';
|
|
|
|
// TODO import it with systemjs
|
|
declare var WebTorrent: any;
|
|
|
|
import { Video } from '../../models/video';
|
|
import { VideosService } from '../../services/videos.service';
|
|
|
|
@Component({
|
|
selector: 'my-video-watch',
|
|
templateUrl: 'app/angular/videos/components/watch/videos-watch.component.html',
|
|
styleUrls: [ 'app/angular/videos/components/watch/videos-watch.component.css' ]
|
|
})
|
|
|
|
export class VideosWatchComponent implements OnInit, CanDeactivate {
|
|
video: Video;
|
|
|
|
private client: any;
|
|
|
|
constructor(
|
|
private _videosService: VideosService,
|
|
private _routeParams: RouteParams,
|
|
private _elementRef: ElementRef
|
|
) {
|
|
// TODO: use a service
|
|
this.client = new WebTorrent({ dht: false });
|
|
}
|
|
|
|
ngOnInit() {
|
|
let id = this._routeParams.get('id');
|
|
this._videosService.getVideo(id).subscribe(
|
|
video => this.loadVideo(video),
|
|
error => alert(error)
|
|
);
|
|
}
|
|
|
|
loadVideo(video: Video) {
|
|
this.video = video;
|
|
console.log('Adding ' + this.video.magnetUri + '.');
|
|
this.client.add(this.video.magnetUri, (torrent) => {
|
|
console.log('Added ' + this.video.magnetUri + '.');
|
|
torrent.files[0].appendTo(this._elementRef.nativeElement, (err) => {
|
|
if (err) {
|
|
alert('Cannot append the file.');
|
|
console.error(err);
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) : any {
|
|
console.log('Removing video from webtorrent.');
|
|
this.client.remove(this.video.magnetUri);
|
|
return true;
|
|
}
|
|
}
|