1 import { Component, ElementRef, OnInit, ViewChild } from '@angular/core'
2 import { NotificationsService } from 'angular2-notifications'
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'
11 selector: 'my-video-change-ownership',
12 templateUrl: './video-change-ownership.component.html',
13 styleUrls: [ './video-change-ownership.component.scss' ]
15 export class VideoChangeOwnershipComponent extends FormReactive implements OnInit {
16 @ViewChild('modal') modal: ElementRef
18 usernamePropositions: string[]
22 private video: Video | undefined = undefined
25 protected formValidatorService: FormValidatorService,
26 private videoChangeOwnershipValidatorsService: VideoChangeOwnershipValidatorsService,
27 private videoOwnershipService: VideoOwnershipService,
28 private notificationsService: NotificationsService,
29 private userService: UserService,
30 private modalService: NgbModal,
38 username: this.videoChangeOwnershipValidatorsService.USERNAME
40 this.usernamePropositions = []
48 .then(() => this.changeOwnership())
49 .catch((_) => _) // Called when closing (cancel) the modal without validating, do nothing
53 const query = event.query
54 this.userService.autocomplete(query)
57 this.usernamePropositions = usernames
60 err => this.notificationsService.error('Error', err.message)
65 const username = this.form.value['username']
67 this.videoOwnershipService
68 .changeOwnership(this.video.id, username)
70 () => this.notificationsService.success(this.i18n('Success'), this.i18n('Ownership changed.')),
72 err => this.notificationsService.error(this.i18n('Error'), err.message)