2019-11-15 18:36:47 +01:00
|
|
|
<template>
|
2020-02-18 08:57:00 +01:00
|
|
|
<div>
|
|
|
|
<form
|
|
|
|
class="new-comment"
|
|
|
|
v-if="currentActor.id && event.options.commentModeration !== CommentModeration.CLOSED"
|
|
|
|
@submit.prevent="createCommentForEvent(newComment)"
|
|
|
|
@keyup.ctrl.enter="createCommentForEvent(newComment)"
|
|
|
|
>
|
|
|
|
<article class="media">
|
|
|
|
<figure class="media-left">
|
|
|
|
<identity-picker-wrapper :inline="false" v-model="newComment.actor" />
|
|
|
|
</figure>
|
|
|
|
<div class="media-content">
|
|
|
|
<div class="field">
|
|
|
|
<p class="control">
|
|
|
|
<editor ref="commenteditor" mode="comment" v-model="newComment.text" />
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="send-comment">
|
|
|
|
<b-button native-type="submit" type="is-info">{{ $t("Post a comment") }}</b-button>
|
|
|
|
</div>
|
2019-11-15 18:36:47 +01:00
|
|
|
</div>
|
2020-02-18 08:57:00 +01:00
|
|
|
</article>
|
|
|
|
</form>
|
|
|
|
<b-notification
|
|
|
|
v-else-if="event.options.commentModeration === CommentModeration.CLOSED"
|
|
|
|
:closable="false"
|
|
|
|
>{{ $t("Comments have been closed.") }}</b-notification
|
|
|
|
>
|
|
|
|
<transition name="comment-empty-list" mode="out-in">
|
|
|
|
<transition-group name="comment-list" v-if="comments.length" class="comment-list" tag="ul">
|
|
|
|
<comment
|
|
|
|
class="root-comment"
|
|
|
|
:comment="comment"
|
|
|
|
:event="event"
|
|
|
|
v-for="comment in filteredOrderedComments"
|
|
|
|
:key="comment.id"
|
|
|
|
@create-comment="createCommentForEvent"
|
|
|
|
@delete-comment="deleteComment"
|
|
|
|
/>
|
|
|
|
</transition-group>
|
|
|
|
<div v-else class="no-comments">
|
|
|
|
<span>{{ $t("No comments yet") }}</span>
|
|
|
|
<img src="../../assets/undraw_just_saying.svg" alt />
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</div>
|
2019-11-15 18:36:47 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-02-18 08:57:00 +01:00
|
|
|
import { Prop, Vue, Component, Watch } from "vue-property-decorator";
|
|
|
|
import Comment from "@/components/Comment/Comment.vue";
|
|
|
|
import IdentityPickerWrapper from "@/views/Account/IdentityPickerWrapper.vue";
|
|
|
|
import { CommentModel, IComment } from "../../types/comment.model";
|
2019-11-15 18:36:47 +01:00
|
|
|
import {
|
2020-02-18 08:57:00 +01:00
|
|
|
CREATE_COMMENT_FROM_EVENT,
|
|
|
|
DELETE_COMMENT,
|
|
|
|
COMMENTS_THREADS,
|
|
|
|
FETCH_THREAD_REPLIES,
|
|
|
|
} from "../../graphql/comment";
|
|
|
|
import { CURRENT_ACTOR_CLIENT } from "../../graphql/actor";
|
|
|
|
import { IPerson } from "../../types/actor";
|
|
|
|
import { IEvent, CommentModeration } from "../../types/event.model";
|
2019-11-15 18:36:47 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
apollo: {
|
|
|
|
currentActor: {
|
|
|
|
query: CURRENT_ACTOR_CLIENT,
|
|
|
|
},
|
|
|
|
comments: {
|
|
|
|
query: COMMENTS_THREADS,
|
|
|
|
variables() {
|
|
|
|
return {
|
|
|
|
eventUUID: this.event.uuid,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
update(data) {
|
2020-02-18 08:57:00 +01:00
|
|
|
return data.event.comments.map((comment: IComment) => new CommentModel(comment));
|
2019-11-15 18:36:47 +01:00
|
|
|
},
|
|
|
|
skip() {
|
|
|
|
return !this.event.uuid;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
Comment,
|
|
|
|
IdentityPickerWrapper,
|
2020-02-18 08:57:00 +01:00
|
|
|
editor: () => import(/* webpackChunkName: "editor" */ "@/components/Editor.vue"),
|
2019-11-15 18:36:47 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
export default class CommentTree extends Vue {
|
|
|
|
@Prop({ required: false, type: Object }) event!: IEvent;
|
|
|
|
|
|
|
|
newComment: IComment = new CommentModel();
|
2020-02-18 08:57:00 +01:00
|
|
|
|
2019-11-15 18:36:47 +01:00
|
|
|
currentActor!: IPerson;
|
2020-02-18 08:57:00 +01:00
|
|
|
|
2019-11-15 18:36:47 +01:00
|
|
|
comments: IComment[] = [];
|
2020-02-18 08:57:00 +01:00
|
|
|
|
2019-11-15 18:36:47 +01:00
|
|
|
CommentModeration = CommentModeration;
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
@Watch("currentActor")
|
2019-11-15 18:36:47 +01:00
|
|
|
watchCurrentActor(currentActor: IPerson) {
|
|
|
|
this.newComment.actor = currentActor;
|
|
|
|
}
|
|
|
|
|
|
|
|
async createCommentForEvent(comment: IComment) {
|
|
|
|
try {
|
|
|
|
await this.$apollo.mutate({
|
|
|
|
mutation: CREATE_COMMENT_FROM_EVENT,
|
|
|
|
variables: {
|
|
|
|
eventId: this.event.id,
|
|
|
|
actorId: comment.actor.id,
|
|
|
|
text: comment.text,
|
|
|
|
inReplyToCommentId: comment.inReplyToComment ? comment.inReplyToComment.id : null,
|
|
|
|
},
|
|
|
|
update: (store, { data }) => {
|
|
|
|
if (data == null) return;
|
|
|
|
const newComment = data.createComment;
|
|
|
|
|
|
|
|
// comments are attached to the event, so we can pass it to replies later
|
|
|
|
newComment.event = this.event;
|
|
|
|
|
|
|
|
// we load all existing threads
|
|
|
|
const commentThreadsData = store.readQuery<{ event: IEvent }>({
|
|
|
|
query: COMMENTS_THREADS,
|
|
|
|
variables: {
|
|
|
|
eventUUID: this.event.uuid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!commentThreadsData) return;
|
|
|
|
const { event } = commentThreadsData;
|
|
|
|
const { comments: oldComments } = event;
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
// if it's no a root comment, we first need to find
|
|
|
|
// existing replies and add the new reply to it
|
|
|
|
if (comment.originComment !== undefined) {
|
|
|
|
const { originComment } = comment;
|
|
|
|
const parentCommentIndex = oldComments.findIndex(
|
|
|
|
(oldComment) => oldComment.id === originComment.id
|
|
|
|
);
|
2019-11-15 18:36:47 +01:00
|
|
|
const parentComment = oldComments[parentCommentIndex];
|
|
|
|
|
|
|
|
let oldReplyList: IComment[] = [];
|
|
|
|
try {
|
|
|
|
const threadData = store.readQuery<{ thread: IComment[] }>({
|
|
|
|
query: FETCH_THREAD_REPLIES,
|
|
|
|
variables: {
|
|
|
|
threadId: parentComment.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!threadData) return;
|
|
|
|
oldReplyList = threadData.thread;
|
|
|
|
} catch (e) {
|
|
|
|
// This simply means there's no loaded replies yet
|
|
|
|
} finally {
|
|
|
|
oldReplyList.push(newComment);
|
|
|
|
|
|
|
|
// save the updated list of replies (with the one we've just added)
|
|
|
|
store.writeQuery({
|
|
|
|
query: FETCH_THREAD_REPLIES,
|
|
|
|
data: { thread: oldReplyList },
|
|
|
|
variables: {
|
|
|
|
threadId: parentComment.id,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// replace the root comment with has the updated list of replies in the thread list
|
|
|
|
parentComment.replies = oldReplyList;
|
|
|
|
event.comments.splice(parentCommentIndex, 1, parentComment);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// otherwise it's simply a new thread and we add it to the list
|
|
|
|
oldComments.push(newComment);
|
|
|
|
}
|
|
|
|
|
|
|
|
// finally we save the thread list
|
|
|
|
event.comments = oldComments;
|
|
|
|
store.writeQuery({
|
|
|
|
query: COMMENTS_THREADS,
|
|
|
|
data: { event },
|
|
|
|
variables: {
|
|
|
|
eventUUID: this.event.uuid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// and reset the new comment field
|
|
|
|
this.newComment = new CommentModel();
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async deleteComment(comment: IComment) {
|
|
|
|
await this.$apollo.mutate({
|
|
|
|
mutation: DELETE_COMMENT,
|
|
|
|
variables: {
|
|
|
|
commentId: comment.id,
|
|
|
|
actorId: this.currentActor.id,
|
|
|
|
},
|
|
|
|
update: (store, { data }) => {
|
|
|
|
if (data == null) return;
|
|
|
|
const deletedCommentId = data.deleteComment.id;
|
|
|
|
|
|
|
|
const commentsData = store.readQuery<{ event: IEvent }>({
|
|
|
|
query: COMMENTS_THREADS,
|
|
|
|
variables: {
|
|
|
|
eventUUID: this.event.uuid,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (!commentsData) return;
|
|
|
|
const { event } = commentsData;
|
|
|
|
const { comments: oldComments } = event;
|
|
|
|
|
|
|
|
if (comment.originComment) {
|
|
|
|
// we have deleted a reply to a thread
|
2020-02-18 08:57:00 +01:00
|
|
|
const localData = store.readQuery<{ thread: IComment[] }>({
|
2019-11-15 18:36:47 +01:00
|
|
|
query: FETCH_THREAD_REPLIES,
|
|
|
|
variables: {
|
|
|
|
threadId: comment.originComment.id,
|
|
|
|
},
|
|
|
|
});
|
2020-02-18 08:57:00 +01:00
|
|
|
if (!localData) return;
|
|
|
|
const { thread: oldReplyList } = localData;
|
|
|
|
const replies = oldReplyList.filter((reply) => reply.id !== deletedCommentId);
|
2019-11-15 18:36:47 +01:00
|
|
|
store.writeQuery({
|
|
|
|
query: FETCH_THREAD_REPLIES,
|
|
|
|
variables: {
|
|
|
|
threadId: comment.originComment.id,
|
|
|
|
},
|
|
|
|
data: { thread: replies },
|
|
|
|
});
|
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
const { originComment } = comment;
|
|
|
|
|
|
|
|
const parentCommentIndex = oldComments.findIndex(
|
|
|
|
(oldComment) => oldComment.id === originComment.id
|
|
|
|
);
|
2019-11-15 18:36:47 +01:00
|
|
|
const parentComment = oldComments[parentCommentIndex];
|
|
|
|
parentComment.replies = replies;
|
|
|
|
parentComment.totalReplies -= 1;
|
|
|
|
oldComments.splice(parentCommentIndex, 1, parentComment);
|
|
|
|
event.comments = oldComments;
|
|
|
|
} else {
|
|
|
|
// we have deleted a thread itself
|
2020-02-18 08:57:00 +01:00
|
|
|
event.comments = oldComments.filter((reply) => reply.id !== deletedCommentId);
|
2019-11-15 18:36:47 +01:00
|
|
|
}
|
|
|
|
store.writeQuery({
|
|
|
|
query: COMMENTS_THREADS,
|
|
|
|
variables: {
|
|
|
|
eventUUID: this.event.uuid,
|
|
|
|
},
|
|
|
|
data: { event },
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
// this.comments = this.comments.filter(commentItem => commentItem.id !== comment.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
get orderedComments(): IComment[] {
|
2020-02-18 08:57:00 +01:00
|
|
|
return this.comments
|
|
|
|
.filter((comment) => comment.inReplyToComment == null)
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a.updatedAt && b.updatedAt) {
|
|
|
|
return new Date(b.updatedAt).getTime() - new Date(a.updatedAt).getTime();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get filteredOrderedComments(): IComment[] {
|
|
|
|
return this.orderedComments.filter((comment) => !comment.deletedAt || comment.totalReplies > 0);
|
2019-11-15 18:36:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-02-18 08:57:00 +01:00
|
|
|
form.new-comment {
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
|
|
|
|
.media-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
align-content: center;
|
|
|
|
|
|
|
|
.field {
|
|
|
|
flex: 1;
|
|
|
|
padding-right: 10px;
|
|
|
|
margin-bottom: 0;
|
2019-11-15 18:36:47 +01:00
|
|
|
}
|
2020-02-18 08:57:00 +01:00
|
|
|
}
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.no-comments {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
span {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
img {
|
|
|
|
max-width: 250px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
ul.comment-list li {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.comment-list-enter-active,
|
|
|
|
.comment-list-leave-active,
|
|
|
|
.comment-list-move {
|
|
|
|
transition: 500ms cubic-bezier(0.59, 0.12, 0.34, 0.95);
|
|
|
|
transition-property: opacity, transform;
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.comment-list-enter {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(50px) scaleY(0.5);
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.comment-list-enter-to {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateX(0) scaleY(1);
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.comment-list-leave-active,
|
|
|
|
.comment-empty-list-active {
|
|
|
|
position: absolute;
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
.comment-list-leave-to,
|
|
|
|
.comment-empty-list-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scaleY(0);
|
|
|
|
transform-origin: center top;
|
|
|
|
}
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
/*.comment-empty-list-enter-active {*/
|
|
|
|
/* transition: opacity .5s;*/
|
|
|
|
/*}*/
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
/*.comment-empty-list-enter {*/
|
|
|
|
/* opacity: 0;*/
|
|
|
|
/*}*/
|
2019-11-15 18:36:47 +01:00
|
|
|
</style>
|