]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/admin/friends/friend-add/friend-add.component.ts
Server: use preview image for opengraph
[github/Chocobozzz/PeerTube.git] / client / src / app / admin / friends / friend-add / friend-add.component.ts
CommitLineData
9e8aa10d 1import { Component, OnInit } from '@angular/core';
ab32b0fc 2import { FormControl, FormGroup } from '@angular/forms';
e105c19c
C
3import { Router } from '@angular/router';
4
9e8aa10d 5import { validateUrl } from '../../../shared';
e105c19c
C
6import { FriendService } from '../shared';
7
8@Component({
9 selector: 'my-friend-add',
ec8d8440
C
10 templateUrl: './friend-add.component.html',
11 styleUrls: [ './friend-add.component.scss' ]
e105c19c 12})
9e8aa10d 13export class FriendAddComponent implements OnInit {
4b2f33f3 14 form: FormGroup;
9e8aa10d 15 urls = [ ];
e105c19c
C
16 error: string = null;
17
18 constructor(private router: Router, private friendService: FriendService) {}
19
9e8aa10d 20 ngOnInit() {
4b2f33f3 21 this.form = new FormGroup({});
9e8aa10d
C
22 this.addField();
23 }
24
e105c19c 25 addField() {
4b2f33f3 26 this.form.addControl(`url-${this.urls.length}`, new FormControl('', [ validateUrl ]));
e105c19c
C
27 this.urls.push('');
28 }
29
30 customTrackBy(index: number, obj: any): any {
31 return index;
32 }
33
34 displayAddField(index: number) {
35 return index === (this.urls.length - 1);
36 }
37
38 displayRemoveField(index: number) {
39 return (index !== 0 || this.urls.length > 1) && index !== (this.urls.length - 1);
40 }
41
9e8aa10d
C
42 isFormValid() {
43 // Do not check the last input
44 for (let i = 0; i < this.urls.length - 1; i++) {
4b2f33f3 45 if (!this.form.controls[`url-${i}`].valid) return false;
9e8aa10d
C
46 }
47
48 const lastIndex = this.urls.length - 1;
49 // If the last input (which is not the first) is empty, it's ok
50 if (this.urls[lastIndex] === '' && lastIndex !== 0) {
51 return true;
52 } else {
4b2f33f3 53 return this.form.controls[`url-${lastIndex}`].valid;
9e8aa10d
C
54 }
55 }
56
e105c19c 57 removeField(index: number) {
f84a89f0 58 // Remove the last control
4b2f33f3 59 this.form.removeControl(`url-${this.urls.length - 1}`);
e105c19c
C
60 this.urls.splice(index, 1);
61 }
62
63 makeFriends() {
64 this.error = '';
65
66 const notEmptyUrls = this.getNotEmptyUrls();
67 if (notEmptyUrls.length === 0) {
68 this.error = 'You need to specify at less 1 url.';
69 return;
70 }
71
e105c19c
C
72 if (!this.isUrlsUnique(notEmptyUrls)) {
73 this.error = 'Urls need to be unique.';
74 return;
75 }
76
0f6da32b 77 const confirmMessage = 'Are you sure to make friends with:\n - ' + notEmptyUrls.join('\n - ');
e105c19c
C
78 if (!confirm(confirmMessage)) return;
79
80 this.friendService.makeFriends(notEmptyUrls).subscribe(
81 status => {
ab32b0fc
C
82 // TODO: extractdatastatus
83 // if (status === 409) {
84 // alert('Already made friends!');
85 // } else {
9ab1071c
C
86 alert('Make friends request sent!');
87 this.router.navigate([ '/admin/friends/list' ]);
ab32b0fc 88 // }
e105c19c 89 },
da4971c1 90 error => alert(error.text)
e105c19c
C
91 );
92 }
93
94 private getNotEmptyUrls() {
95 const notEmptyUrls = [];
96
4b2f33f3
C
97 Object.keys(this.form.value).forEach((urlKey) => {
98 const url = this.form.value[urlKey];
e105c19c
C
99 if (url !== '') notEmptyUrls.push(url);
100 });
101
102 return notEmptyUrls;
103 }
104
e105c19c
C
105 private isUrlsUnique(urls: string[]) {
106 return urls.every(url => urls.indexOf(url) === urls.lastIndexOf(url));
107 }
108}