mirror of
https://github.com/Wei-Shaw/sub2api.git
synced 2026-04-18 12:37:27 +00:00
- 扩展 Icon.vue 组件,新增 60+ 图标路径 - 导航类: arrowRight, arrowLeft, arrowUp, arrowDown, chevronUp, externalLink - 状态类: checkCircle, xCircle, exclamationCircle, exclamationTriangle, infoCircle - 用户类: user, userCircle, userPlus, users - 文档类: document, clipboard, copy, inbox - 操作类: download, upload, filter, sort - 安全类: key, lock, shield - UI类: menu, calendar, home, terminal, gift, creditCard, mail - 数据类: chartBar, trendingUp, database, cube - 其他: bolt, sparkles, cloud, server, sun, moon, book 等 - 重构 56 个 Vue 组件,用 Icon 组件替换内联 SVG - 净减少约 2200 行代码 - 提升代码可维护性和一致性 - 统一图标样式和尺寸管理
172 lines
5.8 KiB
Vue
172 lines
5.8 KiB
Vue
<template>
|
|
<div class="flex items-center gap-2">
|
|
<!-- Main Status Badge -->
|
|
<button
|
|
v-if="isTempUnschedulable"
|
|
type="button"
|
|
:class="['badge text-xs', statusClass, 'cursor-pointer']"
|
|
:title="t('admin.accounts.status.viewTempUnschedDetails')"
|
|
@click="handleTempUnschedClick"
|
|
>
|
|
{{ statusText }}
|
|
</button>
|
|
<span v-else :class="['badge text-xs', statusClass]">
|
|
{{ statusText }}
|
|
</span>
|
|
|
|
<!-- Error Info Indicator -->
|
|
<div v-if="hasError && account.error_message" class="group/error relative">
|
|
<svg
|
|
class="h-4 w-4 cursor-help text-red-500 transition-colors hover:text-red-600 dark:text-red-400 dark:hover:text-red-300"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9 5.25h.008v.008H12v-.008z"
|
|
/>
|
|
</svg>
|
|
<!-- Tooltip - 向下显示 -->
|
|
<div
|
|
class="invisible absolute left-0 top-full z-[100] mt-1.5 min-w-[200px] max-w-[300px] rounded-lg bg-gray-800 px-3 py-2 text-xs text-white opacity-0 shadow-xl transition-all duration-200 group-hover/error:visible group-hover/error:opacity-100 dark:bg-gray-900"
|
|
>
|
|
<div class="whitespace-pre-wrap break-words leading-relaxed text-gray-300">
|
|
{{ account.error_message }}
|
|
</div>
|
|
<!-- 上方小三角 -->
|
|
<div
|
|
class="absolute bottom-full left-3 border-[6px] border-transparent border-b-gray-800 dark:border-b-gray-900"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Rate Limit Indicator (429) -->
|
|
<div v-if="isRateLimited" class="group relative">
|
|
<span
|
|
class="inline-flex items-center gap-1 rounded bg-amber-100 px-1.5 py-0.5 text-xs font-medium text-amber-700 dark:bg-amber-900/30 dark:text-amber-400"
|
|
>
|
|
<Icon name="exclamationTriangle" size="xs" :stroke-width="2" />
|
|
429
|
|
</span>
|
|
<!-- Tooltip -->
|
|
<div
|
|
class="pointer-events-none absolute bottom-full left-1/2 z-50 mb-2 -translate-x-1/2 whitespace-nowrap rounded bg-gray-900 px-2 py-1 text-xs text-white opacity-0 transition-opacity group-hover:opacity-100 dark:bg-gray-700"
|
|
>
|
|
{{ t('admin.accounts.status.rateLimitedUntil', { time: formatTime(account.rate_limit_reset_at) }) }}
|
|
<div
|
|
class="absolute left-1/2 top-full -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Overload Indicator (529) -->
|
|
<div v-if="isOverloaded" class="group relative">
|
|
<span
|
|
class="inline-flex items-center gap-1 rounded bg-red-100 px-1.5 py-0.5 text-xs font-medium text-red-700 dark:bg-red-900/30 dark:text-red-400"
|
|
>
|
|
<Icon name="exclamationTriangle" size="xs" :stroke-width="2" />
|
|
529
|
|
</span>
|
|
<!-- Tooltip -->
|
|
<div
|
|
class="pointer-events-none absolute bottom-full left-1/2 z-50 mb-2 -translate-x-1/2 whitespace-nowrap rounded bg-gray-900 px-2 py-1 text-xs text-white opacity-0 transition-opacity group-hover:opacity-100 dark:bg-gray-700"
|
|
>
|
|
{{ t('admin.accounts.status.overloadedUntil', { time: formatTime(account.overload_until) }) }}
|
|
<div
|
|
class="absolute left-1/2 top-full -translate-x-1/2 border-4 border-transparent border-t-gray-900 dark:border-t-gray-700"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import type { Account } from '@/types'
|
|
import { formatTime } from '@/utils/format'
|
|
import Icon from '@/components/icons/Icon.vue'
|
|
|
|
const { t } = useI18n()
|
|
|
|
const props = defineProps<{
|
|
account: Account
|
|
}>()
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'show-temp-unsched', account: Account): void
|
|
}>()
|
|
|
|
// Computed: is rate limited (429)
|
|
const isRateLimited = computed(() => {
|
|
if (!props.account.rate_limit_reset_at) return false
|
|
return new Date(props.account.rate_limit_reset_at) > new Date()
|
|
})
|
|
|
|
// Computed: is overloaded (529)
|
|
const isOverloaded = computed(() => {
|
|
if (!props.account.overload_until) return false
|
|
return new Date(props.account.overload_until) > new Date()
|
|
})
|
|
|
|
// Computed: is temp unschedulable
|
|
const isTempUnschedulable = computed(() => {
|
|
if (!props.account.temp_unschedulable_until) return false
|
|
return new Date(props.account.temp_unschedulable_until) > new Date()
|
|
})
|
|
|
|
// Computed: has error status
|
|
const hasError = computed(() => {
|
|
return props.account.status === 'error'
|
|
})
|
|
|
|
// Computed: status badge class
|
|
const statusClass = computed(() => {
|
|
if (hasError.value) {
|
|
return 'badge-danger'
|
|
}
|
|
if (isTempUnschedulable.value) {
|
|
return 'badge-warning'
|
|
}
|
|
if (!props.account.schedulable || isRateLimited.value || isOverloaded.value) {
|
|
return 'badge-gray'
|
|
}
|
|
switch (props.account.status) {
|
|
case 'active':
|
|
return 'badge-success'
|
|
case 'inactive':
|
|
return 'badge-gray'
|
|
case 'error':
|
|
return 'badge-danger'
|
|
default:
|
|
return 'badge-gray'
|
|
}
|
|
})
|
|
|
|
// Computed: status text
|
|
const statusText = computed(() => {
|
|
if (hasError.value) {
|
|
return t('admin.accounts.status.error')
|
|
}
|
|
if (isTempUnschedulable.value) {
|
|
return t('admin.accounts.status.tempUnschedulable')
|
|
}
|
|
if (!props.account.schedulable) {
|
|
return t('admin.accounts.status.paused')
|
|
}
|
|
if (isRateLimited.value || isOverloaded.value) {
|
|
return t('admin.accounts.status.limited')
|
|
}
|
|
return t(`admin.accounts.status.${props.account.status}`)
|
|
})
|
|
|
|
const handleTempUnschedClick = () => {
|
|
if (!isTempUnschedulable.value) return
|
|
emit('show-temp-unsched', props.account)
|
|
}
|
|
|
|
</script>
|