mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-20 05:50:53 +08:00
167 lines
3.9 KiB
Vue
167 lines
3.9 KiB
Vue
<template>
|
|
<div class="activity-list-page">
|
|
<div v-if="isLoadingActivities" class="loading-activities">
|
|
<l-hatch size="28" stroke="4" speed="3.5" color="var(--primary-color)"></l-hatch>
|
|
</div>
|
|
|
|
<div class="activity-list-page-card" v-for="a in activities" :key="a.id">
|
|
<div class="activity-list-page-card-normal">
|
|
<div v-if="a.icon" class="activity-card-normal-left">
|
|
<BaseImage :src="a.icon" alt="avatar" class="activity-card-left-avatar-img" />
|
|
</div>
|
|
<div class="activity-card-normal-right">
|
|
<div class="activity-card-normal-right-header">
|
|
<div class="activity-list-page-card-title">{{ a.title }}</div>
|
|
<div v-if="a.ended" class="activity-list-page-card-state-end">已结束</div>
|
|
<div v-else class="activity-list-page-card-state-ongoing">进行中</div>
|
|
</div>
|
|
<div class="activity-list-page-card-content">{{ a.content }}</div>
|
|
<div class="activity-list-page-card-footer">
|
|
<div class="activity-list-page-card-footer-start-time">
|
|
<stopwatch />
|
|
<span>开始于 {{ TimeManager.format(a.startTime) }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<MilkTeaActivityComponent v-if="a.type === 'MILK_TEA'" />
|
|
<InviteCodeActivityComponent v-if="a.type === 'INVITE_POINTS'" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import TimeManager from '~/utils/time'
|
|
import MilkTeaActivityComponent from '~/components/MilkTeaActivityComponent.vue'
|
|
import InviteCodeActivityComponent from '~/components/InviteCodeActivityComponent.vue'
|
|
const config = useRuntimeConfig()
|
|
const API_BASE_URL = config.public.apiBaseUrl
|
|
|
|
const activities = ref([])
|
|
const isLoadingActivities = ref(false)
|
|
|
|
onMounted(async () => {
|
|
isLoadingActivities.value = true
|
|
try {
|
|
const res = await fetch(`${API_BASE_URL}/api/activities`)
|
|
if (res.ok) {
|
|
activities.value = await res.json()
|
|
}
|
|
} catch (e) {
|
|
console.error(e)
|
|
} finally {
|
|
isLoadingActivities.value = false
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.loading-activities {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 300px;
|
|
}
|
|
|
|
.activity-list-page {
|
|
background-color: var(--background-color);
|
|
padding: 20px;
|
|
height: calc(100% - 40px);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.activity-list-page-card {
|
|
padding: 10px;
|
|
width: calc(100% - 20px);
|
|
gap: 10px;
|
|
background-color: var(--activity-card-background-color);
|
|
border-radius: 20px;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.activity-card-left-avatar-img {
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 10%;
|
|
object-fit: cover;
|
|
background-color: var(--background-color);
|
|
}
|
|
|
|
.activity-card-normal-right-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.activity-list-page-card-normal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
}
|
|
|
|
.activity-list-page-card-title {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.activity-list-page-card-content {
|
|
font-size: 1rem;
|
|
margin-top: 10px;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.activity-list-page-card-footer {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.activity-list-page-card-state-end,
|
|
.activity-list-page-card-state-ongoing {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.activity-list-page-card-state-end {
|
|
color: var(--text-color);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.activity-list-page-card-state-ongoing {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.activity-list-page-card-footer-start-time {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 5px;
|
|
align-items: center;
|
|
font-size: 0.8rem;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.activity-link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.activity-card-normal-right {
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.activity-card-left-avatar-img {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
.activity-list-page-card-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.activity-list-page-card-content {
|
|
font-size: 12px;
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
</style>
|