|
@@ -1,10 +1,11 @@ |
|
|
<template> |
|
|
<template> |
|
|
<ul> |
|
|
<ul> |
|
|
<li v-for="comment in store.orderedComment(props.filmId)" class="m-6"> |
|
|
|
|
|
<p class="bg-white p-4 mb-4 rounded-lg"> |
|
|
|
|
|
|
|
|
<li v-for="(comment, index) in store.orderedComment(props.filmId)" class="m-6"> |
|
|
|
|
|
<p class="bg-white p-4 mb-4 rounded-lg" |
|
|
|
|
|
:class="{ 'rounded-bl-none': isEven(index), 'rounded-br-none': !isEven(index) }"> |
|
|
{{ comment.message }} |
|
|
{{ comment.message }} |
|
|
</p> |
|
|
</p> |
|
|
<p> |
|
|
|
|
|
|
|
|
<p :class="{ 'text-right': !isEven(index) }"> |
|
|
<UiPerson class="h-10 inline-block" /> {{ comment.username }} - |
|
|
<UiPerson class="h-10 inline-block" /> {{ comment.username }} - |
|
|
{{ useDateFormat(comment.added, 'D MMM YYYY') }} |
|
|
{{ useDateFormat(comment.added, 'D MMM YYYY') }} |
|
|
{{ comment.score }}% |
|
|
{{ comment.score }}% |
|
@@ -18,4 +19,6 @@ import { useDateFormat } from '@vueuse/core' |
|
|
|
|
|
|
|
|
const props = defineProps(['filmId']) |
|
|
const props = defineProps(['filmId']) |
|
|
const store = useCommentStore() |
|
|
const store = useCommentStore() |
|
|
|
|
|
|
|
|
|
|
|
const isEven = (index) => (index % 2 === 0) |
|
|
</script> |
|
|
</script> |