mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-27 08:30:47 +08:00
109 lines
3.0 KiB
Vue
109 lines
3.0 KiB
Vue
<template>
|
|
<div class="site-stats-page">
|
|
<ClientOnly>
|
|
<VChart
|
|
v-if="dauOption"
|
|
:option="dauOption"
|
|
:autoresize="true"
|
|
style="height: 400px; margin-bottom: 30px"
|
|
/>
|
|
<VChart
|
|
v-if="newUserOption"
|
|
:option="newUserOption"
|
|
:autoresize="true"
|
|
style="height: 400px; margin-bottom: 30px"
|
|
/>
|
|
<VChart
|
|
v-if="postOption"
|
|
:option="postOption"
|
|
:autoresize="true"
|
|
style="height: 400px; margin-bottom: 30px"
|
|
/>
|
|
<VChart
|
|
v-if="commentOption"
|
|
:option="commentOption"
|
|
:autoresize="true"
|
|
style="height: 400px"
|
|
/>
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { LineChart } from 'echarts/charts'
|
|
import {
|
|
DataZoomComponent,
|
|
GridComponent,
|
|
TitleComponent,
|
|
TooltipComponent,
|
|
} from 'echarts/components'
|
|
import { use } from 'echarts/core'
|
|
import { CanvasRenderer } from 'echarts/renderers'
|
|
import { onMounted, ref } from 'vue'
|
|
import VChart from 'vue-echarts'
|
|
import { getToken } from '~/utils/auth'
|
|
const config = useRuntimeConfig()
|
|
const API_BASE_URL = config.public.apiBaseUrl
|
|
|
|
use([LineChart, TitleComponent, TooltipComponent, GridComponent, DataZoomComponent, CanvasRenderer])
|
|
|
|
const dauOption = ref(null)
|
|
const newUserOption = ref(null)
|
|
const postOption = ref(null)
|
|
const commentOption = ref(null)
|
|
|
|
async function loadData() {
|
|
const token = getToken()
|
|
const headers = { Authorization: `Bearer ${token}` }
|
|
|
|
const [dauRes, newUserRes, postRes, commentRes] = await Promise.all([
|
|
fetch(`${API_BASE_URL}/api/stats/dau-range?days=30`, { headers }),
|
|
fetch(`${API_BASE_URL}/api/stats/new-users-range?days=30`, { headers }),
|
|
fetch(`${API_BASE_URL}/api/stats/posts-range?days=30`, { headers }),
|
|
fetch(`${API_BASE_URL}/api/stats/comments-range?days=30`, { headers }),
|
|
])
|
|
|
|
function toOption(title, data) {
|
|
data.sort((a, b) => new Date(a.date) - new Date(b.date))
|
|
const dates = data.map((d) => d.date)
|
|
const values = data.map((d) => d.value)
|
|
return {
|
|
title: { text: title },
|
|
tooltip: { trigger: 'axis' },
|
|
xAxis: { type: 'category', data: dates },
|
|
yAxis: { type: 'value' },
|
|
dataZoom: [{ type: 'slider', start: 80 }, { type: 'inside' }],
|
|
series: [{ type: 'line', areaStyle: {}, smooth: true, data: values }],
|
|
}
|
|
}
|
|
|
|
if (dauRes.ok) {
|
|
const data = await dauRes.json()
|
|
dauOption.value = toOption('站点 DAU', data)
|
|
}
|
|
if (newUserRes.ok) {
|
|
const data = await newUserRes.json()
|
|
newUserOption.value = toOption('每日新增用户', data)
|
|
}
|
|
if (postRes.ok) {
|
|
const data = await postRes.json()
|
|
postOption.value = toOption('每日发帖量', data)
|
|
}
|
|
if (commentRes.ok) {
|
|
const data = await commentRes.json()
|
|
commentOption.value = toOption('每日回贴量', data)
|
|
}
|
|
}
|
|
|
|
onMounted(loadData)
|
|
</script>
|
|
|
|
<style scoped>
|
|
.site-stats-page {
|
|
padding: 20px;
|
|
max-width: var(--page-max-width);
|
|
background-color: var(--background-color);
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|