mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
2.6 KiB
119 lines
2.6 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component, Input, OnChanges } from '@angular/core';
|
|
import { MentionConfig } from 'angular-mentions';
|
|
|
|
import {
|
|
CommentDto,
|
|
CommentsState,
|
|
ContributorDto,
|
|
DialogService,
|
|
Keys
|
|
} from '@app/shared/internal';
|
|
|
|
@Component({
|
|
selector: 'sqx-comment',
|
|
styleUrls: ['./comment.component.scss'],
|
|
templateUrl: './comment.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class CommentComponent implements OnChanges {
|
|
@Input()
|
|
public canFollow = false;
|
|
|
|
@Input()
|
|
public canDelete = false;
|
|
|
|
@Input()
|
|
public canEdit = false;
|
|
|
|
@Input()
|
|
public commentsState: CommentsState;
|
|
|
|
@Input()
|
|
public confirmDelete = true;
|
|
|
|
@Input()
|
|
public comment: CommentDto;
|
|
|
|
@Input()
|
|
public userToken: string;
|
|
|
|
@Input()
|
|
public mentionUsers: ReadonlyArray<ContributorDto>;
|
|
|
|
public mentionConfig: MentionConfig = { dropUp: true, labelKey: 'contributorEmail' };
|
|
|
|
public isDeletable = false;
|
|
public isEditable = false;
|
|
|
|
public isEditing = false;
|
|
|
|
public editingText: string;
|
|
|
|
constructor(
|
|
private readonly dialogs: DialogService
|
|
) {
|
|
}
|
|
|
|
public ngOnChanges() {
|
|
const isMyComment = this.comment.user === this.userToken;
|
|
|
|
this.isDeletable = isMyComment;
|
|
this.isEditable = isMyComment;
|
|
}
|
|
|
|
public startEdit() {
|
|
this.editingText = this.comment.text;
|
|
|
|
this.isEditing = true;
|
|
}
|
|
|
|
public cancelEdit() {
|
|
this.isEditing = false;
|
|
}
|
|
|
|
public delete() {
|
|
if (!this.isDeletable) {
|
|
return;
|
|
}
|
|
|
|
this.commentsState.delete(this.comment);
|
|
}
|
|
|
|
public updateWhenEnter(event: KeyboardEvent) {
|
|
if (event.keyCode === Keys.ENTER && !event.altKey && !event.shiftKey && !event.defaultPrevented) {
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
event.stopPropagation();
|
|
|
|
this.update();
|
|
}
|
|
}
|
|
|
|
public update() {
|
|
if (!this.isEditable) {
|
|
return;
|
|
}
|
|
|
|
const text = this.editingText;
|
|
|
|
if (!text || text.length === 0) {
|
|
this.dialogs.confirm('Delete comment', 'Do you really want to delete the comment?')
|
|
.subscribe(confirmed => {
|
|
if (confirmed) {
|
|
this.delete();
|
|
}
|
|
});
|
|
} else {
|
|
this.commentsState.update(this.comment, text);
|
|
|
|
this.cancelEdit();
|
|
}
|
|
}
|
|
}
|