LittleSheep 562af023f1 Realm posts mixed in feed
💩 The feed api didn't respect the visibility level
2024-03-25 19:40:43 +08:00

88 lines
2.5 KiB
Vue

<template>
<div class="flex gap-3">
<div>
<v-avatar
color="grey-lighten-2"
icon="mdi-account-circle"
class="rounded-card"
:image="props.item?.author.avatar"
/>
</div>
<div class="flex-grow-1">
<div class="font-bold">{{ props.item?.author.nick }}</div>
<div v-if="props.item?.model_type === 'article'" class="text-xs text-grey-darken-4 mb-2">
Published an article
</div>
<component :is="renderer[props.item?.model_type]" v-bind="props" />
<post-attachment
v-if="props.item?.attachments"
class="mt-1.5"
:overview="props.item?.model_type !== 'moment'"
:attachments="props.item?.attachments"
/>
<post-reaction
size="small"
:item="props.item"
:model="props.item?.model_type ? props.item?.model_type + 's' : 'articles'"
:reactions="props.item?.reaction_list ?? {}"
@update="updateReactions"
/>
<div class="mt-3 text-xs opacity-80 flex items-center">
<span>Posted at {{ new Date(props.item?.created_at).toLocaleString() }}</span>
<section v-if="props.item?.realm_id">
&nbsp;·&nbsp;<span>In realm #{{ props.item?.realm_id }}</span>
</section>
</div>
</div>
<div>
<post-action :item="props.item" />
</div>
</div>
</template>
<script setup lang="ts">
import { type Component } from "vue"
import ArticleContent from "@/components/posts/ArticleContent.vue"
import MomentContent from "@/components/posts/MomentContent.vue"
import CommentContent from "@/components/posts/CommentContent.vue"
import PostAttachment from "@/components/posts/PostAttachment.vue"
import PostReaction from "@/components/posts/PostReaction.vue"
import PostAction from "@/components/posts/PostAction.vue"
const props = defineProps<{ item: any; brief?: boolean }>()
const emits = defineEmits(["update:item"])
const renderer: { [id: string]: Component } = {
article: ArticleContent,
moment: MomentContent,
comment: CommentContent
}
function updateReactions(symbol: string, num: number) {
const item = JSON.parse(JSON.stringify(props.item))
if (item.reaction_list == null) {
item.reaction_list = {}
}
// eslint-disable-next-line
if (item.reaction_list.hasOwnProperty(symbol)) {
item.reaction_list[symbol] += num
} else {
item.reaction_list[symbol] = num
}
emits("update:item", item)
}
</script>
<style scoped>
.rounded-card {
border-radius: 8px;
}
</style>