X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fcomment%2Fvideo-comment-add.component.ts;h=083509b832b1adc1fdeb10bed3d49a7ab4d19137;hb=88adad2d0f42028a116ccc8173f5a62ad306cc32;hp=9e499d829b63d73b575f5a37173ada92d8ef9112;hpb=1263fc4e6eff9ba4bf4c706c6e37c2e556bf8eb5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/videos/+video-watch/comment/video-comment-add.component.ts b/client/src/app/videos/+video-watch/comment/video-comment-add.component.ts index 9e499d829..083509b83 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment-add.component.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment-add.component.ts @@ -1,14 +1,17 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' -import { FormBuilder, FormGroup } from '@angular/forms' -import { NotificationsService } from 'angular2-notifications' -import { Observable } from 'rxjs/Observable' -import { VideoCommentCreate, VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model' +import { Router } from '@angular/router' +import { Notifier } from '@app/core' +import { Observable } from 'rxjs' +import { VideoCommentCreate } from '../../../../../../shared/models/videos/video-comment.model' import { FormReactive } from '../../../shared' -import { VIDEO_COMMENT_TEXT } from '../../../shared/forms/form-validators/video-comment' import { User } from '../../../shared/users' import { Video } from '../../../shared/video/video.model' import { VideoComment } from './video-comment.model' import { VideoCommentService } from './video-comment.service' +import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' +import { VideoCommentValidatorsService } from '@app/shared/forms/form-validators/video-comment-validators.service' +import { NgbModal } from '@ng-bootstrap/ng-bootstrap' +import { AuthService } from '@app/core/auth' @Component({ selector: 'my-video-comment-add', @@ -23,60 +26,75 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { @Input() focusOnInit = false @Output() commentCreated = new EventEmitter() + @Output() cancel = new EventEmitter() - form: FormGroup - formErrors = { - 'text': '' - } - validationMessages = { - 'text': VIDEO_COMMENT_TEXT.MESSAGES - } + @ViewChild('visitorModal', { static: true }) visitorModal: NgbModal + @ViewChild('textarea', { static: true }) textareaElement: ElementRef - @ViewChild('textarea') private textareaElement: ElementRef + addingComment = false constructor ( - private formBuilder: FormBuilder, - private notificationsService: NotificationsService, - private videoCommentService: VideoCommentService + protected formValidatorService: FormValidatorService, + private videoCommentValidatorsService: VideoCommentValidatorsService, + private notifier: Notifier, + private videoCommentService: VideoCommentService, + private authService: AuthService, + private modalService: NgbModal, + private router: Router ) { super() } - buildForm () { - this.form = this.formBuilder.group({ - text: [ '', VIDEO_COMMENT_TEXT.VALIDATORS ] - }) - - this.form.valueChanges.subscribe(data => this.onValueChanged(data)) - } - ngOnInit () { - this.buildForm() + this.buildForm({ + text: this.videoCommentValidatorsService.VIDEO_COMMENT_TEXT + }) - if (this.focusOnInit === true) { - this.textareaElement.nativeElement.focus() - } + if (this.user) { + if (this.focusOnInit === true) { + this.textareaElement.nativeElement.focus() + } - if (this.parentComment) { - const mentions = this.parentComments - .filter(c => c.account.id !== this.user.account.id) - .map(c => '@' + c.account.name) + if (this.parentComment) { + const mentions = this.parentComments + .filter(c => c.account.id !== this.user.account.id) // Don't add mention of ourselves + .map(c => '@' + c.by) - const mentionsSet = new Set(mentions) - const mentionsText = Array.from(mentionsSet).join(' ') + ' ' + const mentionsSet = new Set(mentions) + const mentionsText = Array.from(mentionsSet).join(' ') + ' ' - this.form.patchValue({ text: mentionsText }) + this.form.patchValue({ text: mentionsText }) + } } } onValidKey () { - this.onValueChanged() + this.check() if (!this.form.valid) return this.formValidated() } + openVisitorModal (event: any) { + if (this.user === null) { // we only open it for visitors + // fixing ng-bootstrap ModalService and the "Expression Changed After It Has Been Checked" Error + event.srcElement.blur() + event.preventDefault() + + this.modalService.open(this.visitorModal) + } + } + + hideVisitorModal () { + this.modalService.dismissAll() + } + formValidated () { + // If we validate very quickly the comment form, we might comment twice + if (this.addingComment) return + + this.addingComment = true + const commentCreate: VideoCommentCreate = this.form.value let obs: Observable @@ -88,11 +106,16 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { obs.subscribe( comment => { + this.addingComment = false this.commentCreated.emit(comment) this.form.reset() }, - err => this.notificationsService.error('Error', err.text) + err => { + this.addingComment = false + + this.notifier.error(err.text) + } ) } @@ -100,8 +123,18 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { return this.form.value['text'] } - getUserAvatarUrl () { - return this.user.getAvatarUrl() + getUri () { + return window.location.href + } + + getAvatarUrl () { + if (this.user) return this.user.accountAvatarUrl + return window.location.origin + '/client/assets/images/default-avatar.png' + } + + gotoLogin () { + this.hideVisitorModal() + this.router.navigate([ '/login' ]) } private addCommentReply (commentCreate: VideoCommentCreate) { @@ -113,4 +146,8 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { return this.videoCommentService .addCommentThread(this.video.id, commentCreate) } + + private cancelCommentReply () { + this.cancel.emit(null) + } }