mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 01:56:53 +00:00
* refactor(web): centralize data table implementation - route all TanStack table setup through a shared data-table hook to remove repeated state and row model wiring. - move table rendering, static table wrappers, empty states, and primitive exports behind the data-table module. - update feature tables and configuration editors to share the same table UX while preserving their existing workflows. * refactor(web): trim data table public API - remove unused data-table exports and dead static table helper types. - keep internal table header, skeleton, empty state, and faceted filter helpers private to the data-table module. - route feature imports through the data-table barrel to avoid subpath coupling. * refactor(web): unify table rendering components - centralize static table headers, bodies, empty states, and shared class names behind the data-table package. - migrate settings, pricing, channel, key, subscription, and model tables to the shared table APIs. - remove data-table exports for low-level table primitives so feature code uses one supported abstraction. * perf(web): keep list tables fixed within page content - make shared data table pages fill available height and scroll row data inside the table body. - add a fixed content layout mode so selected list pages avoid page-level scrolling. - apply the fixed table behavior to keys, logs, channels, models, users, redemptions, and subscriptions. * perf(web): refine table pagination controls - show total row counts instead of redundant page range text. - tighten visible page buttons so pagination fits constrained table widths. - align pagination controls and tune text hierarchy for clearer scanning. * perf(web): stabilize model pricing table columns - keep model pricing columns at fixed widths so headers do not collapse in narrow layouts. - truncate long model names and pricing summaries within their cells instead of squeezing adjacent columns. * refactor(web): simplify data table rendering internals - split table body rendering into focused helpers for loading, empty, and row states. - extract static table row and cell class resolution to reduce branching in the main component. - reuse a single pagination page-size option list to avoid duplicated constants. * perf(pricing): reduce dynamic pricing table render work - reuse dynamic pricing field metadata instead of rebuilding it inside table columns. - precompute formatted dynamic prices per tier and group to avoid repeated entry mapping for each cell. - simplify select option construction in related dialogs while preserving the same choices. * refactor(web): streamline pricing table rendering - reuse translated endpoint select options between trigger data and menu items. - precompute dynamic pricing maps per group so table cells only resolve formatted values. - add local dynamic pricing type aliases to keep helper signatures readable. * refactor(web): merge pricing table imports * refactor(web): merge upstream ratio table imports * refactor(web): merge channel selector table imports * refactor(web): simplify tiered pricing select items * refactor(web): reuse model ratio row state * refactor(web): rely on table view row defaults * refactor(web): reuse pagination state values * refactor(web): hoist pagination size select items * refactor(web): clarify static table body rows * refactor(web): extract table page pagination rendering * fix(web): remove direct hast type dependency - rely on Shiki transformer contextual typing for line nodes. - allow frontend typecheck to pass without an undeclared hast package. * refactor(web): trim data table hook return API - return only the TanStack table instance from useDataTable. - keep internal state handling private because callers do not consume it directly. * refactor(web): keep static table empty row private - stop exporting the internal StaticDataTableEmptyRow helper. - keep the public static table API focused on the table component and column type. * refactor(web): hide data table view props from barrel * refactor(web): remove stale long text lint override * fix(web): keep pinned table columns opaque - apply pinned column background classes after custom column classes. - use an opaque hover background so scrolled content cannot show through fixed cells. * refactor(data-table): organize shared table components - group table primitives, page composition, toolbar controls, static tables, and hooks by responsibility. - split shared view types, row rendering, header rendering, and pinned-column styling out of the main table view. - keep the public data-table barrel stable while documenting the new ownership boundaries. * fix(web): stabilize split table column sizing - derive default colgroup widths from visible columns when split headers or header sizing are enabled. - apply a fixed table layout with computed minimum width so header and body columns stay aligned. - keep split-header containers from leaking horizontal overflow and avoid extra pinned-column borders. * fix(web): set stable table utility column widths - assign fixed widths to selection columns so shared colgroup sizing keeps checkbox cells compact. - size id columns in redemption and user tables to keep split headers aligned with body rows. * fix(web): align model metadata icon cells - render compact provider avatars in the metadata icon column instead of wide wordmarks. - position icons in a fixed-size wrapper so they line up with the existing icon header alignment. * fix(status-badge): hide status dot by default * fix(web): prevent user invite info overlap - give the invite info and created-at columns explicit widths so table sizing reserves enough space. - allow invite badges to wrap within the cell instead of spilling into adjacent columns. * perf(data-table): cache pinned column class resolution - reuse the pinned column lookup while table props stay stable to reduce repeated per-render work. - share the resolved column class handler across unified and split-header table layouts. - localize page-number screen reader labels so pagination remains accessible in every locale. * refactor(data-table): tighten static table modes - make StaticDataTable distinguish data-driven and children-only usage through explicit prop shapes. - remove unsupported columns-without-data fallback after confirming no repository callers rely on it. - default manual table modes away from unused local row models to reduce repeated table work. * fix(data-table): make pinned edit column opaque - use an opaque muted background for the active action column so sticky cells do not reveal scrolled content underneath. * fix(data-table): prevent narrow column overlap - apply stable header sizing to remaining desktop data table pages so constrained layouts scroll instead of compressing cells. - add explicit widths for key, quota, badge, and timestamp columns that contain fixed-format content. - constrain masked values and timestamp cells with truncation to keep content inside its assigned column. * fix(table): align table cell content with headers - remove extra inline padding from masked table text buttons so values start at the cell edge. - tag status badges and offset leading badges inside table cells to match header text alignment. * fix(table): prevent admin list column overflow - widen redemption and subscription table columns so masked codes, timestamps, and localized headers fit. - localize subscription ID headers and add Received amount translations across supported locales. * fix(provider-badge): unify provider icon spacing - add a shared provider badge component for icon and status label layout. - reuse it in channel type and model vendor columns so OpenAI icons align consistently.
391 lines
12 KiB
TypeScript
Vendored
391 lines
12 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import { type ColumnDef } from '@tanstack/react-table'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { formatQuota, formatTimestamp } from '@/lib/format'
|
|
import { cn } from '@/lib/utils'
|
|
import { Checkbox } from '@/components/ui/checkbox'
|
|
import { Progress } from '@/components/ui/progress'
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from '@/components/ui/tooltip'
|
|
import { DataTableColumnHeader } from '@/components/data-table'
|
|
import { GroupBadge } from '@/components/group-badge'
|
|
import { LongText } from '@/components/long-text'
|
|
import { StatusBadge } from '@/components/status-badge'
|
|
import { TableId } from '@/components/table-id'
|
|
import { USER_STATUSES, USER_ROLES, isUserDeleted } from '../constants'
|
|
import { type User } from '../types'
|
|
import { DataTableRowActions } from './data-table-row-actions'
|
|
|
|
function getQuotaProgressColor(percentage: number): string {
|
|
if (percentage <= 10) return '[&_[data-slot=progress-indicator]]:bg-rose-500'
|
|
if (percentage <= 30) return '[&_[data-slot=progress-indicator]]:bg-amber-500'
|
|
return '[&_[data-slot=progress-indicator]]:bg-emerald-500'
|
|
}
|
|
|
|
export function useUsersColumns(): ColumnDef<User>[] {
|
|
const { t } = useTranslation()
|
|
return [
|
|
{
|
|
id: 'select',
|
|
header: ({ table }) => (
|
|
<Checkbox
|
|
checked={table.getIsAllPageRowsSelected()}
|
|
indeterminate={table.getIsSomePageRowsSelected()}
|
|
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
|
|
aria-label='Select all'
|
|
className='translate-y-[2px]'
|
|
/>
|
|
),
|
|
cell: ({ row }) => (
|
|
<Checkbox
|
|
checked={row.getIsSelected()}
|
|
onCheckedChange={(value) => row.toggleSelected(!!value)}
|
|
aria-label='Select row'
|
|
className='translate-y-[2px]'
|
|
/>
|
|
),
|
|
enableSorting: false,
|
|
enableHiding: false,
|
|
size: 40,
|
|
meta: { label: t('Select') },
|
|
},
|
|
{
|
|
accessorKey: 'id',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title='ID' />
|
|
),
|
|
cell: ({ row }) => {
|
|
return (
|
|
<TableId value={row.getValue('id') as number} className='w-[60px]' />
|
|
)
|
|
},
|
|
size: 80,
|
|
meta: { label: t('ID'), mobileHidden: true },
|
|
},
|
|
{
|
|
accessorKey: 'username',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Username')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const username = row.getValue('username') as string
|
|
const displayName = row.original.display_name
|
|
const remark = row.original.remark
|
|
|
|
return (
|
|
<div className='flex min-w-[160px] flex-col gap-1'>
|
|
<div className='flex items-center gap-2'>
|
|
<LongText className='max-w-[140px] font-medium'>
|
|
{username}
|
|
</LongText>
|
|
{remark && (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={<StatusBadge variant='success' copyable={false} />}
|
|
>
|
|
<LongText className='max-w-[80px]'>{remark}</LongText>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p className='text-xs'>{remark}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)}
|
|
</div>
|
|
{displayName && displayName !== username && (
|
|
<LongText className='text-muted-foreground max-w-[180px] text-xs'>
|
|
{displayName}
|
|
</LongText>
|
|
)}
|
|
</div>
|
|
)
|
|
},
|
|
enableHiding: false,
|
|
size: 220,
|
|
meta: { label: t('Username'), mobileTitle: true },
|
|
},
|
|
{
|
|
accessorKey: 'status',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Status')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const user = row.original
|
|
const requestCount = user.request_count
|
|
|
|
const statusConfig = isUserDeleted(user)
|
|
? USER_STATUSES.DELETED
|
|
: USER_STATUSES[user.status as keyof typeof USER_STATUSES]
|
|
|
|
if (!statusConfig) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger render={<div className='cursor-help' />}>
|
|
<StatusBadge
|
|
label={t(statusConfig.labelKey)}
|
|
variant={statusConfig.variant}
|
|
copyable={false}
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p className='text-xs'>
|
|
{t('Requests:')} {requestCount.toLocaleString()}
|
|
</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)
|
|
},
|
|
filterFn: (row, id, value) => {
|
|
return value.includes(String(row.getValue(id)))
|
|
},
|
|
enableSorting: false,
|
|
size: 120,
|
|
meta: { label: t('Status'), mobileBadge: true },
|
|
},
|
|
{
|
|
id: 'quota',
|
|
accessorKey: 'quota',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Quota')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const user = row.original
|
|
const used = user.used_quota
|
|
const remaining = user.quota
|
|
const total = used + remaining
|
|
const percentage = total > 0 ? (remaining / total) * 100 : 0
|
|
|
|
if (total === 0) {
|
|
return (
|
|
<StatusBadge
|
|
label={t('No Quota')}
|
|
variant='neutral'
|
|
copyable={false}
|
|
/>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={<div className='w-[150px] cursor-help space-y-1' />}
|
|
>
|
|
<div className='flex justify-between text-xs'>
|
|
<span className='font-medium tabular-nums'>
|
|
{formatQuota(remaining)}
|
|
</span>
|
|
<span className='text-muted-foreground tabular-nums'>
|
|
{formatQuota(total)}
|
|
</span>
|
|
</div>
|
|
<Progress
|
|
value={percentage}
|
|
className={cn('h-1.5', getQuotaProgressColor(percentage))}
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<div className='space-y-1 text-xs'>
|
|
<div>
|
|
{t('Used:')} {formatQuota(used)}
|
|
</div>
|
|
<div>
|
|
{t('Remaining:')} {formatQuota(remaining)}
|
|
</div>
|
|
<div>
|
|
{t('Total:')} {formatQuota(total)}
|
|
</div>
|
|
<div>
|
|
{t('Percentage:')} {percentage.toFixed(1)}%
|
|
</div>
|
|
</div>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)
|
|
},
|
|
size: 170,
|
|
meta: { label: t('Quota') },
|
|
},
|
|
{
|
|
accessorKey: 'group',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Group')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const group = row.getValue('group') as string
|
|
return <GroupBadge group={group} />
|
|
},
|
|
filterFn: (row, id, value) => {
|
|
const group = String(row.getValue(id) || t('User Group')).toLowerCase()
|
|
const searchValue = String(value).toLowerCase()
|
|
return group.includes(searchValue)
|
|
},
|
|
size: 140,
|
|
meta: { label: t('Group') },
|
|
},
|
|
{
|
|
accessorKey: 'role',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Role')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const roleValue = row.getValue('role') as number
|
|
const roleConfig = USER_ROLES[roleValue as keyof typeof USER_ROLES]
|
|
|
|
if (!roleConfig) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<div className='flex items-center gap-x-2'>
|
|
{roleConfig.icon && (
|
|
<roleConfig.icon size={16} className='text-muted-foreground' />
|
|
)}
|
|
<span className='text-sm'>{t(roleConfig.labelKey)}</span>
|
|
</div>
|
|
)
|
|
},
|
|
filterFn: (row, id, value) => {
|
|
return value.includes(String(row.getValue(id)))
|
|
},
|
|
enableSorting: false,
|
|
size: 120,
|
|
meta: { label: t('Role') },
|
|
},
|
|
{
|
|
id: 'invite_info',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Invite Info')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const user = row.original
|
|
const affCount = user.aff_count || 0
|
|
const affHistoryQuota = user.aff_history_quota || 0
|
|
const inviterId = user.inviter_id || 0
|
|
|
|
return (
|
|
<div className='flex min-w-[220px] flex-wrap items-center gap-1'>
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={
|
|
<StatusBadge
|
|
label={`${t('Invited')}: ${affCount}`}
|
|
variant='neutral'
|
|
copyable={false}
|
|
className='cursor-help'
|
|
/>
|
|
}
|
|
/>
|
|
<TooltipContent>
|
|
<p className='text-xs'>{t('Number of users invited')}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={
|
|
<StatusBadge
|
|
label={`${t('Revenue')}: ${formatQuota(affHistoryQuota)}`}
|
|
variant='neutral'
|
|
copyable={false}
|
|
className='cursor-help'
|
|
/>
|
|
}
|
|
/>
|
|
<TooltipContent>
|
|
<p className='text-xs'>{t('Total invitation revenue')}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
{inviterId > 0 && (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={
|
|
<StatusBadge
|
|
label={`${t('Inviter')}: ${inviterId}`}
|
|
variant='neutral'
|
|
copyable={false}
|
|
className='cursor-help'
|
|
/>
|
|
}
|
|
/>
|
|
<TooltipContent>
|
|
<p className='text-xs'>
|
|
{t('Invited by user ID')} {inviterId}
|
|
</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)}
|
|
{inviterId === 0 && (
|
|
<StatusBadge
|
|
label={t('No Inviter')}
|
|
variant='neutral'
|
|
copyable={false}
|
|
/>
|
|
)}
|
|
</div>
|
|
)
|
|
},
|
|
size: 240,
|
|
enableSorting: false,
|
|
meta: { label: t('Invite Info'), mobileHidden: true },
|
|
},
|
|
{
|
|
accessorKey: 'created_at',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Created At')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const ts = row.getValue('created_at') as number | undefined
|
|
return (
|
|
<span className='text-muted-foreground text-sm'>
|
|
{ts ? formatTimestamp(ts) : '-'}
|
|
</span>
|
|
)
|
|
},
|
|
size: 180,
|
|
meta: { label: t('Created At'), mobileHidden: true },
|
|
},
|
|
{
|
|
accessorKey: 'last_login_at',
|
|
header: ({ column }) => (
|
|
<DataTableColumnHeader column={column} title={t('Last Login')} />
|
|
),
|
|
cell: ({ row }) => {
|
|
const ts = row.getValue('last_login_at') as number | undefined
|
|
return (
|
|
<span className='text-muted-foreground text-sm'>
|
|
{ts ? formatTimestamp(ts) : '-'}
|
|
</span>
|
|
)
|
|
},
|
|
size: 180,
|
|
meta: { label: t('Last Login'), mobileHidden: true },
|
|
},
|
|
{
|
|
id: 'actions',
|
|
cell: ({ row }) => <DataTableRowActions row={row} />,
|
|
meta: { label: t('Actions') },
|
|
},
|
|
]
|
|
}
|