'use client'; // Online users detail moved to separate component import { ProTable, ProTableActions } from '@/components/pro-table'; import { createServer, deleteServer, filterServerList, updateServer, } from '@/services/admin/server'; import { Badge } from '@workspace/ui/components/badge'; import { Button } from '@workspace/ui/components/button'; import { Card, CardContent } from '@workspace/ui/components/card'; import { ConfirmButton } from '@workspace/ui/custom-components/confirm-button'; import { cn } from '@workspace/ui/lib/utils'; import { useTranslations } from 'next-intl'; import { useRef, useState } from 'react'; import { toast } from 'sonner'; import OnlineUsersCell from './online-users-cell'; import ServerConfig from './server-config'; import ServerForm from './server-form'; type ProtocolName = 'shadowsocks' | 'vmess' | 'vless' | 'trojan' | 'hysteria2' | 'tuic' | 'anytls'; const PROTOCOL_COLORS: Record = { shadowsocks: 'bg-green-500', vmess: 'bg-rose-500', vless: 'bg-blue-500', trojan: 'bg-yellow-500', hysteria2: 'bg-purple-500', tuic: 'bg-cyan-500', anytls: 'bg-gray-500', }; function PctBar({ value }: { value: number }) { const v = value.toFixed(2); return (
{v}%
); } function RegionIpCell({ country, city, ip, t, }: { country?: string; city?: string; ip?: string; t: (key: string) => string; }) { const region = [country, city].filter(Boolean).join(' / ') || t('notAvailable'); return (
{region} {ip || t('notAvailable')}
); } // OnlineUsersCell is now a standalone component export default function ServersPage() { const t = useTranslations('servers'); const [loading, setLoading] = useState(false); const ref = useRef(null); return (
action={ref} header={{ title: t('pageTitle'), toolbar: ( { setLoading(true); try { await createServer(values as unknown as API.CreateServerRequest); toast.success(t('created')); ref.current?.refresh(); setLoading(false); return true; } catch (e) { setLoading(false); return false; } }} /> ), }} columns={[ { accessorKey: 'id', header: t('id'), cell: ({ row }) => {row.getValue('id')}, }, { accessorKey: 'name', header: t('name') }, { id: 'region_ip', header: t('address'), cell: ({ row }) => ( ), }, { accessorKey: 'protocols', header: t('protocols'), cell: ({ row }) => { const list = (row.original.protocols || []) as API.Protocol[]; if (!list.length) return t('noData'); return (
{list.map((p, idx) => { const proto = ((p as any)?.type || '') as ProtocolName | ''; if (!proto) return null; const color = PROTOCOL_COLORS[proto as ProtocolName]; const port = (p as any)?.port as number | undefined; const label = `${proto}${port ? ` (${port})` : ''}`; return ( {label} ); })}
); }, }, { id: 'status', header: t('status'), cell: ({ row }) => { const s = (row.original.status ?? {}) as API.ServerStatus; const on = !!(Array.isArray(s.online) && s.online.length > 0); return (
{on ? t('online') : t('offline')}
); }, }, { id: 'cpu', header: t('cpu'), cell: ({ row }) => ( ), }, { id: 'mem', header: t('memory'), cell: ({ row }) => ( ), }, { id: 'disk', header: t('disk'), cell: ({ row }) => ( ), }, { id: 'online_users', header: t('onlineUsers'), cell: ({ row }) => ( ), }, { id: 'traffic_ratio', header: t('traffic_ratio'), cell: ({ row }) => { const raw = row.original.ratio as unknown; const ratio = Number(raw ?? 1) || 1; return {ratio.toFixed(2)}x; }, }, ]} params={[{ key: 'search' }]} request={async (pagination, filter) => { const { data } = await filterServerList({ page: pagination.page, size: pagination.size, search: filter?.search || undefined, }); const list = (data?.data?.list || []) as API.Server[]; const total = (data?.data?.total ?? list.length) as number; return { list, total }; }} actions={{ render: (row) => [ { setLoading(true); try { // ServerForm already returns API-shaped body; add id for update await updateServer({ id: row.id, ...(values as unknown as Omit), }); toast.success(t('updated')); ref.current?.refresh(); setLoading(false); return true; } catch (e) { setLoading(false); return false; } }} />, {t('delete')}} title={t('confirmDeleteTitle')} description={t('confirmDeleteDesc')} onConfirm={async () => { await deleteServer({ id: row.id } as any); toast.success(t('deleted')); ref.current?.refresh(); }} cancelText={t('cancel')} confirmText={t('confirm')} />, , ], }} />
); }