📝 [docs]: 新增在线展示

This commit is contained in:
snowykami 2024-09-01 18:25:37 +08:00
parent 499caca7e3
commit d485e095ae
10 changed files with 241 additions and 59 deletions

View File

@ -1,4 +1,13 @@
import type {Theme} from "vitepress";
import DefaultTheme from 'vitepress/theme' import DefaultTheme from 'vitepress/theme'
import './liteyuki.css' import './liteyuki.css'
export default DefaultTheme import StatsBar from '../../components/StatsBar.vue'
export default {
extends: DefaultTheme,
enhanceApp({app}) {
app.component('StatsBar', StatsBar)
},
} satisfies Theme

View File

@ -1,32 +1,39 @@
<script setup> <script setup lang="ts">
import getText from "../components/scripts/i18nData.ts";
import {ref} from "vue"; import {ref, onMounted, onUnmounted} from "vue";
import getText from "./scripts/i18n";
const onlineText = getText('online'); const onlineText = getText('online');
const totalText = getText('total') const totalText = getText('total');
const onlineFetchUrl = "https://api.liteyuki.icu/online" const onlineFetchUrl = "https://api.liteyuki.icu/online";
const totalFetchUrl = "https://api.liteyuki.icu/count" const totalFetchUrl = "https://api.liteyuki.icu/count";
let online = ref(-1); const online = ref(0);
let total = ref(-1); const total = ref(0);
async function updateData() { function updateData() {
try {
const onlineResponse = await fetch(onlineFetchUrl);
const onlineData = await onlineResponse.json();
online.value = onlineData.online;
const totalResponse = await fetch(totalFetchUrl); fetch(onlineFetchUrl)
const totalData = await totalResponse.json(); .then(response => response.json())
total.value = totalData.register; .then(data => online.value = data.online)
} catch (error) { .catch(error => console.error('Error fetching online data:', error));
console.error('Error fetching data:', error);
} fetch(totalFetchUrl)
.then(response => response.json())
.then(data => total.value = data.register)
.catch(error => console.error('Error fetching total data:', error));
} }
updateData(); onMounted(() => {
setInterval(updateData, 10000); const intervalId = setInterval(updateData, 10000);
updateData();
onUnmounted(() => {
clearInterval(intervalId);
});
});
</script> </script>

View File

@ -0,0 +1,174 @@
<script setup lang="ts">
import {useData} from "vitepress";
import {ref} from "vue";
const i18nData = {
"zh": {
online: '当前在线',
offline: '离线',
total: '全球实例',
fetching: '获取中',
},
"en": {
online: 'Online',
offline: 'Offline',
total: 'Total',
fetching: 'Fetching',
}
}
function getText(key: string): string {
//
// zh-Hans -> zh
// en-US -> en
if (useData().site.value.lang.includes('-')) {
return i18nData[useData().site.value.lang.split('-')[0]][key];
} else {
return i18nData[useData().site.value.lang][key];
}
}
const onlineText = getText('online');
const totalText = getText('total');
const onlineFetchUrl = "https://api.liteyuki.icu/online";
const totalFetchUrl = "https://api.liteyuki.icu/count";
const online = ref(0);
const total = ref(0);
function updateData() {
fetch(onlineFetchUrl)
.then(response => response.json())
.then(data => online.value = data.online)
.catch(error => console.error('Error fetching online data:', error));
fetch(totalFetchUrl)
.then(response => response.json())
.then(data => total.value = data.register)
.catch(error => console.error('Error fetching total data:', error));
}
updateData();
setInterval(updateData, 10000);
</script>
<template>
<div class="stats-bar">
<div class="stats-info">
<div id="total" class="section">
<div class="line">
<span class=dot style="background-color: #00a6ff"></span>
<span class="text">{{ totalText }}</span>
</div>
<div class="number">{{ total }}</div>
</div>
<div id="online" class="section">
<div class="line">
<span class=dot style="background-color: #00ff00"></span>
<span class="text">{{ onlineText }}</span>
</div>
<div class="number">{{ online }}</div>
</div>
</div>
<div class="starmap">
<iframe src="https://starmap.liteyuki.icu/" width="100%" height="300px"></iframe>
</div>
</div>
</template>
<style scoped>
.stats-bar {
display: flex;
justify-content: space-between;
padding: 20px;
margin: 30px 10px 10px 10px;
border-radius: var(--border-radius-2);
background-color: var(--vp-c-gray-1);
flex-direction: column; /* 默认纵向布局 */
}
.stats-info {
width: 100%;
padding: 10px;
display: flex;
justify-content: space-evenly;
margin-bottom: 20px;
}
.section {
display: flex;
flex-direction: column;
}
.section:not(:last-child) {
margin-right: 50px;
}
.line {
margin-bottom: 20px;
}
.dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 5px;
}
.text {
font-size: 14px;
}
.number {
font-size: 30px;
font-weight: bold;
margin-top: 5px;
}
.starmap {
position: relative;
width: 100%;
height: 200px;
overflow: hidden;
border-radius: var(--border-radius-2);
}
.starmap iframe {
position: absolute;
top: -150px; /* 根据需要调整裁剪位置 */
left: -40px; /* 根据需要调整裁剪位置 */;
width: calc(100% + 80px); /* 根据需要调整裁剪宽度 */
height: calc(100% + 300px); /* 根据需要调整裁剪高度 */
}
@media (min-width: 768px) {
/* PC模式下的样式 */
.stats-bar {
flex-direction: row;
}
.stats-info {
width: 40%;
}
.starmap {
width: 60%;
height: 400px;
}
.starmap iframe {
position: absolute;
top: -130px; /* 根据需要调整裁剪位置 */
left: -60px; /* 根据需要调整裁剪位置 */;
width: calc(100% + 120px); /* 根据需要调整裁剪宽度 */
height: calc(100% + 280px); /* 根据需要调整裁剪高度 */
}
}
</style>

View File

@ -0,0 +1,27 @@
import {useData} from "vitepress";
const i18nData = {
"zh": {
online: '当前在线',
offline: '离线',
total: '全球实例',
fetching: '获取中',
},
"en": {
online: 'Online',
offline: 'Offline',
total: 'Total',
fetching: 'Fetching',
}
}
export default function getText(key: string): string {
// 转换语言
// zh-Hans -> zh
// en-US -> en
if (useData().site.value.lang.includes('-')) {
return i18nData[useData().site.value.lang.split('-')[0]][key];
} else {
return i18nData[useData().site.value.lang][key];
}
}

View File

@ -1,27 +0,0 @@
import {useData} from "vitepress";
const i18nData = {
"zh": {
online: '当前在线',
offline: '离线',
total: '全球实例',
fetching: '获取中',
},
"en": {
online: 'Online',
offline: 'Offline',
total: 'Total',
fetching: 'Fetching',
}
}
export default function getText(key: string): string {
// 转换语言
// zh-Hans -> zh
// en-US -> en
if (useData().site.value.lang.includes('-')) {
return i18nData[useData().site.value.lang.split('-')[0]][key];
} else {
return i18nData[useData().site.value.lang][key];
}
}

View File

@ -61,7 +61,4 @@ features:
--- ---
<script setup>
import StatsBar from '../components/StatsBar.vue'
</script>
<StatsBar /> <StatsBar />

View File

@ -10,7 +10,6 @@
}, },
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"clipboard": "^2.0.11", "clipboard": "^2.0.11"
"vue": "^3.4.38"
} }
} }

View File

@ -7,7 +7,7 @@
"forceConsistentCasingInFileNames": true "forceConsistentCasingInFileNames": true
}, },
"include": [ "include": [
"components/**/*.ts" "components/**/*.ts",
], ],
"exclude": [ "exclude": [
"node_modules" "node_modules"

View File

@ -60,8 +60,4 @@ features:
link: https://github.com/LiteyukiStudio/LiteyukiStudioOpensourceLICENSE link: https://github.com/LiteyukiStudio/LiteyukiStudioOpensourceLICENSE
--- ---
<script setup>
import StatsBar from '../components/StatsBar.vue'
</script>
<StatsBar /> <StatsBar />