37d7cf2a4843611c6a3e1b53031499d50f2df404
[oweals/peertube.git] /
1 import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'
2 import { Notifier } from '@app/core'
3 import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
4 import { FormReactive, UserService } from '../../../shared/index'
5 import { Video } from '@app/shared/video/video.model'
6 import { I18n } from '@ngx-translate/i18n-polyfill'
7 import { FormValidatorService, VideoChangeOwnershipValidatorsService } from '@app/shared'
8 import { VideoOwnershipService } from '@app/shared/video-ownership'
9
10 @Component({
11   selector: 'my-video-change-ownership',
12   templateUrl: './video-change-ownership.component.html',
13   styleUrls: [ './video-change-ownership.component.scss' ]
14 })
15 export class VideoChangeOwnershipComponent extends FormReactive implements OnInit {
16   @ViewChild('modal') modal: ElementRef
17
18   usernamePropositions: string[]
19
20   error: string = null
21
22   private video: Video | undefined = undefined
23
24   constructor (
25     protected formValidatorService: FormValidatorService,
26     private videoChangeOwnershipValidatorsService: VideoChangeOwnershipValidatorsService,
27     private videoOwnershipService: VideoOwnershipService,
28     private notifier: Notifier,
29     private userService: UserService,
30     private modalService: NgbModal,
31     private i18n: I18n
32   ) {
33     super()
34   }
35
36   ngOnInit () {
37     this.buildForm({
38       username: this.videoChangeOwnershipValidatorsService.USERNAME
39     })
40     this.usernamePropositions = []
41   }
42
43   show (video: Video) {
44     this.video = video
45     this.modalService
46       .open(this.modal)
47       .result
48       .then(() => this.changeOwnership())
49       .catch((_) => _) // Called when closing (cancel) the modal without validating, do nothing
50   }
51
52   search (event: { query: string }) {
53     const query = event.query
54     this.userService.autocomplete(query)
55       .subscribe(
56         usernames => this.usernamePropositions = usernames,
57
58         err => this.notifier.error(err.message)
59       )
60   }
61
62   changeOwnership () {
63     const username = this.form.value['username']
64
65     this.videoOwnershipService
66       .changeOwnership(this.video.id, username)
67       .subscribe(
68         () => this.notifier.success(this.i18n('Ownership change request sent.')),
69
70         err => this.notifier.error(err.message)
71       )
72   }
73 }