✨ Post replies list
This commit is contained in:
@@ -23,8 +23,6 @@ import { ref } from 'vue'
|
||||
import * as tus from 'tus-js-client'
|
||||
import { useSolarNetwork } from '~/composables/useSolarNetwork'
|
||||
|
||||
import PubSelect from './PubSelect.vue'
|
||||
|
||||
// Interface for uploaded files in the editor
|
||||
interface UploadedFile {
|
||||
name: string
|
||||
|
||||
@@ -22,6 +22,10 @@
|
||||
|
||||
<attachment-list :attachments="props.item.attachments" :max-height="640" />
|
||||
|
||||
<div v-if="props.item.repliesCount" class="flex gap-2 text-xs opacity-80">
|
||||
<v-icon icon="mdi-comment-text-multiple" size="small" />
|
||||
<p>{{ props.item.repliesCount }} replies</p>
|
||||
</div>
|
||||
<div v-if="props.item.isTruncated" class="flex gap-2 text-xs opacity-80">
|
||||
<v-icon icon="mdi-dots-horizontal" size="small" />
|
||||
<p>Post truncated, tap to see details...</p>
|
||||
@@ -47,10 +51,6 @@ import { ref, watch } from "vue"
|
||||
import { useMarkdownProcessor } from "~/composables/useMarkdownProcessor"
|
||||
import type { SnPost } from "~/types/api"
|
||||
|
||||
import PostHeader from "./PostHeader.vue"
|
||||
import AttachmentList from "./AttachmentList.vue"
|
||||
import PostReactionList from "./PostReactionList.vue"
|
||||
|
||||
const props = defineProps<{ item: SnPost }>()
|
||||
const emit = defineEmits<{
|
||||
react: [symbol: string, attitude: number, delta: number]
|
||||
|
||||
73
app/components/Post/PostList.vue
Normal file
73
app/components/Post/PostList.vue
Normal file
@@ -0,0 +1,73 @@
|
||||
<template>
|
||||
<div class="post-list">
|
||||
<!-- Error State -->
|
||||
<v-alert
|
||||
v-if="hasError"
|
||||
type="error"
|
||||
class="mb-4"
|
||||
closable
|
||||
@click:close="refresh"
|
||||
>
|
||||
{{ error }}
|
||||
</v-alert>
|
||||
|
||||
<!-- Posts List -->
|
||||
<v-infinite-scroll
|
||||
height="auto"
|
||||
class="space-y-4"
|
||||
@load="loadMore"
|
||||
>
|
||||
<template v-for="item in posts" :key="item.id">
|
||||
<post-item
|
||||
:item="item"
|
||||
@react="(symbol, attitude, delta) => $emit('react', item.id, symbol, attitude, delta)"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<!-- Loading State -->
|
||||
<template #loading>
|
||||
<div class="flex justify-center py-4">
|
||||
<v-progress-circular indeterminate size="32" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Empty State -->
|
||||
<template #empty>
|
||||
<div v-if="!posts" class="text-center py-8 text-muted-foreground">
|
||||
<v-icon icon="mdi-post-outline" size="48" class="mb-2 opacity-50" />
|
||||
<p>No posts found</p>
|
||||
</div>
|
||||
</template>
|
||||
</v-infinite-scroll>
|
||||
|
||||
<!-- Refresh Button -->
|
||||
<div class="flex justify-center mt-4">
|
||||
<v-btn
|
||||
variant="outlined"
|
||||
:loading="isLoading"
|
||||
prepend-icon="mdi-refresh"
|
||||
@click="refresh"
|
||||
>
|
||||
Refresh
|
||||
</v-btn>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { usePostList } from "~/composables/usePostList"
|
||||
import type { PostListParams } from "~/composables/usePostList"
|
||||
|
||||
import PostItem from "./PostItem.vue"
|
||||
|
||||
const props = defineProps<{
|
||||
params?: PostListParams
|
||||
}>()
|
||||
|
||||
defineEmits<{
|
||||
react: [postId: string, symbol: string, attitude: number, delta: number]
|
||||
}>()
|
||||
|
||||
const { posts, isLoading, hasError, error, loadMore, refresh } =
|
||||
usePostList(props.params)
|
||||
</script>
|
||||
78
app/components/Post/RepliesList.vue
Normal file
78
app/components/Post/RepliesList.vue
Normal file
@@ -0,0 +1,78 @@
|
||||
<template>
|
||||
<div class="replies-list">
|
||||
<!-- Error State -->
|
||||
<v-alert
|
||||
v-if="hasError"
|
||||
type="error"
|
||||
class="mb-4"
|
||||
closable
|
||||
@click:close="refresh"
|
||||
>
|
||||
{{ error }}
|
||||
</v-alert>
|
||||
|
||||
<!-- Replies List -->
|
||||
<v-infinite-scroll
|
||||
class="flex flex-col gap-4 mt-0"
|
||||
height="auto"
|
||||
side="end"
|
||||
manual
|
||||
@load="loadMore"
|
||||
>
|
||||
<template v-for="item in replies" :key="item.id">
|
||||
<post-item
|
||||
:item="item"
|
||||
@click="router.push('/posts/' + item.id)"
|
||||
@react="
|
||||
(symbol, attitude, delta) =>
|
||||
$emit('react', item.id, symbol, attitude, delta)
|
||||
"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<!-- Loading State -->
|
||||
<template #loading>
|
||||
<div class="flex justify-center py-4">
|
||||
<v-progress-circular indeterminate size="32" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Empty State -->
|
||||
<template #empty>
|
||||
<div v-if="!replies" class="text-center py-8 text-muted-foreground">
|
||||
<v-icon
|
||||
icon="mdi-comment-outline"
|
||||
size="48"
|
||||
class="mb-2 opacity-50"
|
||||
/>
|
||||
<p>No replies yet</p>
|
||||
</div>
|
||||
</template>
|
||||
</v-infinite-scroll>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useRepliesList } from "~/composables/useRepliesList"
|
||||
import type { RepliesListParams } from "~/composables/useRepliesList"
|
||||
|
||||
const router = useRouter()
|
||||
|
||||
const props = defineProps<{
|
||||
params: RepliesListParams
|
||||
}>()
|
||||
|
||||
defineEmits<{
|
||||
react: [postId: string, symbol: string, attitude: number, delta: number]
|
||||
}>()
|
||||
|
||||
const { replies, hasError, error, loadMore, refresh } = useRepliesList(
|
||||
props.params
|
||||
)
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.replies-list .v-infinite-scroll:first-child .v-infinite-scroll__side {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user