]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/angular/videos/components/add/videos-add.component.ts
Make the sort/results bar less ugly
[github/Chocobozzz/PeerTube.git] / client / angular / videos / components / add / videos-add.component.ts
CommitLineData
230809ef
C
1import { Component, ElementRef, OnInit } from '@angular/core';
2import { Router } from '@angular/router-deprecated';
dc8bc31b 3
8140a704
C
4import { PROGRESSBAR_DIRECTIVES } from 'ng2-bootstrap/components/progressbar';
5import { BytesPipe } from 'angular-pipes/src/math/bytes.pipe';
6
1553e15d
C
7import { AuthService } from '../../../users/services/auth.service';
8import { User } from '../../../users/models/user';
9
98b01bac 10// TODO: import it with systemjs
dc8bc31b
C
11declare var jQuery:any;
12
13@Component({
14 selector: 'my-videos-add',
15 styleUrls: [ 'app/angular/videos/components/add/videos-add.component.css' ],
8140a704
C
16 templateUrl: 'app/angular/videos/components/add/videos-add.component.html',
17 directives: [ PROGRESSBAR_DIRECTIVES ],
18 pipes: [ BytesPipe ]
dc8bc31b
C
19})
20
21export class VideosAddComponent implements OnInit {
1553e15d 22 user: User;
dc8bc31b
C
23 fileToUpload: any;
24 progressBar: { value: number; max: number; } = { value: 0, max: 0 };
25
26 private _form: any;
27
1553e15d
C
28 constructor(
29 private _router: Router, private _elementRef: ElementRef,
30 private _authService: AuthService
31 ) {}
dc8bc31b
C
32
33 ngOnInit() {
1553e15d 34 this.user = User.load();
8c9c1942 35 jQuery(this._elementRef.nativeElement).find('#videofile').fileupload({
98b01bac
C
36 url: '/api/v1/videos',
37 dataType: 'json',
dc8bc31b
C
38 singleFileUploads: true,
39 multipart: true,
dc8bc31b
C
40 autoupload: false,
41
42 add: (e, data) => {
43 this._form = data;
44 this.fileToUpload = data['files'][0];
45 },
46
47 progressall: (e, data) => {
48 this.progressBar.value = data.loaded;
86e054b2
C
49 // The server is a little bit slow to answer (has to seed the video)
50 // So we add more time to the progress bar (+10%)
51 this.progressBar.max = data.total + (0.1 * data.total);
dc8bc31b
C
52 },
53
54 done: (e, data) => {
86e054b2 55 this.progressBar.value = this.progressBar.max;
98b01bac
C
56 console.log('Video uploaded.');
57
dc8bc31b
C
58 // Print all the videos once it's finished
59 this._router.navigate(['VideosList']);
60 }
61 });
62 }
63
64 uploadFile() {
1553e15d 65 this._form.headers = this._authService.getRequestHeader().toJSON();
dc8bc31b
C
66 this._form.formData = jQuery(this._elementRef.nativeElement).find('form').serializeArray();
67 this._form.submit();
68 }
69}