designtopack/src/components/comments/Comments.vue

147 lines
3.7 KiB
Vue
Raw Normal View History

2024-10-23 09:48:27 +02:00
<template>
<aside id="comments-container" aria-labelledby="comments-label">
<h2 id="comments-label" class="sr-only">Commentaires</h2>
<div class="comments | flow">
<div v-for="(page, pageIndex) in comments" class="comments__page-group">
2024-10-23 11:32:51 +02:00
<article
v-for="(comment, commentIndex) in Object.values(page)"
:key="pageIndex + commentIndex"
class="comment | flow"
:data-status="setStatus(comment)"
2024-10-28 17:50:40 +01:00
@click="readNotification(comment)"
2024-10-23 11:32:51 +02:00
>
<header>
<p>
<strong>{{ comment.username }}</strong>
<span class="comment__id">#{{ commentIndex + 1 }}</span>
<span class="comment__page">Page {{ pageIndex }}</span>
<time :datetime="dayjs(comment.date).format('YYYY-MM-DD')">{{
formatDate(comment.date)
}}</time>
</p>
</header>
<p class="comment__body">
{{ comment.text }}
2024-10-23 09:48:27 +02:00
</p>
2024-10-23 11:32:51 +02:00
</article>
</div>
2024-10-23 09:48:27 +02:00
</div>
<button
id="add-comment"
class="btn btn--white-20 | w-full"
@click="isAddOpen = true"
>
Ajouter un commentaire
</button>
<form
v-if="isAddOpen"
action=""
method="post"
class="flow"
@submit="addComment"
>
<label class="sr-only" for="comment">Votre commentaire</label>
<textarea
name="comment"
id="comment"
placeholder="Ajouter un commentaire"
rows="3"
class="text-sm | rounded-lg bg-black p-12"
v-model="newCommentText"
></textarea>
<footer class="flex">
<button class="btn btn--white-20" @click="closeAddField()">
Annuler
</button>
2024-10-23 09:48:27 +02:00
<input type="submit" class="btn btn--tranparent" />
</footer>
</form>
</aside>
</template>
<script setup>
2024-10-23 11:32:51 +02:00
import dayjs from "dayjs";
import "dayjs/locale/fr";
import uniqid from "uniqid";
2024-10-23 09:48:27 +02:00
import { ref } from "vue";
import { useUserStore } from "../../stores/user";
2024-10-23 11:32:51 +02:00
import { usePageStore } from "../../stores/page";
2024-10-28 17:50:40 +01:00
import { useApiStore } from "../../stores/api";
2024-10-23 11:32:51 +02:00
dayjs.locale("fr");
2024-10-23 09:48:27 +02:00
2024-10-23 11:32:51 +02:00
const { currentPageIndex, file, comments } = defineProps({
currentPageIndex: Number,
file: Object,
comments: Object,
2024-10-23 09:48:27 +02:00
});
const { user } = useUserStore();
2024-10-23 11:32:51 +02:00
const { page } = usePageStore();
2024-10-28 17:50:40 +01:00
const api = useApiStore();
2024-10-23 09:48:27 +02:00
const newCommentText = ref("");
const isAddOpen = ref(false);
const emits = defineEmits(["update:file"]);
2024-10-23 09:48:27 +02:00
// Functions
2024-10-28 17:50:40 +01:00
async function addComment(event) {
2024-10-23 09:48:27 +02:00
event.preventDefault();
2024-10-23 11:32:51 +02:00
const date = dayjs().format();
2024-10-23 09:48:27 +02:00
const comment = {
2024-10-23 11:32:51 +02:00
pageUri: page.uri + "/client-brief",
targetPage: currentPageIndex,
fileName: file.name,
2024-10-23 09:48:27 +02:00
userUuid: user.uuid,
text: newCommentText.value,
2024-10-23 11:32:51 +02:00
date,
id: uniqid(),
};
2024-10-28 17:50:40 +01:00
const newFile = await api.addComment(comment);
newCommentText.value = "";
isAddOpen.value = false;
2024-10-23 11:32:51 +02:00
}
function formatDate(date) {
const todayNumber = parseInt(dayjs().format("YYMMD"));
const dateNumber = parseInt(dayjs(date).format("YYMMD"));
if (dateNumber === todayNumber) {
return "Aujourd'hui";
}
if (dateNumber === todayNumber - 1) {
return "hier";
}
return dayjs(date).format("D MMM YY");
2024-10-23 09:48:27 +02:00
}
function closeAddField() {
isAddOpen.value = false;
newCommentText.value = "";
}
function setStatus(comment) {
2024-10-23 16:29:41 +02:00
try {
2024-10-28 17:50:40 +01:00
if (!user?.notifications?.comments[comment.id].isRead) {
2024-10-23 16:29:41 +02:00
return "unread";
} else {
return undefined;
}
} catch (error) {
return undefined;
}
}
2024-10-28 17:50:40 +01:00
async function readNotification(notificationId) {
const newNotifications = await api.readNotification(
user.uuid,
"comments",
notificationId
);
user.notifications = newNotifications;
}
2024-10-23 09:48:27 +02:00
</script>