forked from bot/app
📝 [docs]: 新增在线展示
This commit is contained in:
parent
499caca7e3
commit
d485e095ae
@ -1,4 +1,13 @@
|
||||
import type {Theme} from "vitepress";
|
||||
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import './liteyuki.css'
|
||||
|
||||
export default DefaultTheme
|
||||
import StatsBar from '../../components/StatsBar.vue'
|
||||
|
||||
export default {
|
||||
extends: DefaultTheme,
|
||||
enhanceApp({app}) {
|
||||
app.component('StatsBar', StatsBar)
|
||||
},
|
||||
} satisfies Theme
|
@ -1,32 +1,39 @@
|
||||
<script setup>
|
||||
import getText from "../components/scripts/i18nData.ts";
|
||||
import {ref} from "vue";
|
||||
<script setup lang="ts">
|
||||
|
||||
import {ref, onMounted, onUnmounted} from "vue";
|
||||
import getText from "./scripts/i18n";
|
||||
|
||||
|
||||
|
||||
const onlineText = getText('online');
|
||||
const totalText = getText('total')
|
||||
const totalText = getText('total');
|
||||
|
||||
const onlineFetchUrl = "https://api.liteyuki.icu/online"
|
||||
const totalFetchUrl = "https://api.liteyuki.icu/count"
|
||||
const onlineFetchUrl = "https://api.liteyuki.icu/online";
|
||||
const totalFetchUrl = "https://api.liteyuki.icu/count";
|
||||
|
||||
let online = ref(-1);
|
||||
let total = ref(-1);
|
||||
const online = ref(0);
|
||||
const total = ref(0);
|
||||
|
||||
async function updateData() {
|
||||
try {
|
||||
const onlineResponse = await fetch(onlineFetchUrl);
|
||||
const onlineData = await onlineResponse.json();
|
||||
online.value = onlineData.online;
|
||||
function updateData() {
|
||||
|
||||
const totalResponse = await fetch(totalFetchUrl);
|
||||
const totalData = await totalResponse.json();
|
||||
total.value = totalData.register;
|
||||
} catch (error) {
|
||||
console.error('Error fetching data:', error);
|
||||
}
|
||||
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));
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
const intervalId = setInterval(updateData, 10000);
|
||||
updateData();
|
||||
setInterval(updateData, 10000);
|
||||
onUnmounted(() => {
|
||||
clearInterval(intervalId);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
174
docs/components/StatsBarBak.vue
Normal file
174
docs/components/StatsBarBak.vue
Normal 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>
|
27
docs/components/scripts/i18n.ts
Normal file
27
docs/components/scripts/i18n.ts
Normal 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];
|
||||
}
|
||||
}
|
@ -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];
|
||||
}
|
||||
}
|
@ -61,7 +61,4 @@ features:
|
||||
---
|
||||
|
||||
|
||||
<script setup>
|
||||
import StatsBar from '../components/StatsBar.vue'
|
||||
</script>
|
||||
<StatsBar />
|
@ -10,7 +10,6 @@
|
||||
},
|
||||
"type": "module",
|
||||
"dependencies": {
|
||||
"clipboard": "^2.0.11",
|
||||
"vue": "^3.4.38"
|
||||
"clipboard": "^2.0.11"
|
||||
}
|
||||
}
|
@ -7,7 +7,7 @@
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"include": [
|
||||
"components/**/*.ts"
|
||||
"components/**/*.ts",
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
|
@ -60,8 +60,4 @@ features:
|
||||
link: https://github.com/LiteyukiStudio/LiteyukiStudioOpensourceLICENSE
|
||||
---
|
||||
|
||||
|
||||
<script setup>
|
||||
import StatsBar from '../components/StatsBar.vue'
|
||||
</script>
|
||||
<StatsBar />
|
||||
|
Loading…
Reference in New Issue
Block a user