Files
FloatingIsland/app/pages/index.vue
2025-11-29 23:43:00 +08:00

185 lines
4.4 KiB
Vue

<template>
<div class="container mx-auto px-5">
<div class="layout">
<div class="main pt-4">
<n-infinite-scroll
style="overflow: auto"
:distance="0"
@load="fetchActivites"
>
<div v-for="activity in activites" :key="activity.id" class="mb-4">
<post-item
v-if="activity.type.startsWith('posts')"
:item="activity.data"
@click="router.push('/posts/' + activity.id)"
/>
<n-card v-else>
<n-alert type="info" title="Unknown Activity">
Sorry, the FloatingIsland do not support
{{ activity.type }} right now. You can check this over the
Solian.
</n-alert>
</n-card>
</div>
<div v-if="loading" class="flex justify-center py-4">
<span class="loading loading-spinner loading-lg"></span>
</div>
<div
v-if="!loading && activites.length === 0"
class="text-center py-8 text-muted-foreground"
>
<n-icon size="48" class="mb-2 opacity-50">
<i class="mdi mdi-post-outline"></i>
</n-icon>
<p>No posts yet</p>
</div>
</n-infinite-scroll>
</div>
<div class="sidebar flex flex-col gap-3 pt-4">
<div v-if="!userStore.isAuthenticated">
<n-card>
<h2 class="card-title">About</h2>
<p>Welcome to the <b>Solar Network</b></p>
<p>The open social network. Friendly to everyone.</p>
<p class="mt-4 opacity-75 text-xs">
<span v-if="version == null">Loading...</span>
<span v-else>
v{{ version.version }} @
{{ version.commit.substring(0, 6) }}
{{ version.updatedAt }}
</span>
</p>
</n-card>
</div>
<n-card v-else class="w-full">
<post-editor @posted="refreshActivities" />
</n-card>
<sidebar-footer class="max-lg:hidden" />
</div>
</div>
</div>
</template>
<script setup lang="ts">
import { computed, onMounted, ref } from "vue"
import { useUserStore } from "~/stores/user"
import { useSolarNetwork } from "~/composables/useSolarNetwork"
import type { SnVersion, SnActivity } from "~/types/api"
import PostEditor from "~/components/Post/PostEditor.vue"
import PostItem from "~/components/Post/PostItem.vue"
const router = useRouter()
useHead({
title: "Explore",
meta: [
{
name: "description",
content: "The open social network. Friendly to everyone."
}
]
})
defineOgImage({
// @ts-ignore
title: "Explore",
description: "The open social network. Friendly to everyone."
})
const userStore = useUserStore()
const version = ref<SnVersion | null>(null)
async function fetchVersion() {
const api = useSolarNetwork()
const resp = await api("/version")
version.value = resp as SnVersion
}
onMounted(() => fetchVersion())
const loading = ref(false)
const activites = ref<SnActivity[]>([])
const activitesLast = computed(
() => activites.value[Math.max(activites.value.length - 1, 0)]
)
const activitesHasMore = ref(true)
async function fetchActivites() {
if (loading.value) return
if (!activitesHasMore.value) return
loading.value = true
const api = useSolarNetwork()
const resp = await api(
activitesLast.value == null
? "/sphere/activities"
: `/sphere/activities?cursor=${new Date(
activitesLast.value.createdAt
).toISOString()}`
)
const data = resp as SnActivity[]
activites.value = [...activites.value, ...data]
activitesHasMore.value = data[0]?.type != "empty"
loading.value = false
}
onMounted(() => fetchActivites())
async function refreshActivities() {
activites.value = []
fetchActivites()
}
</script>
<style scoped>
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.layout {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
.main {
order: 2;
min-width: 0;
}
.sidebar {
order: 1;
overflow-y: auto;
height: auto;
max-height: 100vh;
}
@media (min-width: 960px) {
.layout {
grid-template-columns: 2fr 1fr;
}
.main {
order: unset;
}
.sidebar {
order: unset;
}
}
@media (min-width: 1280px) {
.sidebar {
position: sticky;
top: calc(64px);
}
}
</style>