1181 lines
46 KiB
Vue
1181 lines
46 KiB
Vue
<template>
|
|
<AppLayout>
|
|
<TablePageLayout>
|
|
<!-- Single Row: Search, Filters, and Actions -->
|
|
<template #filters>
|
|
<div class="flex w-full flex-wrap-reverse items-center justify-between gap-4">
|
|
<!-- Left: Search + Active Filters -->
|
|
<div class="flex min-w-[280px] flex-1 flex-wrap content-start items-center gap-3">
|
|
<!-- Search Box -->
|
|
<div class="relative w-full sm:w-64">
|
|
<svg
|
|
class="absolute left-3 top-1/2 h-5 w-5 -translate-y-1/2 text-gray-400"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z"
|
|
/>
|
|
</svg>
|
|
<input
|
|
v-model="searchQuery"
|
|
type="text"
|
|
:placeholder="t('admin.users.searchUsers')"
|
|
class="input pl-10"
|
|
@input="handleSearch"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Role Filter (visible when enabled) -->
|
|
<div v-if="visibleFilters.has('role')" class="w-full sm:w-32">
|
|
<Select
|
|
v-model="filters.role"
|
|
:options="[
|
|
{ value: '', label: t('admin.users.allRoles') },
|
|
{ value: 'admin', label: t('admin.users.admin') },
|
|
{ value: 'user', label: t('admin.users.user') }
|
|
]"
|
|
@change="applyFilter"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Status Filter (visible when enabled) -->
|
|
<div v-if="visibleFilters.has('status')" class="w-full sm:w-32">
|
|
<Select
|
|
v-model="filters.status"
|
|
:options="[
|
|
{ value: '', label: t('admin.users.allStatus') },
|
|
{ value: 'active', label: t('common.active') },
|
|
{ value: 'disabled', label: t('admin.users.disabled') }
|
|
]"
|
|
@change="applyFilter"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Dynamic Attribute Filters -->
|
|
<template v-for="(value, attrId) in activeAttributeFilters" :key="attrId">
|
|
<div
|
|
v-if="visibleFilters.has(`attr_${attrId}`)"
|
|
class="relative w-full sm:w-36"
|
|
>
|
|
<!-- Text/Email/URL/Textarea/Date type: styled input -->
|
|
<input
|
|
v-if="['text', 'textarea', 'email', 'url', 'date'].includes(getAttributeDefinition(Number(attrId))?.type || 'text')"
|
|
:value="value"
|
|
@input="(e) => updateAttributeFilter(Number(attrId), (e.target as HTMLInputElement).value)"
|
|
@keyup.enter="applyFilter"
|
|
:placeholder="getAttributeDefinitionName(Number(attrId))"
|
|
class="input w-full"
|
|
/>
|
|
<!-- Number type: number input -->
|
|
<input
|
|
v-else-if="getAttributeDefinition(Number(attrId))?.type === 'number'"
|
|
:value="value"
|
|
type="number"
|
|
@input="(e) => updateAttributeFilter(Number(attrId), (e.target as HTMLInputElement).value)"
|
|
@keyup.enter="applyFilter"
|
|
:placeholder="getAttributeDefinitionName(Number(attrId))"
|
|
class="input w-full"
|
|
/>
|
|
<!-- Select/Multi-select type -->
|
|
<template v-else-if="['select', 'multi_select'].includes(getAttributeDefinition(Number(attrId))?.type || '')">
|
|
<div class="w-full">
|
|
<Select
|
|
:model-value="value"
|
|
:options="[
|
|
{ value: '', label: getAttributeDefinitionName(Number(attrId)) },
|
|
...(getAttributeDefinition(Number(attrId))?.options || [])
|
|
]"
|
|
@update:model-value="(val) => { updateAttributeFilter(Number(attrId), String(val ?? '')); applyFilter() }"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<!-- Fallback -->
|
|
<input
|
|
v-else
|
|
:value="value"
|
|
@input="(e) => updateAttributeFilter(Number(attrId), (e.target as HTMLInputElement).value)"
|
|
@keyup.enter="applyFilter"
|
|
:placeholder="getAttributeDefinitionName(Number(attrId))"
|
|
class="input w-full"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
|
|
<!-- Right: Actions and Settings -->
|
|
<div class="ml-auto flex max-w-full flex-wrap items-center justify-end gap-3">
|
|
<!-- Refresh Button -->
|
|
<button
|
|
@click="loadUsers"
|
|
:disabled="loading"
|
|
class="btn btn-secondary"
|
|
:title="t('common.refresh')"
|
|
>
|
|
<svg
|
|
:class="['h-5 w-5', loading ? 'animate-spin' : '']"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
<!-- Filter Settings Dropdown -->
|
|
<div class="relative" ref="filterDropdownRef">
|
|
<button
|
|
@click="showFilterDropdown = !showFilterDropdown"
|
|
class="btn btn-secondary"
|
|
>
|
|
<svg class="mr-1.5 h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24" stroke-width="1.5">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 01-.659 1.591l-5.432 5.432a2.25 2.25 0 00-.659 1.591v2.927a2.25 2.25 0 01-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 00-.659-1.591L3.659 7.409A2.25 2.25 0 013 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0112 3z" />
|
|
</svg>
|
|
{{ t('admin.users.filterSettings') }}
|
|
</button>
|
|
<!-- Dropdown menu -->
|
|
<div
|
|
v-if="showFilterDropdown"
|
|
class="absolute right-0 top-full z-50 mt-1 w-48 rounded-lg border border-gray-200 bg-white py-1 shadow-lg dark:border-dark-600 dark:bg-dark-800"
|
|
>
|
|
<!-- Built-in filters -->
|
|
<button
|
|
v-for="filter in builtInFilters"
|
|
:key="filter.key"
|
|
@click="toggleBuiltInFilter(filter.key)"
|
|
class="flex w-full items-center justify-between px-4 py-2 text-left text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<span>{{ filter.name }}</span>
|
|
<svg
|
|
v-if="visibleFilters.has(filter.key)"
|
|
class="h-4 w-4 text-primary-500"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="2"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</button>
|
|
<!-- Divider if custom attributes exist -->
|
|
<div
|
|
v-if="filterableAttributes.length > 0"
|
|
class="my-1 border-t border-gray-100 dark:border-dark-700"
|
|
></div>
|
|
<!-- Custom attribute filters -->
|
|
<button
|
|
v-for="attr in filterableAttributes"
|
|
:key="attr.id"
|
|
@click="toggleAttributeFilter(attr)"
|
|
class="flex w-full items-center justify-between px-4 py-2 text-left text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<span>{{ attr.name }}</span>
|
|
<svg
|
|
v-if="visibleFilters.has(`attr_${attr.id}`)"
|
|
class="h-4 w-4 text-primary-500"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="2"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- Column Settings Dropdown -->
|
|
<div class="relative" ref="columnDropdownRef">
|
|
<button
|
|
@click="showColumnDropdown = !showColumnDropdown"
|
|
class="btn btn-secondary"
|
|
>
|
|
<svg class="mr-1.5 h-4 w-4" 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>
|
|
{{ t('admin.users.columnSettings') }}
|
|
</button>
|
|
<!-- Dropdown menu -->
|
|
<div
|
|
v-if="showColumnDropdown"
|
|
class="absolute right-0 top-full z-50 mt-1 max-h-80 w-48 overflow-y-auto rounded-lg border border-gray-200 bg-white py-1 shadow-lg dark:border-dark-600 dark:bg-dark-800"
|
|
>
|
|
<button
|
|
v-for="col in toggleableColumns"
|
|
:key="col.key"
|
|
@click="toggleColumn(col.key)"
|
|
class="flex w-full items-center justify-between px-4 py-2 text-left text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<span>{{ col.label }}</span>
|
|
<svg
|
|
v-if="isColumnVisible(col.key)"
|
|
class="h-4 w-4 text-primary-500"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="2"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- Attributes Config Button -->
|
|
<button @click="showAttributesModal = true" class="btn btn-secondary">
|
|
<svg
|
|
class="mr-1.5 h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 011.37.49l1.296 2.247a1.125 1.125 0 01-.26 1.431l-1.003.827c-.293.24-.438.613-.431.992a6.759 6.759 0 010 .255c-.007.378.138.75.43.99l1.005.828c.424.35.534.954.26 1.43l-1.298 2.247a1.125 1.125 0 01-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.57 6.57 0 01-.22.128c-.331.183-.581.495-.644.869l-.213 1.28c-.09.543-.56.941-1.11.941h-2.594c-.55 0-1.02-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 01-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 01-1.369-.49l-1.297-2.247a1.125 1.125 0 01.26-1.431l1.004-.827c.292-.24.437-.613.43-.992a6.932 6.932 0 010-.255c.007-.378-.138-.75-.43-.99l-1.004-.828a1.125 1.125 0 01-.26-1.43l1.297-2.247a1.125 1.125 0 011.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.087.22-.128.332-.183.582-.495.644-.869l.214-1.281z" />
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
|
|
</svg>
|
|
{{ t('admin.users.attributes.configButton') }}
|
|
</button>
|
|
<!-- Create User Button -->
|
|
<button @click="showCreateModal = true" class="btn btn-primary">
|
|
<svg
|
|
class="mr-2 h-5 w-5"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" />
|
|
</svg>
|
|
{{ t('admin.users.createUser') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- Users Table -->
|
|
<template #table>
|
|
<DataTable :columns="columns" :data="users" :loading="loading" :actions-count="7">
|
|
<template #cell-email="{ value }">
|
|
<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">
|
|
{{ value.charAt(0).toUpperCase() }}
|
|
</span>
|
|
</div>
|
|
<span class="font-medium text-gray-900 dark:text-white">{{ value }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-username="{ value }">
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">{{ value || '-' }}</span>
|
|
</template>
|
|
|
|
<template #cell-notes="{ value }">
|
|
<div class="max-w-xs">
|
|
<span
|
|
v-if="value"
|
|
:title="value.length > 30 ? value : undefined"
|
|
class="block truncate text-sm text-gray-600 dark:text-gray-400"
|
|
>
|
|
{{ value.length > 30 ? value.substring(0, 25) + '...' : value }}
|
|
</span>
|
|
<span v-else class="text-sm text-gray-400">-</span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- Dynamic attribute columns -->
|
|
<template
|
|
v-for="def in attributeDefinitions.filter(d => d.enabled)"
|
|
:key="def.id"
|
|
#[`cell-attr_${def.id}`]="{ row }"
|
|
>
|
|
<div class="max-w-xs">
|
|
<span
|
|
class="block truncate text-sm text-gray-700 dark:text-gray-300"
|
|
:title="getAttributeValue(row.id, def.id)"
|
|
>
|
|
{{ getAttributeValue(row.id, def.id) }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-role="{ value }">
|
|
<span :class="['badge', value === 'admin' ? 'badge-purple' : 'badge-gray']">
|
|
{{ t('admin.users.roles.' + value) }}
|
|
</span>
|
|
</template>
|
|
|
|
<template #cell-subscriptions="{ row }">
|
|
<div
|
|
v-if="row.subscriptions && row.subscriptions.length > 0"
|
|
class="flex flex-wrap gap-1.5"
|
|
>
|
|
<GroupBadge
|
|
v-for="sub in row.subscriptions"
|
|
:key="sub.id"
|
|
:name="sub.group?.name || ''"
|
|
:platform="sub.group?.platform"
|
|
:subscription-type="sub.group?.subscription_type"
|
|
:rate-multiplier="sub.group?.rate_multiplier"
|
|
:days-remaining="sub.expires_at ? getDaysRemaining(sub.expires_at) : null"
|
|
:title="sub.expires_at ? formatDateTime(sub.expires_at) : ''"
|
|
/>
|
|
</div>
|
|
<span
|
|
v-else
|
|
class="inline-flex items-center gap-1.5 rounded-md bg-gray-50 px-2 py-1 text-xs text-gray-400 dark:bg-dark-700/50 dark:text-dark-500"
|
|
>
|
|
<svg
|
|
class="h-3.5 w-3.5"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"
|
|
/>
|
|
</svg>
|
|
<span>{{ t('admin.users.noSubscription') }}</span>
|
|
</span>
|
|
</template>
|
|
|
|
<template #cell-balance="{ value }">
|
|
<span class="font-medium text-gray-900 dark:text-white">${{ value.toFixed(2) }}</span>
|
|
</template>
|
|
|
|
<template #cell-usage="{ row }">
|
|
<div class="text-sm">
|
|
<div class="flex items-center gap-1.5">
|
|
<span class="text-gray-500 dark:text-gray-400">{{ t('admin.users.today') }}:</span>
|
|
<span class="font-medium text-gray-900 dark:text-white">
|
|
${{ (usageStats[row.id]?.today_actual_cost ?? 0).toFixed(4) }}
|
|
</span>
|
|
</div>
|
|
<div class="mt-0.5 flex items-center gap-1.5">
|
|
<span class="text-gray-500 dark:text-gray-400">{{ t('admin.users.total') }}:</span>
|
|
<span class="font-medium text-gray-900 dark:text-white">
|
|
${{ (usageStats[row.id]?.total_actual_cost ?? 0).toFixed(4) }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-concurrency="{ value }">
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">{{ value }}</span>
|
|
</template>
|
|
|
|
<template #cell-status="{ value }">
|
|
<div class="flex items-center gap-1.5">
|
|
<span
|
|
:class="[
|
|
'inline-block h-2 w-2 rounded-full',
|
|
value === 'active' ? 'bg-green-500' : 'bg-red-500'
|
|
]"
|
|
></span>
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">
|
|
{{ value === 'active' ? t('common.active') : t('admin.users.disabled') }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<template #cell-created_at="{ value }">
|
|
<span class="text-sm text-gray-500 dark:text-dark-400">{{ formatDateTime(value) }}</span>
|
|
</template>
|
|
|
|
<template #cell-actions="{ row }">
|
|
<div class="flex items-center gap-1">
|
|
<!-- Edit Button -->
|
|
<button
|
|
@click="handleEdit(row)"
|
|
class="flex flex-col items-center gap-0.5 rounded-lg p-1.5 text-gray-500 transition-colors hover:bg-gray-100 hover:text-primary-600 dark:hover:bg-dark-700 dark:hover:text-primary-400"
|
|
>
|
|
<svg
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L10.582 16.07a4.5 4.5 0 01-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 011.13-1.897l8.932-8.931zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0115.75 21H5.25A2.25 2.25 0 013 18.75V8.25A2.25 2.25 0 015.25 6H10"
|
|
/>
|
|
</svg>
|
|
<span class="text-xs">{{ t('common.edit') }}</span>
|
|
</button>
|
|
|
|
<!-- Toggle Status Button (not for admin) -->
|
|
<button
|
|
v-if="row.role !== 'admin'"
|
|
@click="handleToggleStatus(row)"
|
|
:class="[
|
|
'flex flex-col items-center gap-0.5 rounded-lg p-1.5 text-gray-500 transition-colors',
|
|
row.status === 'active'
|
|
? 'hover:bg-orange-50 hover:text-orange-600 dark:hover:bg-orange-900/20 dark:hover:text-orange-400'
|
|
: 'hover:bg-green-50 hover:text-green-600 dark:hover:bg-green-900/20 dark:hover:text-green-400'
|
|
]"
|
|
>
|
|
<svg
|
|
v-if="row.status === 'active'"
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"
|
|
/>
|
|
</svg>
|
|
<svg
|
|
v-else
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<span class="text-xs">{{ row.status === 'active' ? t('admin.users.disable') : t('admin.users.enable') }}</span>
|
|
</button>
|
|
|
|
<!-- More Actions Menu Trigger -->
|
|
<button
|
|
:ref="(el) => setActionButtonRef(row.id, el)"
|
|
@click="openActionMenu(row)"
|
|
class="action-menu-trigger flex flex-col items-center gap-0.5 rounded-lg p-1.5 text-gray-500 transition-colors hover:bg-gray-100 hover:text-gray-900 dark:hover:bg-dark-700 dark:hover:text-white"
|
|
:class="{ 'bg-gray-100 text-gray-900 dark:bg-dark-700 dark:text-white': activeMenuId === row.id }"
|
|
>
|
|
<svg
|
|
class="h-4 w-4"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
stroke-width="1.5"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
d="M6.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM12.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM18.75 12a.75.75 0 11-1.5 0 .75.75 0 011.5 0z"
|
|
/>
|
|
</svg>
|
|
<span class="text-xs">{{ t('common.more') }}</span>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<template #empty>
|
|
<EmptyState
|
|
:title="t('admin.users.noUsersYet')"
|
|
:description="t('admin.users.createFirstUser')"
|
|
:action-text="t('admin.users.createUser')"
|
|
@action="showCreateModal = 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>
|
|
|
|
<!-- Action Menu (Teleported) -->
|
|
<Teleport to="body">
|
|
<div
|
|
v-if="activeMenuId !== null && menuPosition"
|
|
class="action-menu-content fixed z-[9999] w-48 overflow-hidden rounded-xl bg-white shadow-lg ring-1 ring-black/5 dark:bg-dark-800 dark:ring-white/10"
|
|
:style="{ top: menuPosition.top + 'px', left: menuPosition.left + 'px' }"
|
|
>
|
|
<div class="py-1">
|
|
<template v-for="user in users" :key="user.id">
|
|
<template v-if="user.id === activeMenuId">
|
|
<!-- View API Keys -->
|
|
<button
|
|
@click="handleViewApiKeys(user); closeActionMenu()"
|
|
class="flex w-full items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<svg class="h-4 w-4 text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 7a2 2 0 012 2m4 0a6 6 0 01-7.743 5.743L11.536 16.207l-1.414 1.414a2 2 0 01-2.828 0l-1.414-1.414a2 2 0 010-2.828l-1.414-1.414a2 2 0 010-2.828l1.414-1.414L10.257 6.257A6 6 0 1121 11.257V11.257" />
|
|
</svg>
|
|
{{ t('admin.users.apiKeys') }}
|
|
</button>
|
|
|
|
<!-- Allowed Groups -->
|
|
<button
|
|
@click="handleAllowedGroups(user); closeActionMenu()"
|
|
class="flex w-full items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<svg class="h-4 w-4 text-gray-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
|
|
</svg>
|
|
{{ t('admin.users.groups') }}
|
|
</button>
|
|
|
|
<div class="my-1 border-t border-gray-100 dark:border-dark-700"></div>
|
|
|
|
<!-- Deposit -->
|
|
<button
|
|
@click="handleDeposit(user); closeActionMenu()"
|
|
class="flex w-full items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<svg class="h-4 w-4 text-emerald-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v6m0 0v6m0-6h6m-6 0H6" />
|
|
</svg>
|
|
{{ t('admin.users.deposit') }}
|
|
</button>
|
|
|
|
<!-- Withdraw -->
|
|
<button
|
|
@click="handleWithdraw(user); closeActionMenu()"
|
|
class="flex w-full items-center gap-2 px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 dark:text-gray-300 dark:hover:bg-dark-700"
|
|
>
|
|
<svg class="h-4 w-4 text-amber-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 12H4" />
|
|
</svg>
|
|
{{ t('admin.users.withdraw') }}
|
|
</button>
|
|
|
|
<div class="my-1 border-t border-gray-100 dark:border-dark-700"></div>
|
|
|
|
<!-- Delete (not for admin) -->
|
|
<button
|
|
v-if="user.role !== 'admin'"
|
|
@click="handleDelete(user); closeActionMenu()"
|
|
class="flex w-full items-center gap-2 px-4 py-2 text-sm text-red-600 hover:bg-red-50 dark:text-red-400 dark:hover:bg-red-900/20"
|
|
>
|
|
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
|
</svg>
|
|
{{ t('common.delete') }}
|
|
</button>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
|
|
<ConfirmDialog :show="showDeleteDialog" :title="t('admin.users.deleteUser')" :message="t('admin.users.deleteConfirm', { email: deletingUser?.email })" :danger="true" @confirm="confirmDelete" @cancel="showDeleteDialog = false" />
|
|
<UserCreateModal :show="showCreateModal" @close="showCreateModal = false" @success="loadUsers" />
|
|
<UserEditModal :show="showEditModal" :user="editingUser" @close="closeEditModal" @success="loadUsers" />
|
|
<UserApiKeysModal :show="showApiKeysModal" :user="viewingUser" @close="closeApiKeysModal" />
|
|
<UserAllowedGroupsModal :show="showAllowedGroupsModal" :user="allowedGroupsUser" @close="closeAllowedGroupsModal" @success="loadUsers" />
|
|
<UserBalanceModal :show="showBalanceModal" :user="balanceUser" :operation="balanceOperation" @close="closeBalanceModal" @success="loadUsers" />
|
|
<UserAttributesConfigModal :show="showAttributesModal" @close="handleAttributesModalClose" />
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed, onMounted, onUnmounted, type ComponentPublicInstance } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useAppStore } from '@/stores/app'
|
|
import { formatDateTime } from '@/utils/format'
|
|
|
|
const { t } = useI18n()
|
|
import { adminAPI } from '@/api/admin'
|
|
import type { User, UserAttributeDefinition } from '@/types'
|
|
import type { BatchUserUsageStats } from '@/api/admin/dashboard'
|
|
import type { Column } from '@/components/common/types'
|
|
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 ConfirmDialog from '@/components/common/ConfirmDialog.vue'
|
|
import EmptyState from '@/components/common/EmptyState.vue'
|
|
import GroupBadge from '@/components/common/GroupBadge.vue'
|
|
import Select from '@/components/common/Select.vue'
|
|
import UserAttributesConfigModal from '@/components/user/UserAttributesConfigModal.vue'
|
|
import UserCreateModal from '@/components/admin/user/UserCreateModal.vue'
|
|
import UserEditModal from '@/components/admin/user/UserEditModal.vue'
|
|
import UserApiKeysModal from '@/components/admin/user/UserApiKeysModal.vue'
|
|
import UserAllowedGroupsModal from '@/components/admin/user/UserAllowedGroupsModal.vue'
|
|
import UserBalanceModal from '@/components/admin/user/UserBalanceModal.vue'
|
|
|
|
const appStore = useAppStore()
|
|
|
|
// Generate dynamic attribute columns from enabled definitions
|
|
const attributeColumns = computed<Column[]>(() =>
|
|
attributeDefinitions.value
|
|
.filter(def => def.enabled)
|
|
.map(def => ({
|
|
key: `attr_${def.id}`,
|
|
label: def.name,
|
|
sortable: false
|
|
}))
|
|
)
|
|
|
|
// Get formatted attribute value for display in table
|
|
const getAttributeValue = (userId: number, attrId: number): string => {
|
|
const userAttrs = userAttributeValues.value[userId]
|
|
if (!userAttrs) return '-'
|
|
const value = userAttrs[attrId]
|
|
if (!value) return '-'
|
|
|
|
// Find definition for this attribute
|
|
const def = attributeDefinitions.value.find(d => d.id === attrId)
|
|
if (!def) return value
|
|
|
|
// Format based on type
|
|
if (def.type === 'multi_select' && value) {
|
|
try {
|
|
const arr = JSON.parse(value)
|
|
if (Array.isArray(arr)) {
|
|
// Map values to labels
|
|
return arr.map(v => {
|
|
const opt = def.options?.find(o => o.value === v)
|
|
return opt?.label || v
|
|
}).join(', ')
|
|
}
|
|
} catch {
|
|
return value
|
|
}
|
|
}
|
|
|
|
if (def.type === 'select' && value && def.options) {
|
|
const opt = def.options.find(o => o.value === value)
|
|
return opt?.label || value
|
|
}
|
|
|
|
return value
|
|
}
|
|
|
|
// All possible columns (for column settings)
|
|
const allColumns = computed<Column[]>(() => [
|
|
{ key: 'email', label: t('admin.users.columns.user'), sortable: true },
|
|
{ key: 'id', label: 'ID', sortable: true },
|
|
{ key: 'username', label: t('admin.users.columns.username'), sortable: true },
|
|
{ key: 'notes', label: t('admin.users.columns.notes'), sortable: false },
|
|
// Dynamic attribute columns
|
|
...attributeColumns.value,
|
|
{ key: 'role', label: t('admin.users.columns.role'), sortable: true },
|
|
{ key: 'subscriptions', label: t('admin.users.columns.subscriptions'), sortable: false },
|
|
{ key: 'balance', label: t('admin.users.columns.balance'), sortable: true },
|
|
{ key: 'usage', label: t('admin.users.columns.usage'), sortable: false },
|
|
{ key: 'concurrency', label: t('admin.users.columns.concurrency'), sortable: true },
|
|
{ key: 'status', label: t('admin.users.columns.status'), sortable: true },
|
|
{ key: 'created_at', label: t('admin.users.columns.created'), sortable: true },
|
|
{ key: 'actions', label: t('admin.users.columns.actions'), sortable: false }
|
|
])
|
|
|
|
// Columns that can be toggled (exclude email and actions which are always visible)
|
|
const toggleableColumns = computed(() =>
|
|
allColumns.value.filter(col => col.key !== 'email' && col.key !== 'actions')
|
|
)
|
|
|
|
// Hidden columns (stored in Set - columns NOT in this set are visible)
|
|
// This way, new columns are visible by default
|
|
const hiddenColumns = reactive<Set<string>>(new Set())
|
|
|
|
// Default hidden columns (columns hidden by default on first load)
|
|
const DEFAULT_HIDDEN_COLUMNS = ['notes', 'subscriptions', 'usage', 'concurrency']
|
|
|
|
// localStorage key for column settings
|
|
const HIDDEN_COLUMNS_KEY = 'user-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 {
|
|
// Use default hidden columns on first load
|
|
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 (not in hidden set)
|
|
const isColumnVisible = (key: string) => !hiddenColumns.has(key)
|
|
|
|
// Filtered columns based on visibility
|
|
const columns = computed<Column[]>(() =>
|
|
allColumns.value.filter(col =>
|
|
col.key === 'email' || col.key === 'actions' || !hiddenColumns.has(col.key)
|
|
)
|
|
)
|
|
|
|
const users = ref<User[]>([])
|
|
const loading = ref(false)
|
|
const searchQuery = ref('')
|
|
|
|
// Filter values (role, status, and custom attributes)
|
|
const filters = reactive({
|
|
role: '',
|
|
status: ''
|
|
})
|
|
const activeAttributeFilters = reactive<Record<number, string>>({})
|
|
|
|
// Visible filters tracking (which filters are shown in the UI)
|
|
// Keys: 'role', 'status', 'attr_${id}'
|
|
const visibleFilters = reactive<Set<string>>(new Set())
|
|
|
|
// Dropdown states
|
|
const showFilterDropdown = ref(false)
|
|
const showColumnDropdown = ref(false)
|
|
|
|
// Dropdown refs for click outside detection
|
|
const filterDropdownRef = ref<HTMLElement | null>(null)
|
|
const columnDropdownRef = ref<HTMLElement | null>(null)
|
|
|
|
// localStorage keys
|
|
const FILTER_VALUES_KEY = 'user-filter-values'
|
|
const VISIBLE_FILTERS_KEY = 'user-visible-filters'
|
|
|
|
// All filterable attribute definitions (enabled attributes)
|
|
const filterableAttributes = computed(() =>
|
|
attributeDefinitions.value.filter(def => def.enabled)
|
|
)
|
|
|
|
// Built-in filter definitions
|
|
const builtInFilters = computed(() => [
|
|
{ key: 'role', name: t('admin.users.columns.role'), type: 'select' as const },
|
|
{ key: 'status', name: t('admin.users.columns.status'), type: 'select' as const }
|
|
])
|
|
|
|
// Load saved filters from localStorage
|
|
const loadSavedFilters = () => {
|
|
try {
|
|
// Load visible filters
|
|
const savedVisible = localStorage.getItem(VISIBLE_FILTERS_KEY)
|
|
if (savedVisible) {
|
|
const parsed = JSON.parse(savedVisible) as string[]
|
|
parsed.forEach(key => visibleFilters.add(key))
|
|
}
|
|
// Load filter values
|
|
const savedValues = localStorage.getItem(FILTER_VALUES_KEY)
|
|
if (savedValues) {
|
|
const parsed = JSON.parse(savedValues)
|
|
if (parsed.role) filters.role = parsed.role
|
|
if (parsed.status) filters.status = parsed.status
|
|
if (parsed.attributes) {
|
|
Object.assign(activeAttributeFilters, parsed.attributes)
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.error('Failed to load saved filters:', e)
|
|
}
|
|
}
|
|
|
|
// Save filters to localStorage
|
|
const saveFiltersToStorage = () => {
|
|
try {
|
|
// Save visible filters
|
|
localStorage.setItem(VISIBLE_FILTERS_KEY, JSON.stringify([...visibleFilters]))
|
|
// Save filter values
|
|
const values = {
|
|
role: filters.role,
|
|
status: filters.status,
|
|
attributes: activeAttributeFilters
|
|
}
|
|
localStorage.setItem(FILTER_VALUES_KEY, JSON.stringify(values))
|
|
} catch (e) {
|
|
console.error('Failed to save filters:', e)
|
|
}
|
|
}
|
|
|
|
// Get attribute definition by ID
|
|
const getAttributeDefinition = (attrId: number): UserAttributeDefinition | undefined => {
|
|
return attributeDefinitions.value.find(d => d.id === attrId)
|
|
}
|
|
const usageStats = ref<Record<string, BatchUserUsageStats>>({})
|
|
// User attribute definitions and values
|
|
const attributeDefinitions = ref<UserAttributeDefinition[]>([])
|
|
const userAttributeValues = ref<Record<number, Record<number, string>>>({})
|
|
const pagination = reactive({
|
|
page: 1,
|
|
page_size: 20,
|
|
total: 0,
|
|
pages: 0
|
|
})
|
|
|
|
const showCreateModal = ref(false)
|
|
const showEditModal = ref(false)
|
|
const showDeleteDialog = ref(false)
|
|
const showApiKeysModal = ref(false)
|
|
const showAttributesModal = ref(false)
|
|
const editingUser = ref<User | null>(null)
|
|
const deletingUser = ref<User | null>(null)
|
|
const viewingUser = ref<User | null>(null)
|
|
let abortController: AbortController | null = null
|
|
|
|
// Action Menu State
|
|
const activeMenuId = ref<number | null>(null)
|
|
const menuPosition = ref<{ top: number; left: number } | null>(null)
|
|
const actionButtonRefs = ref<Map<number, HTMLElement>>(new Map())
|
|
|
|
const setActionButtonRef = (userId: number, el: Element | ComponentPublicInstance | null) => {
|
|
if (el instanceof HTMLElement) {
|
|
actionButtonRefs.value.set(userId, el)
|
|
} else {
|
|
actionButtonRefs.value.delete(userId)
|
|
}
|
|
}
|
|
|
|
const openActionMenu = (user: User) => {
|
|
if (activeMenuId.value === user.id) {
|
|
closeActionMenu()
|
|
} else {
|
|
const buttonEl = actionButtonRefs.value.get(user.id)
|
|
if (buttonEl) {
|
|
const rect = buttonEl.getBoundingClientRect()
|
|
const menuWidth = 192
|
|
const menuHeight = 240
|
|
const padding = 8
|
|
const viewportWidth = window.innerWidth
|
|
const viewportHeight = window.innerHeight
|
|
const left = Math.min(
|
|
Math.max(rect.right - menuWidth, padding),
|
|
Math.max(viewportWidth - menuWidth - padding, padding)
|
|
)
|
|
let top = rect.bottom + 4
|
|
if (top + menuHeight > viewportHeight - padding) {
|
|
top = Math.max(rect.top - menuHeight - 4, padding)
|
|
}
|
|
// Position menu near the trigger, clamped to viewport
|
|
menuPosition.value = {
|
|
top,
|
|
left
|
|
}
|
|
}
|
|
activeMenuId.value = user.id
|
|
}
|
|
}
|
|
|
|
const closeActionMenu = () => {
|
|
activeMenuId.value = null
|
|
menuPosition.value = null
|
|
}
|
|
|
|
// Close menu when clicking outside
|
|
const handleClickOutside = (event: MouseEvent) => {
|
|
const target = event.target as HTMLElement
|
|
if (!target.closest('.action-menu-trigger') && !target.closest('.action-menu-content')) {
|
|
closeActionMenu()
|
|
}
|
|
// Close filter dropdown when clicking outside
|
|
if (filterDropdownRef.value && !filterDropdownRef.value.contains(target)) {
|
|
showFilterDropdown.value = false
|
|
}
|
|
// Close column dropdown when clicking outside
|
|
if (columnDropdownRef.value && !columnDropdownRef.value.contains(target)) {
|
|
showColumnDropdown.value = false
|
|
}
|
|
}
|
|
|
|
// Allowed groups modal state
|
|
const showAllowedGroupsModal = ref(false)
|
|
const allowedGroupsUser = ref<User | null>(null)
|
|
|
|
// Balance (Deposit/Withdraw) modal state
|
|
const showBalanceModal = ref(false)
|
|
const balanceUser = ref<User | null>(null)
|
|
const balanceOperation = ref<'add' | 'subtract'>('add')
|
|
|
|
// 计算剩余天数
|
|
const getDaysRemaining = (expiresAt: string): number => {
|
|
const now = new Date()
|
|
const expires = new Date(expiresAt)
|
|
const diffMs = expires.getTime() - now.getTime()
|
|
return Math.ceil(diffMs / (1000 * 60 * 60 * 24))
|
|
}
|
|
|
|
const loadAttributeDefinitions = async () => {
|
|
try {
|
|
attributeDefinitions.value = await adminAPI.userAttributes.listEnabledDefinitions()
|
|
} catch (e) {
|
|
console.error('Failed to load attribute definitions:', e)
|
|
}
|
|
}
|
|
|
|
// Handle attributes modal close - reload definitions and users
|
|
const handleAttributesModalClose = async () => {
|
|
showAttributesModal.value = false
|
|
await loadAttributeDefinitions()
|
|
loadUsers()
|
|
}
|
|
|
|
const loadUsers = async () => {
|
|
abortController?.abort()
|
|
const currentAbortController = new AbortController()
|
|
abortController = currentAbortController
|
|
const { signal } = currentAbortController
|
|
loading.value = true
|
|
try {
|
|
// Build attribute filters from active filters
|
|
const attrFilters: Record<number, string> = {}
|
|
for (const [attrId, value] of Object.entries(activeAttributeFilters)) {
|
|
if (value) {
|
|
attrFilters[Number(attrId)] = value
|
|
}
|
|
}
|
|
|
|
const response = await adminAPI.users.list(
|
|
pagination.page,
|
|
pagination.page_size,
|
|
{
|
|
role: filters.role as any,
|
|
status: filters.status as any,
|
|
search: searchQuery.value || undefined,
|
|
attributes: Object.keys(attrFilters).length > 0 ? attrFilters : undefined
|
|
},
|
|
{ signal }
|
|
)
|
|
if (signal.aborted) {
|
|
return
|
|
}
|
|
users.value = response.items
|
|
pagination.total = response.total
|
|
pagination.pages = response.pages
|
|
|
|
// Load usage stats and attribute values for all users in the list
|
|
if (response.items.length > 0) {
|
|
const userIds = response.items.map((u) => u.id)
|
|
// Load usage stats
|
|
try {
|
|
const usageResponse = await adminAPI.dashboard.getBatchUsersUsage(userIds)
|
|
if (signal.aborted) {
|
|
return
|
|
}
|
|
usageStats.value = usageResponse.stats
|
|
} catch (e) {
|
|
if (signal.aborted) {
|
|
return
|
|
}
|
|
console.error('Failed to load usage stats:', e)
|
|
}
|
|
// Load attribute values
|
|
if (attributeDefinitions.value.length > 0) {
|
|
try {
|
|
const attrResponse = await adminAPI.userAttributes.getBatchUserAttributes(userIds)
|
|
if (signal.aborted) {
|
|
return
|
|
}
|
|
userAttributeValues.value = attrResponse.attributes
|
|
} catch (e) {
|
|
if (signal.aborted) {
|
|
return
|
|
}
|
|
console.error('Failed to load user attribute values:', e)
|
|
}
|
|
}
|
|
}
|
|
} catch (error) {
|
|
const errorInfo = error as { name?: string; code?: string }
|
|
if (errorInfo?.name === 'AbortError' || errorInfo?.name === 'CanceledError' || errorInfo?.code === 'ERR_CANCELED') {
|
|
return
|
|
}
|
|
appStore.showError(t('admin.users.failedToLoad'))
|
|
console.error('Error loading users:', error)
|
|
} finally {
|
|
if (abortController === currentAbortController) {
|
|
loading.value = false
|
|
}
|
|
}
|
|
}
|
|
|
|
let searchTimeout: ReturnType<typeof setTimeout>
|
|
const handleSearch = () => {
|
|
clearTimeout(searchTimeout)
|
|
searchTimeout = setTimeout(() => {
|
|
pagination.page = 1
|
|
loadUsers()
|
|
}, 300)
|
|
}
|
|
|
|
const handlePageChange = (page: number) => {
|
|
pagination.page = page
|
|
loadUsers()
|
|
}
|
|
|
|
const handlePageSizeChange = (pageSize: number) => {
|
|
pagination.page_size = pageSize
|
|
pagination.page = 1
|
|
loadUsers()
|
|
}
|
|
|
|
// Filter helpers
|
|
const getAttributeDefinitionName = (attrId: number): string => {
|
|
const def = attributeDefinitions.value.find(d => d.id === attrId)
|
|
return def?.name || String(attrId)
|
|
}
|
|
|
|
// Toggle a built-in filter (role/status)
|
|
const toggleBuiltInFilter = (key: string) => {
|
|
if (visibleFilters.has(key)) {
|
|
visibleFilters.delete(key)
|
|
if (key === 'role') filters.role = ''
|
|
if (key === 'status') filters.status = ''
|
|
} else {
|
|
visibleFilters.add(key)
|
|
}
|
|
saveFiltersToStorage()
|
|
loadUsers()
|
|
}
|
|
|
|
// Toggle a custom attribute filter
|
|
const toggleAttributeFilter = (attr: UserAttributeDefinition) => {
|
|
const key = `attr_${attr.id}`
|
|
if (visibleFilters.has(key)) {
|
|
visibleFilters.delete(key)
|
|
delete activeAttributeFilters[attr.id]
|
|
} else {
|
|
visibleFilters.add(key)
|
|
activeAttributeFilters[attr.id] = ''
|
|
}
|
|
saveFiltersToStorage()
|
|
loadUsers()
|
|
}
|
|
|
|
const updateAttributeFilter = (attrId: number, value: string) => {
|
|
activeAttributeFilters[attrId] = value
|
|
}
|
|
|
|
// Apply filter and save to localStorage
|
|
const applyFilter = () => {
|
|
saveFiltersToStorage()
|
|
loadUsers()
|
|
}
|
|
|
|
const handleEdit = (user: User) => {
|
|
editingUser.value = user
|
|
showEditModal.value = true
|
|
}
|
|
|
|
const closeEditModal = () => {
|
|
showEditModal.value = false
|
|
editingUser.value = null
|
|
}
|
|
|
|
const handleToggleStatus = async (user: User) => {
|
|
const newStatus = user.status === 'active' ? 'disabled' : 'active'
|
|
try {
|
|
await adminAPI.users.toggleStatus(user.id, newStatus)
|
|
appStore.showSuccess(
|
|
newStatus === 'active' ? t('admin.users.userEnabled') : t('admin.users.userDisabled')
|
|
)
|
|
loadUsers()
|
|
} catch (error: any) {
|
|
appStore.showError(error.response?.data?.detail || t('admin.users.failedToToggle'))
|
|
console.error('Error toggling user status:', error)
|
|
}
|
|
}
|
|
|
|
const handleViewApiKeys = (user: User) => {
|
|
viewingUser.value = user
|
|
showApiKeysModal.value = true
|
|
}
|
|
|
|
const closeApiKeysModal = () => {
|
|
showApiKeysModal.value = false
|
|
viewingUser.value = null
|
|
}
|
|
|
|
const handleAllowedGroups = (user: User) => {
|
|
allowedGroupsUser.value = user
|
|
showAllowedGroupsModal.value = true
|
|
}
|
|
|
|
const closeAllowedGroupsModal = () => {
|
|
showAllowedGroupsModal.value = false
|
|
allowedGroupsUser.value = null
|
|
}
|
|
|
|
const handleDelete = (user: User) => {
|
|
deletingUser.value = user
|
|
showDeleteDialog.value = true
|
|
}
|
|
|
|
const confirmDelete = async () => {
|
|
if (!deletingUser.value) return
|
|
try {
|
|
await adminAPI.users.delete(deletingUser.value.id)
|
|
appStore.showSuccess(t('common.success'))
|
|
showDeleteDialog.value = false
|
|
deletingUser.value = null
|
|
loadUsers()
|
|
} catch (error: any) {
|
|
appStore.showError(error.response?.data?.detail || t('admin.users.failedToDelete'))
|
|
console.error('Error deleting user:', error)
|
|
}
|
|
}
|
|
|
|
const handleDeposit = (user: User) => {
|
|
balanceUser.value = user
|
|
balanceOperation.value = 'add'
|
|
showBalanceModal.value = true
|
|
}
|
|
|
|
const handleWithdraw = (user: User) => {
|
|
balanceUser.value = user
|
|
balanceOperation.value = 'subtract'
|
|
showBalanceModal.value = true
|
|
}
|
|
|
|
const closeBalanceModal = () => {
|
|
showBalanceModal.value = false
|
|
balanceUser.value = null
|
|
}
|
|
onMounted(async () => {
|
|
await loadAttributeDefinitions()
|
|
loadSavedFilters()
|
|
loadSavedColumns()
|
|
loadUsers()
|
|
document.addEventListener('click', handleClickOutside)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
document.removeEventListener('click', handleClickOutside)
|
|
})
|
|
</script>
|