diff options
Diffstat (limited to 'client/src/app/videos')
5 files changed, 21 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/comment/video-comment-add.component.html b/client/src/app/videos/+video-watch/comment/video-comment-add.component.html index 0eaa0d447..41d00da08 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment-add.component.html +++ b/client/src/app/videos/+video-watch/comment/video-comment-add.component.html | |||
@@ -4,6 +4,7 @@ | |||
4 | 4 | ||
5 | <div class="form-group"> | 5 | <div class="form-group"> |
6 | <textarea placeholder="Add comment..." formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }" #textarea> | 6 | <textarea placeholder="Add comment..." formControlName="text" [ngClass]="{ 'input-error': formErrors['text'] }" #textarea> |
7 | |||
7 | </textarea> | 8 | </textarea> |
8 | <div *ngIf="formErrors.text" class="form-error"> | 9 | <div *ngIf="formErrors.text" class="form-error"> |
9 | {{ formErrors.text }} | 10 | {{ formErrors.text }} |
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 27655eca7..3e064efcb 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 | |||
@@ -2,7 +2,7 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } | |||
2 | import { FormBuilder, FormGroup } from '@angular/forms' | 2 | import { FormBuilder, FormGroup } from '@angular/forms' |
3 | import { NotificationsService } from 'angular2-notifications' | 3 | import { NotificationsService } from 'angular2-notifications' |
4 | import { Observable } from 'rxjs/Observable' | 4 | import { Observable } from 'rxjs/Observable' |
5 | import { VideoCommentCreate } from '../../../../../../shared/models/videos/video-comment.model' | 5 | import { VideoCommentCreate, VideoCommentThreadTree } from '../../../../../../shared/models/videos/video-comment.model' |
6 | import { FormReactive } from '../../../shared' | 6 | import { FormReactive } from '../../../shared' |
7 | import { VIDEO_COMMENT_TEXT } from '../../../shared/forms/form-validators/video-comment' | 7 | import { VIDEO_COMMENT_TEXT } from '../../../shared/forms/form-validators/video-comment' |
8 | import { User } from '../../../shared/users' | 8 | import { User } from '../../../shared/users' |
@@ -19,6 +19,7 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { | |||
19 | @Input() user: User | 19 | @Input() user: User |
20 | @Input() video: Video | 20 | @Input() video: Video |
21 | @Input() parentComment: VideoComment | 21 | @Input() parentComment: VideoComment |
22 | @Input() parentComments: VideoComment[] | ||
22 | @Input() focusOnInit = false | 23 | @Input() focusOnInit = false |
23 | 24 | ||
24 | @Output() commentCreated = new EventEmitter<VideoCommentCreate>() | 25 | @Output() commentCreated = new EventEmitter<VideoCommentCreate>() |
@@ -55,6 +56,17 @@ export class VideoCommentAddComponent extends FormReactive implements OnInit { | |||
55 | if (this.focusOnInit === true) { | 56 | if (this.focusOnInit === true) { |
56 | this.textareaElement.nativeElement.focus() | 57 | this.textareaElement.nativeElement.focus() |
57 | } | 58 | } |
59 | |||
60 | if (this.parentComment) { | ||
61 | const mentions = this.parentComments | ||
62 | .filter(c => c.account.id !== this.user.account.id) | ||
63 | .map(c => '@' + c.account.name) | ||
64 | |||
65 | const mentionsSet = new Set(mentions) | ||
66 | const mentionsText = Array.from(mentionsSet).join(' ') + ' ' | ||
67 | |||
68 | this.form.patchValue({ text: mentionsText }) | ||
69 | } | ||
58 | } | 70 | } |
59 | 71 | ||
60 | formValidated () { | 72 | formValidated () { |
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.html b/client/src/app/videos/+video-watch/comment/video-comment.component.html index 8edd12124..1d325aff9 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.component.html +++ b/client/src/app/videos/+video-watch/comment/video-comment.component.html | |||
@@ -18,6 +18,7 @@ | |||
18 | [user]="user" | 18 | [user]="user" |
19 | [video]="video" | 19 | [video]="video" |
20 | [parentComment]="comment" | 20 | [parentComment]="comment" |
21 | [parentComments]="newParentComments" | ||
21 | [focusOnInit]="true" | 22 | [focusOnInit]="true" |
22 | (commentCreated)="onCommentReplyCreated($event)" | 23 | (commentCreated)="onCommentReplyCreated($event)" |
23 | ></my-video-comment-add> | 24 | ></my-video-comment-add> |
@@ -29,6 +30,7 @@ | |||
29 | [video]="video" | 30 | [video]="video" |
30 | [inReplyToCommentId]="inReplyToCommentId" | 31 | [inReplyToCommentId]="inReplyToCommentId" |
31 | [commentTree]="commentChild" | 32 | [commentTree]="commentChild" |
33 | [parentComments]="newParentComments" | ||
32 | (wantedToReply)="onWantToReply($event)" | 34 | (wantedToReply)="onWantToReply($event)" |
33 | (wantedToDelete)="onWantToDelete($event)" | 35 | (wantedToDelete)="onWantToDelete($event)" |
34 | (resetReply)="onResetReply()" | 36 | (resetReply)="onResetReply()" |
diff --git a/client/src/app/videos/+video-watch/comment/video-comment.component.ts b/client/src/app/videos/+video-watch/comment/video-comment.component.ts index 2ecc8a143..38e603d0d 100644 --- a/client/src/app/videos/+video-watch/comment/video-comment.component.ts +++ b/client/src/app/videos/+video-watch/comment/video-comment.component.ts | |||
@@ -16,6 +16,7 @@ import { VideoComment } from './video-comment.model' | |||
16 | export class VideoCommentComponent implements OnInit { | 16 | export class VideoCommentComponent implements OnInit { |
17 | @Input() video: Video | 17 | @Input() video: Video |
18 | @Input() comment: VideoComment | 18 | @Input() comment: VideoComment |
19 | @Input() parentComments: VideoComment[] = [] | ||
19 | @Input() commentTree: VideoCommentThreadTree | 20 | @Input() commentTree: VideoCommentThreadTree |
20 | @Input() inReplyToCommentId: number | 21 | @Input() inReplyToCommentId: number |
21 | 22 | ||
@@ -25,6 +26,7 @@ export class VideoCommentComponent implements OnInit { | |||
25 | @Output() resetReply = new EventEmitter() | 26 | @Output() resetReply = new EventEmitter() |
26 | 27 | ||
27 | sanitizedCommentHTML = '' | 28 | sanitizedCommentHTML = '' |
29 | newParentComments = [] | ||
28 | 30 | ||
29 | constructor (private authService: AuthService) {} | 31 | constructor (private authService: AuthService) {} |
30 | 32 | ||
@@ -36,6 +38,8 @@ export class VideoCommentComponent implements OnInit { | |||
36 | this.sanitizedCommentHTML = sanitizeHtml(this.comment.text, { | 38 | this.sanitizedCommentHTML = sanitizeHtml(this.comment.text, { |
37 | allowedTags: [ 'p', 'span' ] | 39 | allowedTags: [ 'p', 'span' ] |
38 | }) | 40 | }) |
41 | |||
42 | this.newParentComments = this.parentComments.concat([ this.comment ]) | ||
39 | } | 43 | } |
40 | 44 | ||
41 | onCommentReplyCreated (createdComment: VideoComment) { | 45 | onCommentReplyCreated (createdComment: VideoComment) { |
diff --git a/client/src/app/videos/+video-watch/comment/video-comments.component.scss b/client/src/app/videos/+video-watch/comment/video-comments.component.scss index be122eb2c..19ab3b633 100644 --- a/client/src/app/videos/+video-watch/comment/video-comments.component.scss +++ b/client/src/app/videos/+video-watch/comment/video-comments.component.scss | |||
@@ -6,6 +6,7 @@ | |||
6 | font-size: 15px; | 6 | font-size: 15px; |
7 | cursor: pointer; | 7 | cursor: pointer; |
8 | margin-left: 56px; | 8 | margin-left: 56px; |
9 | margin-bottom: 10px; | ||
9 | } | 10 | } |
10 | 11 | ||
11 | .glyphicon, .comment-thread-loading { | 12 | .glyphicon, .comment-thread-loading { |