2024-08-16 16:43:08 +00:00
|
|
|
<template>
|
|
|
|
<v-infinite-scroll :items="posts" :onLoad="loadPost">
|
|
|
|
<template v-for="item in posts" :key="item">
|
|
|
|
<post-item :post="item" no-clickable-attachment />
|
|
|
|
</template>
|
|
|
|
</v-infinite-scroll>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-08-16 16:51:09 +00:00
|
|
|
const props = defineProps<{ author?: string, tag?: string, category?: string, realmId?: number }>()
|
2024-08-16 16:43:08 +00:00
|
|
|
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
|
|
|
|
const posts = ref<any[]>([])
|
|
|
|
|
|
|
|
async function loadPost({ done }: any) {
|
|
|
|
const searchQueries = new URLSearchParams({
|
|
|
|
take: (10).toString(),
|
|
|
|
offset: posts.value.length.toString(),
|
|
|
|
})
|
|
|
|
|
|
|
|
if (props.author) {
|
|
|
|
searchQueries.set("author", props.author)
|
|
|
|
}
|
|
|
|
if (props.realmId) {
|
|
|
|
searchQueries.set("realmId", props.realmId.toString())
|
|
|
|
}
|
|
|
|
|
2024-08-16 16:51:09 +00:00
|
|
|
if (props.tag) {
|
|
|
|
searchQueries.set("tag", props.tag)
|
|
|
|
}
|
|
|
|
if (props.category) {
|
|
|
|
searchQueries.set("category", props.category)
|
|
|
|
}
|
|
|
|
|
2024-08-16 16:43:08 +00:00
|
|
|
const res = await fetch(`${config.public.solarNetworkApi}/cgi/interactive/posts?` + searchQueries)
|
|
|
|
const result = await res.json()
|
|
|
|
|
|
|
|
if (result.data.length > 0) {
|
|
|
|
posts.value.push(...result.data)
|
|
|
|
done("ok")
|
|
|
|
} else {
|
|
|
|
done("empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|