From cc9b11b825b0db2c6d09e64e4a4c0d6ac9cfb34a Mon Sep 17 00:00:00 2001 From: valere Date: Mon, 7 Oct 2024 21:04:20 +0200 Subject: [PATCH] FEAT: comment local storage --- components/comment/form.vue | 2 +- components/comment/list.vue | 3 ++- components/list.vue | 43 ++++++++++++++++++++--------- pages/details/[id].vue | 54 ++++++++++++++++++++++--------------- stores/comment.ts | 6 ++++- 5 files changed, 72 insertions(+), 36 deletions(-) diff --git a/components/comment/form.vue b/components/comment/form.vue index f35c1df..7316890 100644 --- a/components/comment/form.vue +++ b/components/comment/form.vue @@ -16,7 +16,7 @@ const sendComment = () => { username: username.value, message: message.value, score: document.getElementById('score').value, - film: props.filmId, + filmId: props.filmId, added: Date.now(), }) } diff --git a/components/comment/list.vue b/components/comment/list.vue index 39b1458..4303cdf 100644 --- a/components/comment/list.vue +++ b/components/comment/list.vue @@ -1,6 +1,6 @@ diff --git a/components/list.vue b/components/list.vue index cb8f193..d88293a 100644 --- a/components/list.vue +++ b/components/list.vue @@ -11,23 +11,28 @@ {{ films.length }} - - - - - {{ film.title }} - {{ film.original_title }} - {{ film.vote_count }} - {{ film.release_date }} - {{ film.id }} - - +
+ + + +

+ {{ film.title }} +

+ + {{ useDateFormat(film.release_date, 'D MMM YYYY') }} + + {{ formatPercentage(film.vote_average) }}% +
+
+