1
0
Fork 0
peertube/client/src/app/videos/video-add/video-add.component.ts

170 lines
4.3 KiB
TypeScript
Raw Normal View History

2016-05-13 12:18:37 +00:00
import { Component, ElementRef, OnInit } from '@angular/core';
2016-09-09 20:16:51 +00:00
import { FormBuilder, FormGroup } from '@angular/forms';
2016-06-10 15:43:40 +00:00
import { Router } from '@angular/router';
2016-03-14 12:50:19 +00:00
2016-09-06 20:40:57 +00:00
import { FileUploader } from 'ng2-file-upload/ng2-file-upload';
2016-09-09 20:16:51 +00:00
import { AuthService, FormReactive, VIDEO_NAME, VIDEO_DESCRIPTION, VIDEO_TAGS } from '../../shared';
2016-03-14 12:50:19 +00:00
@Component({
selector: 'my-videos-add',
styles: [ require('./video-add.component.scss') ],
2016-09-06 20:40:57 +00:00
template: require('./video-add.component.html')
2016-03-14 12:50:19 +00:00
})
2016-09-09 20:16:51 +00:00
export class VideoAddComponent extends FormReactive implements OnInit {
tags: string[] = [];
uploader: FileUploader;
2016-09-09 20:16:51 +00:00
error: string = null;
form: FormGroup;
formErrors = {
name: '',
2016-09-09 20:16:51 +00:00
description: '',
currentTag: ''
};
validationMessages = {
name: VIDEO_NAME.MESSAGES,
description: VIDEO_DESCRIPTION.MESSAGES,
currentTag: VIDEO_TAGS.MESSAGES
};
2016-03-14 12:50:19 +00:00
constructor(
private authService: AuthService,
2016-05-27 15:49:18 +00:00
private elementRef: ElementRef,
2016-09-09 20:16:51 +00:00
private formBuilder: FormBuilder,
private router: Router
2016-09-09 20:16:51 +00:00
) {
super();
}
2016-03-14 12:50:19 +00:00
get filename() {
if (this.uploader.queue.length === 0) {
return null;
}
return this.uploader.queue[0].file.name;
}
2016-09-09 20:16:51 +00:00
buildForm() {
this.form = this.formBuilder.group({
name: [ '', VIDEO_NAME.VALIDATORS ],
description: [ '', VIDEO_DESCRIPTION.VALIDATORS ],
currentTag: [ '', VIDEO_TAGS.VALIDATORS ]
});
this.form.valueChanges.subscribe(data => this.onValueChanged(data));
}
getInvalidFieldsTitle() {
let title = '';
2016-09-09 20:16:51 +00:00
const nameControl = this.form.controls['name'];
const descriptionControl = this.form.controls['description'];
if (!nameControl.valid) {
title += 'A name is required\n';
}
2016-09-09 20:16:51 +00:00
if (this.tags.length === 0) {
title += 'At least one tag is required\n';
}
if (this.filename === null) {
title += 'A file is required\n';
}
if (!descriptionControl.valid) {
title += 'A description is required\n';
}
return title;
}
2016-03-14 12:50:19 +00:00
ngOnInit() {
this.uploader = new FileUploader({
authToken: this.authService.getRequestHeaderValue(),
queueLimit: 1,
2016-03-14 21:16:43 +00:00
url: '/api/v1/videos',
removeAfterUpload: true
2016-03-14 12:50:19 +00:00
});
this.uploader.onBuildItemForm = (item, form) => {
2016-09-09 20:16:51 +00:00
const name = this.form.value['name'];
const description = this.form.value['description'];
form.append('name', name);
form.append('description', description);
2016-09-09 20:16:51 +00:00
for (let i = 0; i < this.tags.length; i++) {
form.append(`tags[${i}]`, this.tags[i]);
}
};
2016-09-09 20:16:51 +00:00
this.buildForm();
}
onTagKeyPress(event: KeyboardEvent) {
2016-09-09 20:16:51 +00:00
const currentTag = this.form.value['currentTag'];
// Enter press
if (event.keyCode === 13) {
// Check if the tag is valid and does not already exist
if (
2016-09-09 20:16:51 +00:00
currentTag !== '' &&
this.form.controls['currentTag'].valid &&
this.tags.indexOf(currentTag) === -1
) {
2016-09-09 20:16:51 +00:00
this.tags.push(currentTag);
this.form.patchValue({ currentTag: '' });
if (this.tags.length >= 3) {
this.form.get('currentTag').disable();
}
}
}
}
removeFile() {
this.uploader.clearQueue();
}
removeTag(tag: string) {
2016-09-09 20:16:51 +00:00
this.tags.splice(this.tags.indexOf(tag), 1);
2016-03-14 12:50:19 +00:00
}
upload() {
const item = this.uploader.queue[0];
// TODO: wait for https://github.com/valor-software/ng2-file-upload/pull/242
item.alias = 'videofile';
item.onSuccess = () => {
console.log('Video uploaded.');
// Print all the videos once it's finished
this.router.navigate(['/videos/list']);
};
item.onError = (response: string, status: number) => {
// We need to handle manually these cases beceause we use the FileUpload component
if (status === 400) {
this.error = response;
} else if (status === 401) {
this.error = 'Access token was expired, refreshing token...';
this.authService.refreshAccessToken().subscribe(
() => {
// Update the uploader request header
this.uploader.authToken = this.authService.getRequestHeaderValue();
this.error += ' access token refreshed. Please retry your request.';
}
);
} else {
this.error = 'Unknow error';
console.error(this.error);
}
};
this.uploader.uploadAll();
2016-03-14 12:50:19 +00:00
}
}