mirror of
https://github.com/Wei-Shaw/sub2api.git
synced 2026-03-30 05:04:28 +00:00
feat(frontend): add API Key quota progress bars to usage window column
Display daily/weekly/total quota utilization as progress bars in the usage window column for API Key accounts, providing visual feedback consistent with other account types (OAuth/Gemini). - Daily quota: "1d" label with reset countdown - Weekly quota: "7d" label with reset countdown - Total quota: "total" label (no reset)
This commit is contained in:
@@ -333,6 +333,29 @@
|
||||
<div v-else>
|
||||
<!-- Gemini API Key accounts: show quota info -->
|
||||
<AccountQuotaInfo v-if="account.platform === 'gemini'" :account="account" />
|
||||
<!-- API Key accounts with quota limits: show progress bars -->
|
||||
<div v-else-if="hasApiKeyQuota" class="space-y-1">
|
||||
<UsageProgressBar
|
||||
v-if="quotaDailyBar"
|
||||
label="1d"
|
||||
:utilization="quotaDailyBar.utilization"
|
||||
:resets-at="quotaDailyBar.resetsAt"
|
||||
color="indigo"
|
||||
/>
|
||||
<UsageProgressBar
|
||||
v-if="quotaWeeklyBar"
|
||||
label="7d"
|
||||
:utilization="quotaWeeklyBar.utilization"
|
||||
:resets-at="quotaWeeklyBar.resetsAt"
|
||||
color="emerald"
|
||||
/>
|
||||
<UsageProgressBar
|
||||
v-if="quotaTotalBar"
|
||||
label="total"
|
||||
:utilization="quotaTotalBar.utilization"
|
||||
color="purple"
|
||||
/>
|
||||
</div>
|
||||
<div v-else class="text-xs text-gray-400">-</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -809,6 +832,59 @@ const loadUsage = async () => {
|
||||
}
|
||||
}
|
||||
|
||||
// ===== API Key quota progress bars =====
|
||||
|
||||
interface QuotaBarInfo {
|
||||
utilization: number
|
||||
resetsAt: string | null
|
||||
}
|
||||
|
||||
const makeQuotaBar = (
|
||||
used: number,
|
||||
limit: number,
|
||||
startKey?: string
|
||||
): QuotaBarInfo => {
|
||||
const utilization = limit > 0 ? (used / limit) * 100 : 0
|
||||
let resetsAt: string | null = null
|
||||
if (startKey) {
|
||||
const extra = props.account.extra as Record<string, unknown> | undefined
|
||||
const startStr = extra?.[startKey] as string | undefined
|
||||
if (startStr) {
|
||||
const startDate = new Date(startStr)
|
||||
const periodMs = startKey.includes('daily') ? 24 * 60 * 60 * 1000 : 7 * 24 * 60 * 60 * 1000
|
||||
resetsAt = new Date(startDate.getTime() + periodMs).toISOString()
|
||||
}
|
||||
}
|
||||
return { utilization, resetsAt }
|
||||
}
|
||||
|
||||
const hasApiKeyQuota = computed(() => {
|
||||
if (props.account.type !== 'apikey') return false
|
||||
return (
|
||||
(props.account.quota_daily_limit ?? 0) > 0 ||
|
||||
(props.account.quota_weekly_limit ?? 0) > 0 ||
|
||||
(props.account.quota_limit ?? 0) > 0
|
||||
)
|
||||
})
|
||||
|
||||
const quotaDailyBar = computed((): QuotaBarInfo | null => {
|
||||
const limit = props.account.quota_daily_limit ?? 0
|
||||
if (limit <= 0) return null
|
||||
return makeQuotaBar(props.account.quota_daily_used ?? 0, limit, 'quota_daily_start')
|
||||
})
|
||||
|
||||
const quotaWeeklyBar = computed((): QuotaBarInfo | null => {
|
||||
const limit = props.account.quota_weekly_limit ?? 0
|
||||
if (limit <= 0) return null
|
||||
return makeQuotaBar(props.account.quota_weekly_used ?? 0, limit, 'quota_weekly_start')
|
||||
})
|
||||
|
||||
const quotaTotalBar = computed((): QuotaBarInfo | null => {
|
||||
const limit = props.account.quota_limit ?? 0
|
||||
if (limit <= 0) return null
|
||||
return makeQuotaBar(props.account.quota_used ?? 0, limit)
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
if (!shouldAutoLoadUsageOnMount.value) return
|
||||
loadUsage()
|
||||
|
||||
Reference in New Issue
Block a user