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

231 lines
5.9 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';
import { NotificationsService } from 'angular2-notifications';
2016-11-20 16:18:15 +00:00
import { AuthService } from '../../core';
2017-03-22 20:15:55 +00:00
import {
FormReactive,
VIDEO_NAME,
VIDEO_CATEGORY,
2017-03-27 19:11:37 +00:00
VIDEO_LICENCE,
2017-04-07 12:57:05 +00:00
VIDEO_LANGUAGE,
2017-03-22 20:15:55 +00:00
VIDEO_DESCRIPTION,
VIDEO_TAGS
} from '../../shared';
import { VideoService } from '../shared';
2016-03-14 12:50:19 +00:00
@Component({
selector: 'my-videos-add',
styleUrls: [ './video-edit.component.scss' ],
templateUrl: './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;
2017-03-22 20:15:55 +00:00
videoCategories = [];
2017-03-27 19:11:37 +00:00
videoLicences = [];
2017-04-07 12:57:05 +00:00
videoLanguages = [];
2016-09-09 20:16:51 +00:00
error: string = null;
form: FormGroup;
formErrors = {
name: '',
2017-03-22 20:15:55 +00:00
category: '',
2017-03-27 19:11:37 +00:00
licence: '',
2017-04-07 12:57:05 +00:00
language: '',
2016-09-09 20:16:51 +00:00
description: '',
currentTag: ''
};
validationMessages = {
name: VIDEO_NAME.MESSAGES,
2017-03-22 20:15:55 +00:00
category: VIDEO_CATEGORY.MESSAGES,
2017-03-27 19:11:37 +00:00
licence: VIDEO_LICENCE.MESSAGES,
2017-04-07 12:57:05 +00:00
language: VIDEO_LANGUAGE.MESSAGES,
2016-09-09 20:16:51 +00:00
description: VIDEO_DESCRIPTION.MESSAGES,
currentTag: VIDEO_TAGS.MESSAGES
};
2016-03-14 12:50:19 +00:00
// Special error messages
tagsError = '';
fileError = '';
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,
2017-03-22 20:15:55 +00:00
private notificationsService: NotificationsService,
private videoService: VideoService
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 ],
2017-04-04 19:37:03 +00:00
nsfw: [ false ],
2017-03-22 20:15:55 +00:00
category: [ '', VIDEO_CATEGORY.VALIDATORS ],
2017-03-27 19:11:37 +00:00
licence: [ '', VIDEO_LICENCE.VALIDATORS ],
2017-04-07 12:57:05 +00:00
language: [ '', VIDEO_LANGUAGE.VALIDATORS ],
2016-09-09 20:16:51 +00:00
description: [ '', VIDEO_DESCRIPTION.VALIDATORS ],
currentTag: [ '', VIDEO_TAGS.VALIDATORS ]
});
this.form.valueChanges.subscribe(data => this.onValueChanged(data));
}
2016-03-14 12:50:19 +00:00
ngOnInit() {
2017-03-22 20:15:55 +00:00
this.videoCategories = this.videoService.videoCategories;
2017-03-27 19:11:37 +00:00
this.videoLicences = this.videoService.videoLicences;
2017-04-07 12:57:05 +00:00
this.videoLanguages = this.videoService.videoLanguages;
2017-03-22 20:15:55 +00:00
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'];
2017-04-04 19:37:03 +00:00
const nsfw = this.form.value['nsfw'];
2017-03-22 20:15:55 +00:00
const category = this.form.value['category'];
2017-03-27 19:11:37 +00:00
const licence = this.form.value['licence'];
2017-04-07 12:57:05 +00:00
const language = this.form.value['language'];
2016-09-09 20:16:51 +00:00
const description = this.form.value['description'];
form.append('name', name);
2017-03-22 20:15:55 +00:00
form.append('category', category);
2017-04-04 19:37:03 +00:00
form.append('nsfw', nsfw);
2017-03-27 19:11:37 +00:00
form.append('licence', licence);
2017-04-07 12:57:05 +00:00
// Language is optional
if (language) {
form.append('language', language);
}
2016-09-09 20:16:51 +00:00
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();
}
checkForm() {
this.forceCheck();
if (this.filename === null) {
this.fileError = 'You did not add a file.';
}
return this.form.valid === true && this.tagsError === '' && this.fileError === '';
}
fileChanged() {
this.fileError = '';
}
onTagKeyPress(event: KeyboardEvent) {
// Enter press
if (event.keyCode === 13) {
this.addTagIfPossible();
}
}
removeFile() {
this.uploader.clearQueue();
}
removeTag(tag: string) {
2016-09-09 20:16:51 +00:00
this.tags.splice(this.tags.indexOf(tag), 1);
this.form.get('currentTag').enable();
2016-03-14 12:50:19 +00:00
}
upload() {
// Maybe the user forgot to press "enter" when he filled the field
this.addTagIfPossible();
if (this.checkForm() === false) {
return;
}
const item = this.uploader.queue[0];
// TODO: wait for https://github.com/valor-software/ng2-file-upload/pull/242
item.alias = 'videofile';
// FIXME: remove
// Run detection change for progress bar
const interval = setInterval(() => { ; }, 250);
item.onSuccess = () => {
clearInterval(interval);
console.log('Video uploaded.');
this.notificationsService.success('Success', 'Video uploaded.');
// Print all the videos once it's finished
this.router.navigate(['/videos/list']);
};
item.onError = (response: string, status: number) => {
clearInterval(interval);
// 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
}
private addTagIfPossible() {
const currentTag = this.form.value['currentTag'];
if (currentTag === undefined) return;
// Check if the tag is valid and does not already exist
if (
currentTag.length >= 2 &&
this.form.controls['currentTag'].valid &&
this.tags.indexOf(currentTag) === -1
) {
this.tags.push(currentTag);
this.form.patchValue({ currentTag: '' });
if (this.tags.length >= 3) {
this.form.get('currentTag').disable();
}
this.tagsError = '';
}
}
2016-03-14 12:50:19 +00:00
}