1216 lines
43 KiB
Vue
1216 lines
43 KiB
Vue
<template>
|
|
<AppLayout>
|
|
<TablePageLayout>
|
|
<template #filters>
|
|
<!-- Top Toolbar: Left (search + filters) / Right (actions) -->
|
|
<div class="flex flex-wrap items-start justify-between gap-4">
|
|
<!-- Left: Fuzzy user search + filters (wrap to multiple lines) -->
|
|
<div class="flex flex-1 flex-wrap items-center gap-3">
|
|
<!-- User Search -->
|
|
<div
|
|
class="relative w-full sm:w-64"
|
|
data-filter-user-search
|
|
>
|
|
<Icon
|
|
name="search"
|
|
size="md"
|
|
class="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400"
|
|
/>
|
|
<input
|
|
v-model="filterUserKeyword"
|
|
type="text"
|
|
:placeholder="t('admin.users.searchUsers')"
|
|
class="input pl-10 pr-8"
|
|
@input="debounceSearchFilterUsers"
|
|
@focus="showFilterUserDropdown = true"
|
|
/>
|
|
<button
|
|
v-if="selectedFilterUser"
|
|
@click="clearFilterUser"
|
|
type="button"
|
|
class="absolute right-2 top-1/2 -translate-y-1/2 text-gray-400 hover:text-gray-600 dark:hover:text-gray-300"
|
|
:title="t('common.clear')"
|
|
>
|
|
<Icon name="x" size="sm" :stroke-width="2" />
|
|
</button>
|
|
|
|
<!-- User Dropdown -->
|
|
<div
|
|
v-if="showFilterUserDropdown && (filterUserResults.length > 0 || filterUserKeyword)"
|
|
class="absolute z-50 mt-1 max-h-60 w-full overflow-auto rounded-lg border border-gray-200 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-800"
|
|
>
|
|
<div
|
|
v-if="filterUserLoading"
|
|
class="px-4 py-3 text-sm text-gray-500 dark:text-gray-400"
|
|
>
|
|
{{ t('common.loading') }}
|
|
</div>
|
|
<div
|
|
v-else-if="filterUserResults.length === 0 && filterUserKeyword"
|
|
class="px-4 py-3 text-sm text-gray-500 dark:text-gray-400"
|
|
>
|
|
{{ t('common.noOptionsFound') }}
|
|
</div>
|
|
<button
|
|
v-for="user in filterUserResults"
|
|
:key="user.id"
|
|
type="button"
|
|
@click="selectFilterUser(user)"
|
|
class="w-full px-4 py-2 text-left text-sm hover:bg-gray-100 dark:hover:bg-gray-700"
|
|
>
|
|
<span class="font-medium text-gray-900 dark:text-white">{{ user.email }}</span>
|
|
<span class="ml-2 text-gray-500 dark:text-gray-400">#{{ user.id }}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Filters -->
|
|
<div class="w-full sm:w-40">
|
|
<Select
|
|
v-model="filters.status"
|
|
:options="statusOptions"
|
|
:placeholder="t('admin.subscriptions.allStatus')"
|
|
@change="applyFilters"
|
|
/>
|
|
</div>
|
|
<div class="w-full sm:w-48">
|
|
<Select
|
|
v-model="filters.group_id"
|
|
:options="groupOptions"
|
|
:placeholder="t('admin.subscriptions.allGroups')"
|
|
@change="applyFilters"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Right: Actions -->
|
|
<div class="ml-auto flex flex-wrap items-center justify-end gap-3">
|
|
<button
|
|
@click="loadSubscriptions"
|
|
:disabled="loading"
|
|
class="btn btn-secondary"
|
|
:title="t('common.refresh')"
|
|
>
|
|
<Icon name="refresh" size="md" :class="loading ? 'animate-spin' : ''" />
|
|
</button>
|
|
<!-- Column Settings Dropdown -->
|
|
<div class="relative" ref="columnDropdownRef">
|
|
<button
|
|
@click="showColumnDropdown = !showColumnDropdown"
|
|
class="btn btn-secondary px-2 md:px-3"
|
|
:title="t('admin.users.columnSettings')"
|
|
>
|
|
<svg class="h-4 w-4 md:mr-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24" stroke-width="1.5">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9 4.5v15m6-15v15m-10.875 0h15.75c.621 0 1.125-.504 1.125-1.125V5.625c0-.621-.504-1.125-1.125-1.125H4.125C3.504 4.5 3 5.004 3 5.625v12.75c0 .621.504 1.125 1.125 1.125z" />
|
|
</svg>
|
|
<span class="hidden md:inline">{{ t('admin.users.columnSettings') }}</span>
|
|
</button>
|
|
<!-- Dropdown menu -->
|
|
<div
|
|
v-if="showColumnDropdown"
|
|
class="absolute right-0 z-50 mt-2 w-48 origin-top-right rounded-lg border border-gray-200 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-800"
|
|
>
|
|
<div class="p-2">
|
|
<!-- User column mode selection -->
|
|
<div class="mb-2 border-b border-gray-200 pb-2 dark:border-gray-700">
|
|
<div class="px-3 py-1 text-xs font-medium text-gray-500 dark:text-gray-400">
|
|
{{ t('admin.subscriptions.columns.user') }}
|
|
</div>
|
|
<button
|
|
@click="setUserColumnMode('email')"
|
|
class="flex w-full items-center justify-between rounded-md px-3 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-200 dark:hover:bg-gray-700"
|
|
>
|
|
<span>{{ t('admin.users.columns.email') }}</span>
|
|
<Icon v-if="userColumnMode === 'email'" name="check" size="sm" class="text-primary-500" />
|
|
</button>
|
|
<button
|
|
@click="setUserColumnMode('username')"
|
|
class="flex w-full items-center justify-between rounded-md px-3 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-200 dark:hover:bg-gray-700"
|
|
>
|
|
<span>{{ t('admin.users.columns.username') }}</span>
|
|
<Icon v-if="userColumnMode === 'username'" name="check" size="sm" class="text-primary-500" />
|
|
</button>
|
|
</div>
|
|
<!-- Other columns toggle -->
|
|
<button
|
|
v-for="col in toggleableColumns"
|
|
:key="col.key"
|
|
@click="toggleColumn(col.key)"
|
|
class="flex w-full items-center justify-between rounded-md px-3 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-200 dark:hover:bg-gray-700"
|
|
>
|
|
<span>{{ col.label }}</span>
|
|
<Icon v-if="isColumnVisible(col.key)" name="check" size="sm" class="text-primary-500" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button @click="showAssignModal = true" class="btn btn-primary">
|
|
<Icon name="plus" size="md" class="mr-2" />
|
|
{{ t('admin.subscriptions.assignSubscription') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- Subscriptions Table -->
|
|
<template #table>
|
|
<DataTable :columns="columns" :data="subscriptions" :loading="loading">
|
|
<template #cell-user="{ row }">
|
|
<div class="flex items-center gap-2">
|
|
<div
|
|
class="flex h-8 w-8 items-center justify-center rounded-full bg-primary-100 dark:bg-primary-900/30"
|
|
>
|
|
<span class="text-sm font-medium text-primary-700 dark:text-primary-300">
|
|
{{ userColumnMode === 'email'
|
|
? (row.user?.email?.charAt(0).toUpperCase() || '?')
|
|
: (row.user?.username?.charAt(0).toUpperCase() || '?')
|
|
}}
|
|
</span>
|
|
</div>
|
|
<span class="font-medium text-gray-900 dark:text-white">
|
|
{{ userColumnMode === 'email'
|
|
? (row.user?.email || t('admin.redeem.userPrefix', { id: row.user_id }))
|
|
: (row.user?.username || '-')
|
|
}}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-group="{ row }">
|
|
<GroupBadge
|
|
v-if="row.group"
|
|
:name="row.group.name"
|
|
:platform="row.group.platform"
|
|
:subscription-type="row.group.subscription_type"
|
|
:rate-multiplier="row.group.rate_multiplier"
|
|
:show-rate="false"
|
|
/>
|
|
<span v-else class="text-sm text-gray-400 dark:text-dark-500">-</span>
|
|
</template>
|
|
|
|
<template #cell-usage="{ row }">
|
|
<div class="min-w-[280px] space-y-2">
|
|
<!-- Daily Usage -->
|
|
<div v-if="row.group?.daily_limit_usd" class="usage-row">
|
|
<div class="flex items-center gap-2">
|
|
<span class="usage-label">{{ t('admin.subscriptions.daily') }}</span>
|
|
<div class="h-1.5 flex-1 rounded-full bg-gray-200 dark:bg-dark-600">
|
|
<div
|
|
class="h-1.5 rounded-full transition-all"
|
|
:class="getProgressClass(row.daily_usage_usd, row.group?.daily_limit_usd)"
|
|
:style="{
|
|
width: getProgressWidth(row.daily_usage_usd, row.group?.daily_limit_usd)
|
|
}"
|
|
></div>
|
|
</div>
|
|
<span class="usage-amount">
|
|
${{ row.daily_usage_usd?.toFixed(2) || '0.00' }}
|
|
<span class="text-gray-400">/</span>
|
|
${{ row.group?.daily_limit_usd?.toFixed(2) }}
|
|
</span>
|
|
</div>
|
|
<div class="reset-info" v-if="row.daily_window_start">
|
|
<svg
|
|
class="h-3 w-3"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<span>{{ formatResetTime(row.daily_window_start, 'daily') }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Weekly Usage -->
|
|
<div v-if="row.group?.weekly_limit_usd" class="usage-row">
|
|
<div class="flex items-center gap-2">
|
|
<span class="usage-label">{{ t('admin.subscriptions.weekly') }}</span>
|
|
<div class="h-1.5 flex-1 rounded-full bg-gray-200 dark:bg-dark-600">
|
|
<div
|
|
class="h-1.5 rounded-full transition-all"
|
|
:class="getProgressClass(row.weekly_usage_usd, row.group?.weekly_limit_usd)"
|
|
:style="{
|
|
width: getProgressWidth(row.weekly_usage_usd, row.group?.weekly_limit_usd)
|
|
}"
|
|
></div>
|
|
</div>
|
|
<span class="usage-amount">
|
|
${{ row.weekly_usage_usd?.toFixed(2) || '0.00' }}
|
|
<span class="text-gray-400">/</span>
|
|
${{ row.group?.weekly_limit_usd?.toFixed(2) }}
|
|
</span>
|
|
</div>
|
|
<div class="reset-info" v-if="row.weekly_window_start">
|
|
<svg
|
|
class="h-3 w-3"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<span>{{ formatResetTime(row.weekly_window_start, 'weekly') }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Monthly Usage -->
|
|
<div v-if="row.group?.monthly_limit_usd" class="usage-row">
|
|
<div class="flex items-center gap-2">
|
|
<span class="usage-label">{{ t('admin.subscriptions.monthly') }}</span>
|
|
<div class="h-1.5 flex-1 rounded-full bg-gray-200 dark:bg-dark-600">
|
|
<div
|
|
class="h-1.5 rounded-full transition-all"
|
|
:class="getProgressClass(row.monthly_usage_usd, row.group?.monthly_limit_usd)"
|
|
:style="{
|
|
width: getProgressWidth(row.monthly_usage_usd, row.group?.monthly_limit_usd)
|
|
}"
|
|
></div>
|
|
</div>
|
|
<span class="usage-amount">
|
|
${{ row.monthly_usage_usd?.toFixed(2) || '0.00' }}
|
|
<span class="text-gray-400">/</span>
|
|
${{ row.group?.monthly_limit_usd?.toFixed(2) }}
|
|
</span>
|
|
</div>
|
|
<div class="reset-info" v-if="row.monthly_window_start">
|
|
<svg
|
|
class="h-3 w-3"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="2"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<span>{{ formatResetTime(row.monthly_window_start, 'monthly') }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- No Limits - Unlimited badge -->
|
|
<div
|
|
v-if="
|
|
!row.group?.daily_limit_usd &&
|
|
!row.group?.weekly_limit_usd &&
|
|
!row.group?.monthly_limit_usd
|
|
"
|
|
class="flex items-center gap-2 rounded-lg bg-gradient-to-r from-emerald-50 to-teal-50 px-3 py-2 dark:from-emerald-900/20 dark:to-teal-900/20"
|
|
>
|
|
<span class="text-lg text-emerald-600 dark:text-emerald-400">∞</span>
|
|
<span class="text-xs font-medium text-emerald-700 dark:text-emerald-300">
|
|
{{ t('admin.subscriptions.unlimited') }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-expires_at="{ value }">
|
|
<div v-if="value">
|
|
<span
|
|
class="text-sm"
|
|
:class="
|
|
isExpiringSoon(value)
|
|
? 'text-orange-600 dark:text-orange-400'
|
|
: 'text-gray-700 dark:text-gray-300'
|
|
"
|
|
>
|
|
{{ formatDateOnly(value) }}
|
|
</span>
|
|
<div v-if="getDaysRemaining(value) !== null" class="text-xs text-gray-500">
|
|
{{ getDaysRemaining(value) }} {{ t('admin.subscriptions.daysRemaining') }}
|
|
</div>
|
|
</div>
|
|
<span v-else class="text-sm text-gray-500">{{
|
|
t('admin.subscriptions.noExpiration')
|
|
}}</span>
|
|
</template>
|
|
|
|
<template #cell-status="{ value }">
|
|
<span
|
|
:class="[
|
|
'badge',
|
|
value === 'active'
|
|
? 'badge-success'
|
|
: value === 'expired'
|
|
? 'badge-warning'
|
|
: 'badge-danger'
|
|
]"
|
|
>
|
|
{{ t(`admin.subscriptions.status.${value}`) }}
|
|
</span>
|
|
</template>
|
|
|
|
<template #cell-actions="{ row }">
|
|
<div class="flex items-center gap-1">
|
|
<button
|
|
v-if="row.status === 'active'"
|
|
@click="handleExtend(row)"
|
|
class="flex flex-col items-center gap-0.5 rounded-lg p-1.5 text-gray-500 transition-colors hover:bg-blue-50 hover:text-blue-600 dark:hover:bg-blue-900/20 dark:hover:text-blue-400"
|
|
>
|
|
<Icon name="calendar" size="sm" />
|
|
<span class="text-xs">{{ t('admin.subscriptions.adjust') }}</span>
|
|
</button>
|
|
<button
|
|
v-if="row.status === 'active'"
|
|
@click="handleRevoke(row)"
|
|
class="flex flex-col items-center gap-0.5 rounded-lg p-1.5 text-gray-500 transition-colors hover:bg-red-50 hover:text-red-600 dark:hover:bg-red-900/20 dark:hover:text-red-400"
|
|
>
|
|
<Icon name="ban" size="sm" />
|
|
<span class="text-xs">{{ t('admin.subscriptions.revoke') }}</span>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<template #empty>
|
|
<EmptyState
|
|
:title="t('admin.subscriptions.noSubscriptionsYet')"
|
|
:description="t('admin.subscriptions.assignFirstSubscription')"
|
|
:action-text="t('admin.subscriptions.assignSubscription')"
|
|
@action="showAssignModal = true"
|
|
/>
|
|
</template>
|
|
</DataTable>
|
|
</template>
|
|
|
|
<!-- Pagination -->
|
|
<template #pagination>
|
|
<Pagination
|
|
v-if="pagination.total > 0"
|
|
:page="pagination.page"
|
|
:total="pagination.total"
|
|
:page-size="pagination.page_size"
|
|
@update:page="handlePageChange"
|
|
@update:pageSize="handlePageSizeChange"
|
|
/>
|
|
</template>
|
|
</TablePageLayout>
|
|
|
|
<!-- Assign Subscription Modal -->
|
|
<BaseDialog
|
|
:show="showAssignModal"
|
|
:title="t('admin.subscriptions.assignSubscription')"
|
|
width="normal"
|
|
@close="closeAssignModal"
|
|
>
|
|
<form
|
|
id="assign-subscription-form"
|
|
@submit.prevent="handleAssignSubscription"
|
|
class="space-y-5"
|
|
>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.subscriptions.form.user') }}</label>
|
|
<div class="relative" data-assign-user-search>
|
|
<input
|
|
v-model="userSearchKeyword"
|
|
type="text"
|
|
class="input pr-8"
|
|
:placeholder="t('admin.usage.searchUserPlaceholder')"
|
|
@input="debounceSearchUsers"
|
|
@focus="showUserDropdown = true"
|
|
/>
|
|
<button
|
|
v-if="selectedUser"
|
|
@click="clearUserSelection"
|
|
type="button"
|
|
class="absolute right-2 top-1/2 -translate-y-1/2 text-gray-400 hover:text-gray-600 dark:hover:text-gray-300"
|
|
>
|
|
<Icon name="x" size="sm" :stroke-width="2" />
|
|
</button>
|
|
<!-- User Dropdown -->
|
|
<div
|
|
v-if="showUserDropdown && (userSearchResults.length > 0 || userSearchKeyword)"
|
|
class="absolute z-50 mt-1 max-h-60 w-full overflow-auto rounded-lg border border-gray-200 bg-white shadow-lg dark:border-gray-700 dark:bg-gray-800"
|
|
>
|
|
<div
|
|
v-if="userSearchLoading"
|
|
class="px-4 py-3 text-sm text-gray-500 dark:text-gray-400"
|
|
>
|
|
{{ t('common.loading') }}
|
|
</div>
|
|
<div
|
|
v-else-if="userSearchResults.length === 0 && userSearchKeyword"
|
|
class="px-4 py-3 text-sm text-gray-500 dark:text-gray-400"
|
|
>
|
|
{{ t('common.noOptionsFound') }}
|
|
</div>
|
|
<button
|
|
v-for="user in userSearchResults"
|
|
:key="user.id"
|
|
type="button"
|
|
@click="selectUser(user)"
|
|
class="w-full px-4 py-2 text-left text-sm hover:bg-gray-100 dark:hover:bg-gray-700"
|
|
>
|
|
<span class="font-medium text-gray-900 dark:text-white">{{ user.email }}</span>
|
|
<span class="ml-2 text-gray-500 dark:text-gray-400">#{{ user.id }}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.subscriptions.form.group') }}</label>
|
|
<Select
|
|
v-model="assignForm.group_id"
|
|
:options="subscriptionGroupOptions"
|
|
:placeholder="t('admin.subscriptions.selectGroup')"
|
|
>
|
|
<template #selected="{ option }">
|
|
<GroupBadge
|
|
v-if="option"
|
|
:name="(option as unknown as GroupOption).label"
|
|
:platform="(option as unknown as GroupOption).platform"
|
|
:subscription-type="(option as unknown as GroupOption).subscriptionType"
|
|
:rate-multiplier="(option as unknown as GroupOption).rate"
|
|
/>
|
|
<span v-else class="text-gray-400">{{ t('admin.subscriptions.selectGroup') }}</span>
|
|
</template>
|
|
<template #option="{ option, selected }">
|
|
<GroupOptionItem
|
|
:name="(option as unknown as GroupOption).label"
|
|
:platform="(option as unknown as GroupOption).platform"
|
|
:subscription-type="(option as unknown as GroupOption).subscriptionType"
|
|
:rate-multiplier="(option as unknown as GroupOption).rate"
|
|
:description="(option as unknown as GroupOption).description"
|
|
:selected="selected"
|
|
/>
|
|
</template>
|
|
</Select>
|
|
<p class="input-hint">{{ t('admin.subscriptions.groupHint') }}</p>
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.subscriptions.form.validityDays') }}</label>
|
|
<input v-model.number="assignForm.validity_days" type="number" min="1" class="input" />
|
|
<p class="input-hint">{{ t('admin.subscriptions.validityHint') }}</p>
|
|
</div>
|
|
</form>
|
|
<template #footer>
|
|
<div class="flex justify-end gap-3">
|
|
<button @click="closeAssignModal" type="button" class="btn btn-secondary">
|
|
{{ t('common.cancel') }}
|
|
</button>
|
|
<button
|
|
type="submit"
|
|
form="assign-subscription-form"
|
|
:disabled="submitting"
|
|
class="btn btn-primary"
|
|
>
|
|
<svg
|
|
v-if="submitting"
|
|
class="-ml-1 mr-2 h-4 w-4 animate-spin"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<circle
|
|
class="opacity-25"
|
|
cx="12"
|
|
cy="12"
|
|
r="10"
|
|
stroke="currentColor"
|
|
stroke-width="4"
|
|
></circle>
|
|
<path
|
|
class="opacity-75"
|
|
fill="currentColor"
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
></path>
|
|
</svg>
|
|
{{ submitting ? t('admin.subscriptions.assigning') : t('admin.subscriptions.assign') }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</BaseDialog>
|
|
|
|
<!-- Adjust Subscription Modal -->
|
|
<BaseDialog
|
|
:show="showExtendModal"
|
|
:title="t('admin.subscriptions.adjustSubscription')"
|
|
width="narrow"
|
|
@close="closeExtendModal"
|
|
>
|
|
<form
|
|
v-if="extendingSubscription"
|
|
id="extend-subscription-form"
|
|
@submit.prevent="handleExtendSubscription"
|
|
class="space-y-5"
|
|
>
|
|
<div class="rounded-lg bg-gray-50 p-4 dark:bg-dark-700">
|
|
<p class="text-sm text-gray-600 dark:text-gray-400">
|
|
{{ t('admin.subscriptions.adjustingFor') }}
|
|
<span class="font-medium text-gray-900 dark:text-white">{{
|
|
extendingSubscription.user?.email
|
|
}}</span>
|
|
</p>
|
|
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ t('admin.subscriptions.currentExpiration') }}:
|
|
<span class="font-medium text-gray-900 dark:text-white">
|
|
{{
|
|
extendingSubscription.expires_at
|
|
? formatDateOnly(extendingSubscription.expires_at)
|
|
: t('admin.subscriptions.noExpiration')
|
|
}}
|
|
</span>
|
|
</p>
|
|
<p v-if="extendingSubscription.expires_at" class="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
{{ t('admin.subscriptions.remainingDays') }}:
|
|
<span class="font-medium text-gray-900 dark:text-white">
|
|
{{ getDaysRemaining(extendingSubscription.expires_at) ?? 0 }}
|
|
</span>
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label class="input-label">{{ t('admin.subscriptions.form.adjustDays') }}</label>
|
|
<div class="flex items-center gap-2">
|
|
<input
|
|
v-model.number="extendForm.days"
|
|
type="number"
|
|
required
|
|
class="input text-center"
|
|
:placeholder="t('admin.subscriptions.adjustDaysPlaceholder')"
|
|
/>
|
|
</div>
|
|
<p class="input-hint">{{ t('admin.subscriptions.adjustHint') }}</p>
|
|
</div>
|
|
</form>
|
|
<template #footer>
|
|
<div v-if="extendingSubscription" class="flex justify-end gap-3">
|
|
<button @click="closeExtendModal" type="button" class="btn btn-secondary">
|
|
{{ t('common.cancel') }}
|
|
</button>
|
|
<button
|
|
type="submit"
|
|
form="extend-subscription-form"
|
|
:disabled="submitting"
|
|
class="btn btn-primary"
|
|
>
|
|
{{ submitting ? t('admin.subscriptions.adjusting') : t('admin.subscriptions.adjust') }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</BaseDialog>
|
|
|
|
<!-- Revoke Confirmation Dialog -->
|
|
<ConfirmDialog
|
|
:show="showRevokeDialog"
|
|
:title="t('admin.subscriptions.revokeSubscription')"
|
|
:message="t('admin.subscriptions.revokeConfirm', { user: revokingSubscription?.user?.email })"
|
|
:confirm-text="t('admin.subscriptions.revoke')"
|
|
:cancel-text="t('common.cancel')"
|
|
:danger="true"
|
|
@confirm="confirmRevoke"
|
|
@cancel="showRevokeDialog = false"
|
|
/>
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed, onMounted, onUnmounted } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useAppStore } from '@/stores/app'
|
|
import { adminAPI } from '@/api/admin'
|
|
import type { UserSubscription, Group, GroupPlatform, SubscriptionType } from '@/types'
|
|
import type { SimpleUser } from '@/api/admin/usage'
|
|
import type { Column } from '@/components/common/types'
|
|
import { formatDateOnly } from '@/utils/format'
|
|
import AppLayout from '@/components/layout/AppLayout.vue'
|
|
import TablePageLayout from '@/components/layout/TablePageLayout.vue'
|
|
import DataTable from '@/components/common/DataTable.vue'
|
|
import Pagination from '@/components/common/Pagination.vue'
|
|
import BaseDialog from '@/components/common/BaseDialog.vue'
|
|
import ConfirmDialog from '@/components/common/ConfirmDialog.vue'
|
|
import EmptyState from '@/components/common/EmptyState.vue'
|
|
import Select from '@/components/common/Select.vue'
|
|
import GroupBadge from '@/components/common/GroupBadge.vue'
|
|
import GroupOptionItem from '@/components/common/GroupOptionItem.vue'
|
|
import Icon from '@/components/icons/Icon.vue'
|
|
|
|
const { t } = useI18n()
|
|
const appStore = useAppStore()
|
|
|
|
interface GroupOption {
|
|
value: number
|
|
label: string
|
|
description: string | null
|
|
platform: GroupPlatform
|
|
subscriptionType: SubscriptionType
|
|
rate: number
|
|
}
|
|
|
|
// User column display mode: 'email' or 'username'
|
|
const userColumnMode = ref<'email' | 'username'>('email')
|
|
const USER_COLUMN_MODE_KEY = 'subscription-user-column-mode'
|
|
|
|
const loadUserColumnMode = () => {
|
|
try {
|
|
const saved = localStorage.getItem(USER_COLUMN_MODE_KEY)
|
|
if (saved === 'email' || saved === 'username') {
|
|
userColumnMode.value = saved
|
|
}
|
|
} catch (e) {
|
|
console.error('Failed to load user column mode:', e)
|
|
}
|
|
}
|
|
|
|
const saveUserColumnMode = () => {
|
|
try {
|
|
localStorage.setItem(USER_COLUMN_MODE_KEY, userColumnMode.value)
|
|
} catch (e) {
|
|
console.error('Failed to save user column mode:', e)
|
|
}
|
|
}
|
|
|
|
const setUserColumnMode = (mode: 'email' | 'username') => {
|
|
userColumnMode.value = mode
|
|
saveUserColumnMode()
|
|
}
|
|
|
|
// All available columns
|
|
const allColumns = computed<Column[]>(() => [
|
|
{
|
|
key: 'user',
|
|
label: userColumnMode.value === 'email'
|
|
? t('admin.subscriptions.columns.user')
|
|
: t('admin.users.columns.username'),
|
|
sortable: true
|
|
},
|
|
{ key: 'group', label: t('admin.subscriptions.columns.group'), sortable: true },
|
|
{ key: 'usage', label: t('admin.subscriptions.columns.usage'), sortable: false },
|
|
{ key: 'expires_at', label: t('admin.subscriptions.columns.expires'), sortable: true },
|
|
{ key: 'status', label: t('admin.subscriptions.columns.status'), sortable: true },
|
|
{ key: 'actions', label: t('admin.subscriptions.columns.actions'), sortable: false }
|
|
])
|
|
|
|
// Columns that can be toggled (exclude user and actions which are always visible)
|
|
const toggleableColumns = computed(() =>
|
|
allColumns.value.filter(col => col.key !== 'user' && col.key !== 'actions')
|
|
)
|
|
|
|
// Hidden columns set
|
|
const hiddenColumns = reactive<Set<string>>(new Set())
|
|
|
|
// Default hidden columns
|
|
const DEFAULT_HIDDEN_COLUMNS: string[] = []
|
|
|
|
// localStorage key
|
|
const HIDDEN_COLUMNS_KEY = 'subscription-hidden-columns'
|
|
|
|
// Load saved column settings
|
|
const loadSavedColumns = () => {
|
|
try {
|
|
const saved = localStorage.getItem(HIDDEN_COLUMNS_KEY)
|
|
if (saved) {
|
|
const parsed = JSON.parse(saved) as string[]
|
|
parsed.forEach(key => hiddenColumns.add(key))
|
|
} else {
|
|
DEFAULT_HIDDEN_COLUMNS.forEach(key => hiddenColumns.add(key))
|
|
}
|
|
} catch (e) {
|
|
console.error('Failed to load saved columns:', e)
|
|
DEFAULT_HIDDEN_COLUMNS.forEach(key => hiddenColumns.add(key))
|
|
}
|
|
}
|
|
|
|
// Save column settings to localStorage
|
|
const saveColumnsToStorage = () => {
|
|
try {
|
|
localStorage.setItem(HIDDEN_COLUMNS_KEY, JSON.stringify([...hiddenColumns]))
|
|
} catch (e) {
|
|
console.error('Failed to save columns:', e)
|
|
}
|
|
}
|
|
|
|
// Toggle column visibility
|
|
const toggleColumn = (key: string) => {
|
|
if (hiddenColumns.has(key)) {
|
|
hiddenColumns.delete(key)
|
|
} else {
|
|
hiddenColumns.add(key)
|
|
}
|
|
saveColumnsToStorage()
|
|
}
|
|
|
|
// Check if column is visible
|
|
const isColumnVisible = (key: string) => !hiddenColumns.has(key)
|
|
|
|
// Filtered columns for display
|
|
const columns = computed<Column[]>(() =>
|
|
allColumns.value.filter(col =>
|
|
col.key === 'user' || col.key === 'actions' || !hiddenColumns.has(col.key)
|
|
)
|
|
)
|
|
|
|
// Column dropdown state
|
|
const showColumnDropdown = ref(false)
|
|
const columnDropdownRef = ref<HTMLElement | null>(null)
|
|
|
|
// Filter options
|
|
const statusOptions = computed(() => [
|
|
{ value: '', label: t('admin.subscriptions.allStatus') },
|
|
{ value: 'active', label: t('admin.subscriptions.status.active') },
|
|
{ value: 'expired', label: t('admin.subscriptions.status.expired') },
|
|
{ value: 'revoked', label: t('admin.subscriptions.status.revoked') }
|
|
])
|
|
|
|
const subscriptions = ref<UserSubscription[]>([])
|
|
const groups = ref<Group[]>([])
|
|
const loading = ref(false)
|
|
let abortController: AbortController | null = null
|
|
|
|
// Toolbar user filter (fuzzy search -> select user_id)
|
|
const filterUserKeyword = ref('')
|
|
const filterUserResults = ref<SimpleUser[]>([])
|
|
const filterUserLoading = ref(false)
|
|
const showFilterUserDropdown = ref(false)
|
|
const selectedFilterUser = ref<SimpleUser | null>(null)
|
|
let filterUserSearchTimeout: ReturnType<typeof setTimeout> | null = null
|
|
|
|
// User search state
|
|
const userSearchKeyword = ref('')
|
|
const userSearchResults = ref<SimpleUser[]>([])
|
|
const userSearchLoading = ref(false)
|
|
const showUserDropdown = ref(false)
|
|
const selectedUser = ref<SimpleUser | null>(null)
|
|
let userSearchTimeout: ReturnType<typeof setTimeout> | null = null
|
|
|
|
const filters = reactive({
|
|
status: '',
|
|
group_id: '',
|
|
user_id: null as number | null
|
|
})
|
|
const pagination = reactive({
|
|
page: 1,
|
|
page_size: 20,
|
|
total: 0,
|
|
pages: 0
|
|
})
|
|
|
|
const showAssignModal = ref(false)
|
|
const showExtendModal = ref(false)
|
|
const showRevokeDialog = ref(false)
|
|
const submitting = ref(false)
|
|
const extendingSubscription = ref<UserSubscription | null>(null)
|
|
const revokingSubscription = ref<UserSubscription | null>(null)
|
|
|
|
const assignForm = reactive({
|
|
user_id: null as number | null,
|
|
group_id: null as number | null,
|
|
validity_days: 30
|
|
})
|
|
|
|
const extendForm = reactive({
|
|
days: 30
|
|
})
|
|
|
|
// Group options for filter (all groups)
|
|
const groupOptions = computed(() => [
|
|
{ value: '', label: t('admin.subscriptions.allGroups') },
|
|
...groups.value.map((g) => ({ value: g.id.toString(), label: g.name }))
|
|
])
|
|
|
|
// Group options for assign (only subscription type groups)
|
|
const subscriptionGroupOptions = computed(() =>
|
|
groups.value
|
|
.filter((g) => g.subscription_type === 'subscription' && g.status === 'active')
|
|
.map((g) => ({
|
|
value: g.id,
|
|
label: g.name,
|
|
description: g.description,
|
|
platform: g.platform,
|
|
subscriptionType: g.subscription_type,
|
|
rate: g.rate_multiplier
|
|
}))
|
|
)
|
|
|
|
const applyFilters = () => {
|
|
pagination.page = 1
|
|
loadSubscriptions()
|
|
}
|
|
|
|
const loadSubscriptions = async () => {
|
|
if (abortController) {
|
|
abortController.abort()
|
|
}
|
|
const requestController = new AbortController()
|
|
abortController = requestController
|
|
const { signal } = requestController
|
|
|
|
loading.value = true
|
|
try {
|
|
const response = await adminAPI.subscriptions.list(
|
|
pagination.page,
|
|
pagination.page_size,
|
|
{
|
|
status: (filters.status as any) || undefined,
|
|
group_id: filters.group_id ? parseInt(filters.group_id) : undefined,
|
|
user_id: filters.user_id || undefined
|
|
},
|
|
{
|
|
signal
|
|
}
|
|
)
|
|
if (signal.aborted || abortController !== requestController) return
|
|
subscriptions.value = response.items
|
|
pagination.total = response.total
|
|
pagination.pages = response.pages
|
|
} catch (error: any) {
|
|
if (signal.aborted || error?.name === 'AbortError' || error?.code === 'ERR_CANCELED') {
|
|
return
|
|
}
|
|
appStore.showError(t('admin.subscriptions.failedToLoad'))
|
|
console.error('Error loading subscriptions:', error)
|
|
} finally {
|
|
if (abortController === requestController) {
|
|
loading.value = false
|
|
abortController = null
|
|
}
|
|
}
|
|
}
|
|
|
|
const loadGroups = async () => {
|
|
try {
|
|
groups.value = await adminAPI.groups.getAll()
|
|
} catch (error) {
|
|
console.error('Error loading groups:', error)
|
|
}
|
|
}
|
|
|
|
// Toolbar user filter search with debounce
|
|
const debounceSearchFilterUsers = () => {
|
|
if (filterUserSearchTimeout) {
|
|
clearTimeout(filterUserSearchTimeout)
|
|
}
|
|
filterUserSearchTimeout = setTimeout(searchFilterUsers, 300)
|
|
}
|
|
|
|
const searchFilterUsers = async () => {
|
|
const keyword = filterUserKeyword.value.trim()
|
|
|
|
// Clear active user filter if user modified the search keyword
|
|
if (selectedFilterUser.value && keyword !== selectedFilterUser.value.email) {
|
|
selectedFilterUser.value = null
|
|
filters.user_id = null
|
|
applyFilters()
|
|
}
|
|
|
|
if (!keyword) {
|
|
filterUserResults.value = []
|
|
return
|
|
}
|
|
|
|
filterUserLoading.value = true
|
|
try {
|
|
filterUserResults.value = await adminAPI.usage.searchUsers(keyword)
|
|
} catch (error) {
|
|
console.error('Failed to search users:', error)
|
|
filterUserResults.value = []
|
|
} finally {
|
|
filterUserLoading.value = false
|
|
}
|
|
}
|
|
|
|
const selectFilterUser = (user: SimpleUser) => {
|
|
selectedFilterUser.value = user
|
|
filterUserKeyword.value = user.email
|
|
showFilterUserDropdown.value = false
|
|
filters.user_id = user.id
|
|
applyFilters()
|
|
}
|
|
|
|
const clearFilterUser = () => {
|
|
selectedFilterUser.value = null
|
|
filterUserKeyword.value = ''
|
|
filterUserResults.value = []
|
|
showFilterUserDropdown.value = false
|
|
filters.user_id = null
|
|
applyFilters()
|
|
}
|
|
|
|
// User search with debounce
|
|
const debounceSearchUsers = () => {
|
|
if (userSearchTimeout) {
|
|
clearTimeout(userSearchTimeout)
|
|
}
|
|
userSearchTimeout = setTimeout(searchUsers, 300)
|
|
}
|
|
|
|
const searchUsers = async () => {
|
|
const keyword = userSearchKeyword.value.trim()
|
|
|
|
// Clear selection if user modified the search keyword
|
|
if (selectedUser.value && keyword !== selectedUser.value.email) {
|
|
selectedUser.value = null
|
|
assignForm.user_id = null
|
|
}
|
|
|
|
if (!keyword) {
|
|
userSearchResults.value = []
|
|
return
|
|
}
|
|
|
|
userSearchLoading.value = true
|
|
try {
|
|
userSearchResults.value = await adminAPI.usage.searchUsers(keyword)
|
|
} catch (error) {
|
|
console.error('Failed to search users:', error)
|
|
userSearchResults.value = []
|
|
} finally {
|
|
userSearchLoading.value = false
|
|
}
|
|
}
|
|
|
|
const selectUser = (user: SimpleUser) => {
|
|
selectedUser.value = user
|
|
userSearchKeyword.value = user.email
|
|
showUserDropdown.value = false
|
|
assignForm.user_id = user.id
|
|
}
|
|
|
|
const clearUserSelection = () => {
|
|
selectedUser.value = null
|
|
userSearchKeyword.value = ''
|
|
userSearchResults.value = []
|
|
assignForm.user_id = null
|
|
}
|
|
|
|
const handlePageChange = (page: number) => {
|
|
pagination.page = page
|
|
loadSubscriptions()
|
|
}
|
|
|
|
const handlePageSizeChange = (pageSize: number) => {
|
|
pagination.page_size = pageSize
|
|
pagination.page = 1
|
|
loadSubscriptions()
|
|
}
|
|
|
|
const closeAssignModal = () => {
|
|
showAssignModal.value = false
|
|
assignForm.user_id = null
|
|
assignForm.group_id = null
|
|
assignForm.validity_days = 30
|
|
// Clear user search state
|
|
selectedUser.value = null
|
|
userSearchKeyword.value = ''
|
|
userSearchResults.value = []
|
|
showUserDropdown.value = false
|
|
}
|
|
|
|
const handleAssignSubscription = async () => {
|
|
if (!assignForm.user_id) {
|
|
appStore.showError(t('admin.subscriptions.pleaseSelectUser'))
|
|
return
|
|
}
|
|
if (!assignForm.group_id) {
|
|
appStore.showError(t('admin.subscriptions.pleaseSelectGroup'))
|
|
return
|
|
}
|
|
if (!assignForm.validity_days || assignForm.validity_days < 1) {
|
|
appStore.showError(t('admin.subscriptions.validityDaysRequired'))
|
|
return
|
|
}
|
|
|
|
submitting.value = true
|
|
try {
|
|
await adminAPI.subscriptions.assign({
|
|
user_id: assignForm.user_id,
|
|
group_id: assignForm.group_id,
|
|
validity_days: assignForm.validity_days
|
|
})
|
|
appStore.showSuccess(t('admin.subscriptions.subscriptionAssigned'))
|
|
closeAssignModal()
|
|
loadSubscriptions()
|
|
} catch (error: any) {
|
|
appStore.showError(error.response?.data?.detail || t('admin.subscriptions.failedToAssign'))
|
|
console.error('Error assigning subscription:', error)
|
|
} finally {
|
|
submitting.value = false
|
|
}
|
|
}
|
|
|
|
const handleExtend = (subscription: UserSubscription) => {
|
|
extendingSubscription.value = subscription
|
|
extendForm.days = 30
|
|
showExtendModal.value = true
|
|
}
|
|
|
|
const closeExtendModal = () => {
|
|
showExtendModal.value = false
|
|
extendingSubscription.value = null
|
|
}
|
|
|
|
const handleExtendSubscription = async () => {
|
|
if (!extendingSubscription.value) return
|
|
|
|
// 前端验证:调整后剩余天数必须 > 0
|
|
if (extendingSubscription.value.expires_at) {
|
|
const currentDaysRemaining = getDaysRemaining(extendingSubscription.value.expires_at) ?? 0
|
|
const newDaysRemaining = currentDaysRemaining + extendForm.days
|
|
if (newDaysRemaining <= 0) {
|
|
appStore.showError(t('admin.subscriptions.adjustWouldExpire'))
|
|
return
|
|
}
|
|
}
|
|
|
|
submitting.value = true
|
|
try {
|
|
await adminAPI.subscriptions.extend(extendingSubscription.value.id, {
|
|
days: extendForm.days
|
|
})
|
|
appStore.showSuccess(t('admin.subscriptions.subscriptionAdjusted'))
|
|
closeExtendModal()
|
|
loadSubscriptions()
|
|
} catch (error: any) {
|
|
appStore.showError(error.response?.data?.detail || t('admin.subscriptions.failedToAdjust'))
|
|
console.error('Error adjusting subscription:', error)
|
|
} finally {
|
|
submitting.value = false
|
|
}
|
|
}
|
|
|
|
const handleRevoke = (subscription: UserSubscription) => {
|
|
revokingSubscription.value = subscription
|
|
showRevokeDialog.value = true
|
|
}
|
|
|
|
const confirmRevoke = async () => {
|
|
if (!revokingSubscription.value) return
|
|
|
|
try {
|
|
await adminAPI.subscriptions.revoke(revokingSubscription.value.id)
|
|
appStore.showSuccess(t('admin.subscriptions.subscriptionRevoked'))
|
|
showRevokeDialog.value = false
|
|
revokingSubscription.value = null
|
|
loadSubscriptions()
|
|
} catch (error: any) {
|
|
appStore.showError(error.response?.data?.detail || t('admin.subscriptions.failedToRevoke'))
|
|
console.error('Error revoking subscription:', error)
|
|
}
|
|
}
|
|
|
|
// Helper functions
|
|
const getDaysRemaining = (expiresAt: string): number | null => {
|
|
const now = new Date()
|
|
const expires = new Date(expiresAt)
|
|
const diff = expires.getTime() - now.getTime()
|
|
if (diff < 0) return null
|
|
return Math.ceil(diff / (1000 * 60 * 60 * 24))
|
|
}
|
|
|
|
const isExpiringSoon = (expiresAt: string): boolean => {
|
|
const days = getDaysRemaining(expiresAt)
|
|
return days !== null && days <= 7
|
|
}
|
|
|
|
const getProgressWidth = (used: number | null | undefined, limit: number | null): string => {
|
|
if (!limit || limit === 0) return '0%'
|
|
const usedValue = used ?? 0
|
|
const percentage = Math.min((usedValue / limit) * 100, 100)
|
|
return `${percentage}%`
|
|
}
|
|
|
|
const getProgressClass = (used: number | null | undefined, limit: number | null): string => {
|
|
if (!limit || limit === 0) return 'bg-gray-400'
|
|
const usedValue = used ?? 0
|
|
const percentage = (usedValue / limit) * 100
|
|
if (percentage >= 90) return 'bg-red-500'
|
|
if (percentage >= 70) return 'bg-orange-500'
|
|
return 'bg-green-500'
|
|
}
|
|
|
|
// Format reset time based on window start and period type
|
|
const formatResetTime = (windowStart: string, period: 'daily' | 'weekly' | 'monthly'): string => {
|
|
if (!windowStart) return t('admin.subscriptions.windowNotActive')
|
|
|
|
const start = new Date(windowStart)
|
|
const now = new Date()
|
|
|
|
// Calculate reset time based on period
|
|
let resetTime: Date
|
|
switch (period) {
|
|
case 'daily':
|
|
resetTime = new Date(start.getTime() + 24 * 60 * 60 * 1000)
|
|
break
|
|
case 'weekly':
|
|
resetTime = new Date(start.getTime() + 7 * 24 * 60 * 60 * 1000)
|
|
break
|
|
case 'monthly':
|
|
resetTime = new Date(start.getTime() + 30 * 24 * 60 * 60 * 1000)
|
|
break
|
|
}
|
|
|
|
const diffMs = resetTime.getTime() - now.getTime()
|
|
if (diffMs <= 0) return t('admin.subscriptions.windowNotActive')
|
|
|
|
const diffSeconds = Math.floor(diffMs / 1000)
|
|
const days = Math.floor(diffSeconds / 86400)
|
|
const hours = Math.floor((diffSeconds % 86400) / 3600)
|
|
const minutes = Math.floor((diffSeconds % 3600) / 60)
|
|
|
|
if (days > 0) {
|
|
return t('admin.subscriptions.resetInDaysHours', { days, hours })
|
|
} else if (hours > 0) {
|
|
return t('admin.subscriptions.resetInHoursMinutes', { hours, minutes })
|
|
} else {
|
|
return t('admin.subscriptions.resetInMinutes', { minutes })
|
|
}
|
|
}
|
|
|
|
// Handle click outside to close dropdowns
|
|
const handleClickOutside = (event: MouseEvent) => {
|
|
const target = event.target as HTMLElement
|
|
if (!target.closest('[data-assign-user-search]')) showUserDropdown.value = false
|
|
if (!target.closest('[data-filter-user-search]')) showFilterUserDropdown.value = false
|
|
if (columnDropdownRef.value && !columnDropdownRef.value.contains(target)) {
|
|
showColumnDropdown.value = false
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
loadUserColumnMode()
|
|
loadSavedColumns()
|
|
loadSubscriptions()
|
|
loadGroups()
|
|
document.addEventListener('click', handleClickOutside)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
document.removeEventListener('click', handleClickOutside)
|
|
if (filterUserSearchTimeout) {
|
|
clearTimeout(filterUserSearchTimeout)
|
|
}
|
|
if (userSearchTimeout) {
|
|
clearTimeout(userSearchTimeout)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.usage-row {
|
|
@apply space-y-1;
|
|
}
|
|
|
|
.usage-label {
|
|
@apply w-10 flex-shrink-0 text-xs font-medium text-gray-500 dark:text-gray-400;
|
|
}
|
|
|
|
.usage-amount {
|
|
@apply whitespace-nowrap text-xs tabular-nums text-gray-600 dark:text-gray-300;
|
|
}
|
|
|
|
.reset-info {
|
|
@apply flex items-center gap-1 pl-12 text-[10px] text-blue-600 dark:text-blue-400;
|
|
}
|
|
</style>
|