Files
bedolaga-cabinet/src/pages/AdminBanSystem.tsx
Fringg 67bacd3e7a fix: correct memory display to use actual usage instead of cache-inclusive
memory.used from systeminformation includes disk cache/buffers,
showing ~91% when actual usage is ~18%. Now uses (total - available)
which matches htop/free output. Also added PB/EB units to formatBytes.
2026-02-23 19:27:18 +03:00

1591 lines
70 KiB
TypeScript

import { useState, useEffect, useCallback, useRef } from 'react';
import { useTranslation } from 'react-i18next';
import {
banSystemApi,
type BanSystemStatus,
type BanSystemStats,
type BanUsersListResponse,
type BanUserDetailResponse,
type BanPunishmentsListResponse,
type BanNodesListResponse,
type BanAgentsListResponse,
type BanTrafficViolationsResponse,
type BanSettingsResponse,
type BanSettingDefinition,
type BanTrafficResponse,
type BanReportResponse,
type BanHealthResponse,
} from '../api/banSystem';
// Icons
const ShieldIcon = () => (
<svg className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z"
/>
</svg>
);
const UsersIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M15 19.128a9.38 9.38 0 002.625.372 9.337 9.337 0 004.121-.952 4.125 4.125 0 00-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 018.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0111.964-3.07M12 6.375a3.375 3.375 0 11-6.75 0 3.375 3.375 0 016.75 0zm8.25 2.25a2.625 2.625 0 11-5.25 0 2.625 2.625 0 015.25 0z"
/>
</svg>
);
const BanIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="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>
);
const ServerIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M5.25 14.25h13.5m-13.5 0a3 3 0 01-3-3m3 3a3 3 0 100 6h13.5a3 3 0 100-6m-16.5-3a3 3 0 013-3h13.5a3 3 0 013 3m-19.5 0a4.5 4.5 0 01.9-2.7L5.737 5.1a3.375 3.375 0 012.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 01.9 2.7m0 0a3 3 0 01-3 3m0 3h.008v.008h-.008v-.008zm0-6h.008v.008h-.008v-.008zm-3 6h.008v.008h-.008v-.008zm0-6h.008v.008h-.008v-.008z"
/>
</svg>
);
const AgentIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M9.348 14.651a3.75 3.75 0 010-5.303m5.304 0a3.75 3.75 0 010 5.303m-7.425 2.122a6.75 6.75 0 010-9.546m9.546 0a6.75 6.75 0 010 9.546M5.106 18.894c-3.808-3.808-3.808-9.98 0-13.789m13.788 0c3.808 3.808 3.808 9.981 0 13.79M12 12h.008v.007H12V12zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z"
/>
</svg>
);
const WarningIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z"
/>
</svg>
);
const RefreshIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path
strokeLinecap="round"
strokeLinejoin="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>
);
const ChartIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z"
/>
</svg>
);
const SearchIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path
strokeLinecap="round"
strokeLinejoin="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>
);
const SettingsIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="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 strokeLinecap="round" strokeLinejoin="round" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
);
const TrafficIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3 7.5L7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5"
/>
</svg>
);
const ReportIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 002.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 00-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 00.75-.75 2.25 2.25 0 00-.1-.664m-5.8 0A2.251 2.251 0 0113.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25zM6.75 12h.008v.008H6.75V12zm0 3h.008v.008H6.75V15zm0 3h.008v.008H6.75V18z"
/>
</svg>
);
const HealthIcon = () => (
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12z"
/>
</svg>
);
type TabType =
| 'dashboard'
| 'users'
| 'punishments'
| 'nodes'
| 'agents'
| 'violations'
| 'settings'
| 'traffic'
| 'reports'
| 'health';
interface StatCardProps {
title: string;
value: string | number;
subtitle?: string;
icon: React.ReactNode;
color: 'accent' | 'success' | 'warning' | 'error' | 'info';
}
function StatCard({ title, value, subtitle, icon, color }: StatCardProps) {
const colorClasses = {
accent: 'bg-accent-500/20 text-accent-400',
success: 'bg-success-500/20 text-success-400',
warning: 'bg-warning-500/20 text-warning-400',
error: 'bg-error-500/20 text-error-400',
info: 'bg-info-500/20 text-info-400',
};
return (
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-4 backdrop-blur transition-colors hover:border-dark-600">
<div className="mb-2 flex items-start justify-between">
<div className={`rounded-lg p-2 ${colorClasses[color]}`}>{icon}</div>
</div>
<div className="mb-1 text-2xl font-bold text-dark-100">{value}</div>
<div className="text-sm text-dark-400">{title}</div>
{subtitle && <div className="mt-1 text-xs text-dark-500">{subtitle}</div>}
</div>
);
}
export default function AdminBanSystem() {
const { t } = useTranslation();
const [activeTab, setActiveTab] = useState<TabType>('dashboard');
const [status, setStatus] = useState<BanSystemStatus | null>(null);
const [stats, setStats] = useState<BanSystemStats | null>(null);
const [users, setUsers] = useState<BanUsersListResponse | null>(null);
const [selectedUser, setSelectedUser] = useState<BanUserDetailResponse | null>(null);
const [punishments, setPunishments] = useState<BanPunishmentsListResponse | null>(null);
const [nodes, setNodes] = useState<BanNodesListResponse | null>(null);
const [agents, setAgents] = useState<BanAgentsListResponse | null>(null);
const [violations, setViolations] = useState<BanTrafficViolationsResponse | null>(null);
const [settings, setSettings] = useState<BanSettingsResponse | null>(null);
const [traffic, setTraffic] = useState<BanTrafficResponse | null>(null);
const [report, setReport] = useState<BanReportResponse | null>(null);
const [health, setHealth] = useState<BanHealthResponse | null>(null);
const [reportHours, setReportHours] = useState(24);
const reportHoursRef = useRef(reportHours);
reportHoursRef.current = reportHours;
const [settingLoading, setSettingLoading] = useState<string | null>(null);
const [loading, setLoading] = useState(true);
// Format snake_case to readable label
const formatSettingKey = useCallback(
(key: string): string => {
// Try translation first
const translated = t(`banSystem.settings.${key}`, { defaultValue: '' });
if (translated && translated !== `banSystem.settings.${key}`) {
return translated;
}
// Fallback: convert snake_case to Title Case
return key
.split('_')
.map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase())
.join(' ');
},
[t],
);
const formatCategory = useCallback(
(category: string): string => {
const translated = t(`banSystem.settings.categories.${category}`, { defaultValue: '' });
if (translated && translated !== `banSystem.settings.categories.${category}`) {
return translated;
}
return category.charAt(0).toUpperCase() + category.slice(1).replace(/_/g, ' ');
},
[t],
);
const [error, setError] = useState<string | null>(null);
const [searchQuery, setSearchQuery] = useState('');
const [actionLoading, setActionLoading] = useState<string | null>(null);
const loadStatus = useCallback(async () => {
try {
setLoading(true);
const data = await banSystemApi.getStatus();
setStatus(data);
if (!data.enabled || !data.configured) {
setError(t('banSystem.notConfigured'));
}
} catch {
setError(t('banSystem.loadError'));
} finally {
setLoading(false);
}
}, [t]);
const loadTabData = useCallback(
async (tab: TabType) => {
try {
setLoading(true);
setError(null);
switch (tab) {
case 'dashboard': {
const statsData = await banSystemApi.getStats();
setStats(statsData);
break;
}
case 'users': {
const usersData = await banSystemApi.getUsers({ limit: 50 });
setUsers(usersData);
break;
}
case 'punishments': {
const punishmentsData = await banSystemApi.getPunishments();
setPunishments(punishmentsData);
break;
}
case 'nodes': {
const nodesData = await banSystemApi.getNodes();
setNodes(nodesData);
break;
}
case 'agents': {
const agentsData = await banSystemApi.getAgents();
setAgents(agentsData);
break;
}
case 'violations': {
const violationsData = await banSystemApi.getTrafficViolations();
setViolations(violationsData);
break;
}
case 'settings': {
const settingsData = await banSystemApi.getSettings();
setSettings(settingsData);
break;
}
case 'traffic': {
const trafficData = await banSystemApi.getTraffic();
setTraffic(trafficData);
break;
}
case 'reports': {
const reportData = await banSystemApi.getReport(reportHoursRef.current);
setReport(reportData);
break;
}
case 'health': {
const healthData = await banSystemApi.getHealth();
setHealth(healthData);
break;
}
}
} catch {
setError(t('banSystem.loadError'));
} finally {
setLoading(false);
}
},
[t],
);
useEffect(() => {
loadStatus();
}, [loadStatus]);
useEffect(() => {
if (status?.enabled && status?.configured) {
loadTabData(activeTab);
}
}, [activeTab, status, loadTabData]);
const handleSearch = async () => {
if (!searchQuery.trim()) {
loadTabData('users');
return;
}
try {
setLoading(true);
const data = await banSystemApi.searchUsers(searchQuery);
setUsers(data);
} catch {
setError(t('banSystem.loadError'));
} finally {
setLoading(false);
}
};
const handleViewUser = async (email: string) => {
try {
setActionLoading(email);
const data = await banSystemApi.getUser(email);
setSelectedUser(data);
} catch {
setError(t('banSystem.loadError'));
} finally {
setActionLoading(null);
}
};
const handleUnban = async (userId: string) => {
try {
setActionLoading(userId);
await banSystemApi.unbanUser(userId);
loadTabData('punishments');
} catch {
setError(t('banSystem.loadError'));
} finally {
setActionLoading(null);
}
};
const handleToggleSetting = async (key: string) => {
try {
setSettingLoading(key);
await banSystemApi.toggleSetting(key);
loadTabData('settings');
} catch {
setError(t('banSystem.loadError'));
} finally {
setSettingLoading(null);
}
};
const handleSetSetting = async (key: string, value: string) => {
try {
setSettingLoading(key);
await banSystemApi.setSetting(key, value);
loadTabData('settings');
} catch {
setError(t('banSystem.loadError'));
} finally {
setSettingLoading(null);
}
};
const handleReportPeriodChange = (hours: number) => {
setReportHours(hours);
};
useEffect(() => {
if (activeTab === 'reports' && status?.enabled) {
loadTabData('reports');
}
}, [reportHours, activeTab, status, loadTabData]);
const formatBytes = (bytes: number) => {
if (bytes === 0) return '0 B';
const k = 1024;
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB'];
const i = Math.min(Math.floor(Math.log(bytes) / Math.log(k)), sizes.length - 1);
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(2))} ${sizes[i]}`;
};
const formatUptime = (seconds: number | null) => {
if (!seconds) return '-';
const hours = Math.floor(seconds / 3600);
const minutes = Math.floor((seconds % 3600) / 60);
if (hours > 24) {
const days = Math.floor(hours / 24);
return `${days}d ${hours % 24}h`;
}
return `${hours}h ${minutes}m`;
};
const formatDate = (dateStr: string | null) => {
if (!dateStr) return '-';
return new Date(dateStr).toLocaleString();
};
const tabs = [
{ id: 'dashboard' as TabType, label: t('banSystem.tabs.dashboard'), icon: <ChartIcon /> },
{ id: 'users' as TabType, label: t('banSystem.tabs.users'), icon: <UsersIcon /> },
{ id: 'punishments' as TabType, label: t('banSystem.tabs.punishments'), icon: <BanIcon /> },
{ id: 'nodes' as TabType, label: t('banSystem.tabs.nodes'), icon: <ServerIcon /> },
{ id: 'agents' as TabType, label: t('banSystem.tabs.agents'), icon: <AgentIcon /> },
{ id: 'violations' as TabType, label: t('banSystem.tabs.violations'), icon: <WarningIcon /> },
{ id: 'traffic' as TabType, label: t('banSystem.tabs.traffic'), icon: <TrafficIcon /> },
{ id: 'reports' as TabType, label: t('banSystem.tabs.reports'), icon: <ReportIcon /> },
{ id: 'settings' as TabType, label: t('banSystem.tabs.settings'), icon: <SettingsIcon /> },
{ id: 'health' as TabType, label: t('banSystem.tabs.health'), icon: <HealthIcon /> },
];
if (loading && !status) {
return (
<div className="flex h-64 items-center justify-center">
<div className="h-8 w-8 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
</div>
);
}
if (error && !status?.enabled) {
return (
<div className="flex min-h-[60vh] animate-fade-in items-center justify-center">
<div className="mx-4 w-full max-w-md">
{/* Card */}
<div className="rounded-2xl border border-dark-700 bg-dark-800/50 p-8 text-center shadow-2xl backdrop-blur-xl">
{/* Icon */}
<div className="mb-6 flex justify-center">
<div className="relative">
<div className="flex h-20 w-20 items-center justify-center rounded-2xl bg-gradient-to-br from-error-500/20 to-warning-500/20">
<svg
className="h-10 w-10 text-error-400"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={1.5}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z"
/>
</svg>
</div>
<div className="absolute -bottom-1 -right-1 flex h-6 w-6 items-center justify-center rounded-full border border-dark-600 bg-dark-800">
<svg
className="h-3.5 w-3.5 text-dark-400"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2}
>
<path
strokeLinecap="round"
strokeLinejoin="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"
/>
</svg>
</div>
</div>
</div>
{/* Title */}
<h2 className="mb-2 text-xl font-bold text-dark-100">{t('banSystem.title')}</h2>
{/* Error message */}
<p className="mb-2 font-medium text-error-400">{error}</p>
{/* Hint */}
<p className="mb-8 text-sm text-dark-400">{t('banSystem.configureHint')}</p>
{/* Buttons */}
<div className="flex flex-col gap-3">
{/* Telegram Button */}
<a
href="https://t.me/fringg"
target="_blank"
rel="noopener noreferrer"
className="flex w-full items-center justify-center gap-2 rounded-lg bg-gradient-to-r from-[#0088cc] to-[#0099dd] px-4 py-2 text-sm font-medium text-white transition-all duration-200 hover:from-[#0077bb] hover:to-[#0088cc] hover:shadow-lg hover:shadow-[#0088cc]/20"
>
<svg className="h-5 w-5" viewBox="0 0 24 24" fill="currentColor">
<path d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
</svg>
{t('banSystem.contactTelegram')}
</a>
{/* Back Button */}
<button
onClick={() => window.history.back()}
className="flex w-full items-center justify-center gap-2 rounded-lg border border-dark-600 bg-dark-700 px-4 py-2 text-sm font-medium text-dark-200 transition-all duration-200 hover:border-dark-500 hover:bg-dark-600 hover:text-dark-100"
>
<svg
className="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
strokeWidth={2}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M10.5 19.5L3 12m0 0l7.5-7.5M3 12h18"
/>
</svg>
{t('common.back')}
</button>
</div>
</div>
{/* Decorative elements */}
<div className="pointer-events-none absolute inset-0 -z-10 overflow-hidden">
<div className="absolute -left-20 top-1/4 h-40 w-40 rounded-full bg-accent-500/5 blur-3xl" />
<div className="absolute -right-20 bottom-1/4 h-40 w-40 rounded-full bg-error-500/5 blur-3xl" />
</div>
</div>
</div>
);
}
return (
<div className="animate-fade-in space-y-6">
{/* Header */}
<div className="flex items-center justify-between">
<div className="flex items-center gap-3">
<div className="rounded-xl bg-error-500/20 p-3">
<ShieldIcon />
</div>
<div>
<h1 className="text-2xl font-bold text-dark-100">{t('banSystem.title')}</h1>
<p className="text-dark-400">{t('banSystem.subtitle')}</p>
</div>
</div>
<button
onClick={() => loadTabData(activeTab)}
disabled={loading}
className="flex items-center gap-2 rounded-lg bg-dark-800 px-4 py-2 text-dark-300 transition-colors hover:bg-dark-700 hover:text-dark-100 disabled:opacity-50"
>
<RefreshIcon />
{t('common.refresh')}
</button>
</div>
{/* Tabs */}
<div className="flex flex-wrap gap-2 border-b border-dark-700 pb-2">
{tabs.map((tab) => (
<button
key={tab.id}
onClick={() => setActiveTab(tab.id)}
className={`flex items-center gap-2 rounded-lg px-4 py-2 text-sm font-medium transition-colors ${
activeTab === tab.id
? 'bg-accent-500/20 text-accent-400'
: 'text-dark-400 hover:bg-dark-800 hover:text-dark-200'
}`}
>
{tab.icon}
{tab.label}
</button>
))}
</div>
{/* Content */}
{loading ? (
<div className="flex h-48 items-center justify-center">
<div className="h-8 w-8 animate-spin rounded-full border-2 border-accent-500 border-t-transparent" />
</div>
) : error ? (
<div className="py-8 text-center text-error-400">{error}</div>
) : (
<>
{/* Dashboard Tab */}
{activeTab === 'dashboard' && stats && (
<div className="grid grid-cols-2 gap-4 md:grid-cols-4">
<StatCard
title={t('banSystem.stats.activeUsers')}
value={stats.active_users}
subtitle={`${t('banSystem.stats.total')}: ${stats.total_users}`}
icon={<UsersIcon />}
color="success"
/>
<StatCard
title={t('banSystem.stats.usersOverLimit')}
value={stats.users_over_limit}
icon={<WarningIcon />}
color="warning"
/>
<StatCard
title={t('banSystem.stats.activeBans')}
value={stats.active_punishments}
subtitle={`${t('banSystem.stats.total')}: ${stats.total_punishments}`}
icon={<BanIcon />}
color="error"
/>
<StatCard
title={t('banSystem.stats.nodesOnline')}
value={`${stats.nodes_online}/${stats.nodes_total}`}
icon={<ServerIcon />}
color="accent"
/>
<StatCard
title={t('banSystem.stats.agentsOnline')}
value={`${stats.agents_online}/${stats.agents_total}`}
icon={<AgentIcon />}
color="info"
/>
<StatCard
title={t('banSystem.stats.totalRequests')}
value={stats.total_requests.toLocaleString()}
icon={<ChartIcon />}
color="accent"
/>
<StatCard
title={t('banSystem.stats.panelStatus')}
value={
stats.panel_connected
? t('banSystem.stats.connected')
: t('banSystem.stats.disconnected')
}
icon={<ServerIcon />}
color={stats.panel_connected ? 'success' : 'error'}
/>
<StatCard
title={t('banSystem.stats.uptime')}
value={formatUptime(stats.uptime_seconds)}
icon={<ChartIcon />}
color="info"
/>
</div>
)}
{/* Users Tab */}
{activeTab === 'users' && (
<div className="space-y-4">
{/* Search */}
<div className="flex gap-2">
<div className="relative flex-1">
<SearchIcon />
<input
type="text"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
onKeyDown={(e) => e.key === 'Enter' && handleSearch()}
placeholder={t('banSystem.users.searchPlaceholder')}
className="input pl-10"
/>
</div>
<button
onClick={handleSearch}
className="rounded-lg bg-accent-500/20 px-4 py-2 text-accent-400 transition-colors hover:bg-accent-500/30"
>
{t('common.search')}
</button>
</div>
{/* Users Table */}
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.users.email')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.users.ipCount')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.users.limit')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.users.status')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.users.bans')}
</th>
<th className="px-4 py-3 text-right text-xs font-medium text-dark-500">
{t('common.actions')}
</th>
</tr>
</thead>
<tbody>
{users?.users.map((user) => (
<tr
key={user.email}
className="border-b border-dark-700/50 hover:bg-dark-800/50"
>
<td className="px-4 py-3 text-dark-100">{user.email}</td>
<td className="px-4 py-3 text-center text-dark-300">
{user.unique_ip_count}
</td>
<td className="px-4 py-3 text-center text-dark-300">{user.limit ?? '-'}</td>
<td className="px-4 py-3 text-center">
<span
className={`rounded-full px-2 py-1 text-xs ${
user.is_over_limit
? 'bg-error-500/20 text-error-400'
: 'bg-success-500/20 text-success-400'
}`}
>
{user.is_over_limit
? t('banSystem.users.overLimit')
: t('banSystem.users.ok')}
</span>
</td>
<td className="px-4 py-3 text-center text-dark-300">
{user.blocked_count}
</td>
<td className="px-4 py-3 text-right">
<button
onClick={() => handleViewUser(user.email)}
disabled={actionLoading === user.email}
className="text-sm text-accent-400 hover:text-accent-300 disabled:opacity-50"
>
{t('banSystem.users.viewDetails')}
</button>
</td>
</tr>
))}
</tbody>
</table>
{(!users?.users || users.users.length === 0) && (
<div className="py-8 text-center text-dark-500">{t('common.noData')}</div>
)}
</div>
</div>
)}
{/* Punishments Tab */}
{activeTab === 'punishments' && (
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.punishments.user')}
</th>
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.punishments.reason')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.punishments.ipCount')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.punishments.limit')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.punishments.bannedAt')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.punishments.enableAt')}
</th>
<th className="px-4 py-3 text-right text-xs font-medium text-dark-500">
{t('common.actions')}
</th>
</tr>
</thead>
<tbody>
{punishments?.punishments.map((p) => (
<tr
key={p.user_id}
className="border-b border-dark-700/50 hover:bg-dark-800/50"
>
<td className="px-4 py-3">
<div className="text-dark-100">{p.username}</div>
<div className="text-xs text-dark-500">{p.user_id}</div>
</td>
<td className="px-4 py-3 text-sm text-dark-300">{p.reason || '-'}</td>
<td className="px-4 py-3 text-center text-error-400">{p.ip_count}</td>
<td className="px-4 py-3 text-center text-dark-300">{p.limit}</td>
<td className="px-4 py-3 text-center text-sm text-dark-300">
{formatDate(p.punished_at)}
</td>
<td className="px-4 py-3 text-center text-sm text-dark-300">
{formatDate(p.enable_at)}
</td>
<td className="px-4 py-3 text-right">
<button
onClick={() => handleUnban(p.user_id)}
disabled={actionLoading === p.user_id}
className="rounded-lg bg-success-500/20 px-3 py-1 text-sm text-success-400 transition-colors hover:bg-success-500/30 disabled:opacity-50"
>
{t('banSystem.punishments.unban')}
</button>
</td>
</tr>
))}
</tbody>
</table>
{(!punishments?.punishments || punishments.punishments.length === 0) && (
<div className="py-8 text-center text-dark-500">
{t('banSystem.punishments.noBans')}
</div>
)}
</div>
)}
{/* Nodes Tab */}
{activeTab === 'nodes' && (
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
{nodes?.nodes.map((node) => (
<div
key={node.name}
className={`rounded-xl border bg-dark-800/50 p-4 ${
node.is_connected ? 'border-success-500/30' : 'border-dark-700'
}`}
>
<div className="mb-3 flex items-center gap-3">
<div
className={`h-3 w-3 rounded-full ${node.is_connected ? 'animate-pulse bg-success-500' : 'bg-dark-500'}`}
/>
<div>
<div className="font-medium text-dark-100">{node.name}</div>
<div className="text-xs text-dark-500">{node.address || '-'}</div>
</div>
</div>
<div className="grid grid-cols-2 gap-3">
<div className="rounded-lg bg-dark-900/50 p-2.5">
<div className="text-xs text-dark-500">{t('banSystem.nodes.status')}</div>
<div
className={`text-sm font-medium ${node.is_connected ? 'text-success-400' : 'text-dark-400'}`}
>
{node.is_connected
? t('banSystem.nodes.online')
: t('banSystem.nodes.offline')}
</div>
</div>
<div className="rounded-lg bg-dark-900/50 p-2.5">
<div className="text-xs text-dark-500">{t('banSystem.nodes.users')}</div>
<div className="text-sm font-medium text-dark-100">{node.users_count}</div>
</div>
</div>
</div>
))}
{(!nodes?.nodes || nodes.nodes.length === 0) && (
<div className="col-span-full py-8 text-center text-dark-500">
{t('banSystem.nodes.noNodes')}
</div>
)}
</div>
)}
{/* Agents Tab */}
{activeTab === 'agents' && (
<div className="space-y-4">
{/* Summary */}
{agents?.summary && (
<div className="grid grid-cols-2 gap-4 md:grid-cols-4">
<StatCard
title={t('banSystem.agents.online')}
value={`${agents.summary.online_agents}/${agents.summary.total_agents}`}
icon={<AgentIcon />}
color="success"
/>
<StatCard
title={t('banSystem.agents.totalSent')}
value={agents.summary.total_sent.toLocaleString()}
icon={<ChartIcon />}
color="accent"
/>
<StatCard
title={t('banSystem.agents.totalDropped')}
value={agents.summary.total_dropped.toLocaleString()}
icon={<WarningIcon />}
color="warning"
/>
<StatCard
title={t('banSystem.agents.healthy')}
value={agents.summary.healthy_count}
subtitle={`${t('banSystem.agents.warning')}: ${agents.summary.warning_count}, ${t('banSystem.agents.critical')}: ${agents.summary.critical_count}`}
icon={<AgentIcon />}
color="info"
/>
</div>
)}
{/* Agents List */}
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.agents.node')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.agents.status')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.agents.health')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.agents.sent')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.agents.dropped')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.agents.queue')}
</th>
</tr>
</thead>
<tbody>
{agents?.agents.map((agent) => (
<tr
key={agent.node_name}
className="border-b border-dark-700/50 hover:bg-dark-800/50"
>
<td className="px-4 py-3 text-dark-100">{agent.node_name}</td>
<td className="px-4 py-3 text-center">
<span
className={`rounded-full px-2 py-1 text-xs ${
agent.is_online
? 'bg-success-500/20 text-success-400'
: 'bg-dark-600 text-dark-400'
}`}
>
{agent.is_online
? t('banSystem.agents.online')
: t('banSystem.agents.offline')}
</span>
</td>
<td className="px-4 py-3 text-center">
<span
className={`rounded-full px-2 py-1 text-xs ${
agent.health === 'healthy'
? 'bg-success-500/20 text-success-400'
: agent.health === 'warning'
? 'bg-warning-500/20 text-warning-400'
: agent.health === 'critical'
? 'bg-error-500/20 text-error-400'
: 'bg-dark-600 text-dark-400'
}`}
>
{agent.health}
</span>
</td>
<td className="px-4 py-3 text-center text-dark-300">
{agent.sent_total.toLocaleString()}
</td>
<td className="px-4 py-3 text-center text-warning-400">
{agent.dropped_total.toLocaleString()}
</td>
<td className="px-4 py-3 text-center text-dark-300">
{agent.queue_size}/{agent.queue_max}
</td>
</tr>
))}
</tbody>
</table>
{(!agents?.agents || agents.agents.length === 0) && (
<div className="py-8 text-center text-dark-500">
{t('banSystem.agents.noAgents')}
</div>
)}
</div>
</div>
)}
{/* Violations Tab */}
{activeTab === 'violations' && (
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.violations.user')}
</th>
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.violations.type')}
</th>
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.violations.description')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.violations.detectedAt')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.violations.status')}
</th>
</tr>
</thead>
<tbody>
{violations?.violations.map((v, idx) => (
<tr key={idx} className="border-b border-dark-700/50 hover:bg-dark-800/50">
<td className="px-4 py-3">
<div className="text-dark-100">{v.username}</div>
<div className="text-xs text-dark-500">{v.email || '-'}</div>
</td>
<td className="px-4 py-3 text-warning-400">{v.violation_type}</td>
<td className="px-4 py-3 text-sm text-dark-300">{v.description || '-'}</td>
<td className="px-4 py-3 text-center text-sm text-dark-300">
{formatDate(v.detected_at)}
</td>
<td className="px-4 py-3 text-center">
<span
className={`rounded-full px-2 py-1 text-xs ${
v.resolved
? 'bg-success-500/20 text-success-400'
: 'bg-warning-500/20 text-warning-400'
}`}
>
{v.resolved
? t('banSystem.violations.resolved')
: t('banSystem.violations.active')}
</span>
</td>
</tr>
))}
</tbody>
</table>
{(!violations?.violations || violations.violations.length === 0) && (
<div className="py-8 text-center text-dark-500">
{t('banSystem.violations.noViolations')}
</div>
)}
</div>
)}
{/* Traffic Tab */}
{activeTab === 'traffic' && traffic && (
<div className="space-y-4">
{/* Traffic Stats */}
<div className="grid grid-cols-2 gap-4 md:grid-cols-4">
<StatCard
title={t('banSystem.traffic.enabled')}
value={traffic.enabled ? t('common.yes') : t('common.no')}
icon={<TrafficIcon />}
color={traffic.enabled ? 'success' : 'warning'}
/>
</div>
{/* Top Users by Traffic */}
{traffic.top_users && traffic.top_users.length > 0 && (
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<div className="border-b border-dark-700 p-4">
<h3 className="text-sm font-medium text-dark-200">
{t('banSystem.traffic.topUsers')}
</h3>
</div>
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.traffic.username')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.traffic.bytesTotal')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.traffic.bytesLimit')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.traffic.status')}
</th>
</tr>
</thead>
<tbody>
{traffic.top_users.map((user, idx) => (
<tr key={idx} className="border-b border-dark-700/50 hover:bg-dark-800/50">
<td className="px-4 py-3 text-dark-100">{user.username}</td>
<td className="px-4 py-3 text-center text-dark-300">
{formatBytes(user.bytes_total)}
</td>
<td className="px-4 py-3 text-center text-dark-300">
{user.bytes_limit ? formatBytes(user.bytes_limit) : '-'}
</td>
<td className="px-4 py-3 text-center">
<span
className={`rounded-full px-2 py-1 text-xs ${
user.over_limit
? 'bg-error-500/20 text-error-400'
: 'bg-success-500/20 text-success-400'
}`}
>
{user.over_limit
? t('banSystem.traffic.overLimit')
: t('banSystem.traffic.ok')}
</span>
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
{/* Recent Violations */}
{traffic.recent_violations && traffic.recent_violations.length > 0 && (
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<div className="border-b border-dark-700 p-4">
<h3 className="text-sm font-medium text-dark-200">
{t('banSystem.traffic.recentViolations')}
</h3>
</div>
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.violations.user')}
</th>
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.violations.type')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.violations.detectedAt')}
</th>
</tr>
</thead>
<tbody>
{traffic.recent_violations.map((v, idx) => (
<tr key={idx} className="border-b border-dark-700/50 hover:bg-dark-800/50">
<td className="px-4 py-3 text-dark-100">{v.username}</td>
<td className="px-4 py-3 text-warning-400">{v.violation_type}</td>
<td className="px-4 py-3 text-center text-sm text-dark-300">
{formatDate(v.detected_at)}
</td>
</tr>
))}
</tbody>
</table>
</div>
)}
{(!traffic.top_users || traffic.top_users.length === 0) &&
(!traffic.recent_violations || traffic.recent_violations.length === 0) && (
<div className="py-8 text-center text-dark-500">{t('common.noData')}</div>
)}
</div>
)}
{/* Reports Tab */}
{activeTab === 'reports' && (
<div className="space-y-4">
{/* Period Selector */}
<div className="flex items-center gap-4">
<span className="text-dark-400">{t('banSystem.reports.period')}:</span>
<div className="flex gap-2">
{[6, 12, 24, 48, 72].map((hours) => (
<button
key={hours}
onClick={() => handleReportPeriodChange(hours)}
className={`rounded-lg px-3 py-1.5 text-sm transition-colors ${
reportHours === hours
? 'bg-accent-500/20 text-accent-400'
: 'bg-dark-800 text-dark-400 hover:text-dark-200'
}`}
>
{hours}h
</button>
))}
</div>
</div>
{report && (
<>
{/* Report Stats */}
<div className="grid grid-cols-2 gap-4 md:grid-cols-4">
<StatCard
title={t('banSystem.reports.currentUsers')}
value={report.current_users}
icon={<UsersIcon />}
color="accent"
/>
<StatCard
title={t('banSystem.reports.currentIps')}
value={report.current_ips}
icon={<ServerIcon />}
color="info"
/>
</div>
{/* Top Violators */}
{report.top_violators && report.top_violators.length > 0 && (
<div className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50">
<div className="border-b border-dark-700 p-4">
<h3 className="text-sm font-medium text-dark-200">
{t('banSystem.reports.topViolators')}
</h3>
</div>
<table className="w-full">
<thead>
<tr className="border-b border-dark-700">
<th className="px-4 py-3 text-left text-xs font-medium text-dark-500">
{t('banSystem.reports.username')}
</th>
<th className="px-4 py-3 text-center text-xs font-medium text-dark-500">
{t('banSystem.reports.count')}
</th>
</tr>
</thead>
<tbody>
{report.top_violators.map((v, idx) => (
<tr
key={idx}
className="border-b border-dark-700/50 hover:bg-dark-800/50"
>
<td className="px-4 py-3 text-dark-100">{v.username}</td>
<td className="px-4 py-3 text-center text-warning-400">{v.count}</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</>
)}
</div>
)}
{/* Settings Tab */}
{activeTab === 'settings' && settings && (
<div className="space-y-4">
{/* Group settings by category */}
{(() => {
const grouped: Record<string, BanSettingDefinition[]> = {};
// Smart categorization: use API category or infer from key prefix
const inferCategory = (key: string, apiCategory: string | null): string => {
if (apiCategory) return apiCategory;
if (key.startsWith('punishment_') || key.startsWith('progressive_ban'))
return 'punishment';
if (key.startsWith('traffic_')) return 'traffic';
if (key.startsWith('network_')) return 'network';
if (key.startsWith('rate_limit_')) return 'rate_limit';
if (key.startsWith('notify_') || key.startsWith('daily_report'))
return 'notifications';
return 'general';
};
settings.settings.forEach((s) => {
const cat = inferCategory(s.key, s.category);
if (!grouped[cat]) grouped[cat] = [];
grouped[cat].push(s);
});
// Sort categories in logical order
const categoryOrder = [
'general',
'punishment',
'progressive_bans',
'traffic',
'network',
'notifications',
'rate_limit',
];
const sortedCategories = Object.keys(grouped).sort((a, b) => {
const aIdx = categoryOrder.indexOf(a);
const bIdx = categoryOrder.indexOf(b);
if (aIdx === -1 && bIdx === -1) return a.localeCompare(b);
if (aIdx === -1) return 1;
if (bIdx === -1) return -1;
return aIdx - bIdx;
});
return sortedCategories.map((category) => (
<div
key={category}
className="overflow-hidden rounded-xl border border-dark-700 bg-dark-800/50"
>
<div className="border-b border-dark-700 p-4">
<h3 className="text-sm font-medium text-dark-200">
{formatCategory(category)}
</h3>
</div>
<div className="divide-y divide-dark-700">
{grouped[category].map((setting) => (
<div
key={setting.key}
className="flex items-center justify-between gap-4 p-4"
>
<div className="min-w-0 flex-1">
<div className="font-medium text-dark-100">
{formatSettingKey(setting.key)}
</div>
{setting.description && (
<div className="mt-0.5 text-xs text-dark-500">
{setting.description}
</div>
)}
</div>
<div className="flex-shrink-0">
{setting.type === 'bool' ? (
<button
onClick={() => handleToggleSetting(setting.key)}
disabled={!setting.editable || settingLoading === setting.key}
className={`relative inline-flex h-6 w-11 items-center rounded-full transition-colors ${
setting.value ? 'bg-accent-500' : 'bg-dark-600'
} ${!setting.editable ? 'cursor-not-allowed opacity-50' : ''}`}
>
<span
className={`inline-block h-4 w-4 transform rounded-full bg-white transition-transform ${
setting.value ? 'translate-x-6' : 'translate-x-1'
}`}
/>
</button>
) : setting.type === 'int' ? (
<input
type="number"
value={String(setting.value)}
onChange={(e) => handleSetSetting(setting.key, e.target.value)}
min={setting.min_value ?? undefined}
max={setting.max_value ?? undefined}
disabled={!setting.editable || settingLoading === setting.key}
className="input w-24"
/>
) : setting.type === 'list' ? (
<div className="flex max-w-xs flex-wrap justify-end gap-1.5">
{Array.isArray(setting.value) && setting.value.length > 0 ? (
setting.value.map((item, idx) => (
<span
key={idx}
className="rounded bg-accent-500/20 px-2 py-0.5 text-xs text-accent-400"
>
{String(item)}
</span>
))
) : (
<span className="text-sm text-dark-500">
{t('common.noData')}
</span>
)}
{setting.editable && nodes && setting.key.includes('nodes') && (
<select
className="input py-1 text-xs"
onChange={(e) => {
if (e.target.value) {
const currentList = Array.isArray(setting.value)
? setting.value
: [];
if (!currentList.includes(e.target.value)) {
handleSetSetting(
setting.key,
[...currentList, e.target.value].join(','),
);
}
e.target.value = '';
}
}}
disabled={settingLoading === setting.key}
>
<option value="">+ {t('common.add')}</option>
{nodes.nodes
.filter(
(n) =>
!Array.isArray(setting.value) ||
!setting.value.includes(n.name),
)
.map((n) => (
<option key={n.name} value={n.name}>
{n.name}
</option>
))}
</select>
)}
</div>
) : (
<div className="text-sm text-dark-300">{String(setting.value)}</div>
)}
</div>
</div>
))}
</div>
</div>
));
})()}
</div>
)}
{/* Health Tab */}
{activeTab === 'health' && health && (
<div className="space-y-4">
{/* Overall Status */}
<div className="rounded-xl border border-dark-700 bg-dark-800/50 p-4">
<div className="flex items-center justify-between">
<div className="flex items-center gap-3">
<div
className={`h-4 w-4 rounded-full ${
health.status === 'healthy'
? 'animate-pulse bg-success-500'
: health.status === 'degraded'
? 'animate-pulse bg-warning-500'
: 'animate-pulse bg-error-500'
}`}
/>
<div>
<div className="font-medium text-dark-100">
{t('banSystem.health.systemStatus')}
</div>
<div
className={`text-sm ${
health.status === 'healthy'
? 'text-success-400'
: health.status === 'degraded'
? 'text-warning-400'
: 'text-error-400'
}`}
>
{health.status.toUpperCase()}
</div>
</div>
</div>
{health.uptime !== null && (
<div className="text-right">
<div className="text-xs text-dark-500">{t('banSystem.stats.uptime')}</div>
<div className="text-dark-100">{formatUptime(health.uptime)}</div>
</div>
)}
</div>
</div>
{/* Components Status */}
{health.components && health.components.length > 0 && (
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
{health.components.map((comp, idx) => (
<div
key={idx}
className={`rounded-xl border bg-dark-800/50 p-4 ${
comp.status === 'healthy'
? 'border-success-500/30'
: comp.status === 'degraded'
? 'border-warning-500/30'
: 'border-error-500/30'
}`}
>
<div className="mb-2 flex items-center gap-3">
<div
className={`h-3 w-3 rounded-full ${
comp.status === 'healthy'
? 'bg-success-500'
: comp.status === 'degraded'
? 'bg-warning-500'
: 'bg-error-500'
}`}
/>
<div className="font-medium text-dark-100">{comp.name}</div>
</div>
<div
className={`text-sm ${
comp.status === 'healthy'
? 'text-success-400'
: comp.status === 'degraded'
? 'text-warning-400'
: 'text-error-400'
}`}
>
{comp.status}
</div>
{comp.message && (
<div className="mt-1 text-xs text-dark-500">{comp.message}</div>
)}
</div>
))}
</div>
)}
</div>
)}
</>
)}
{/* User Detail Modal */}
{selectedUser && (
<div
className="fixed inset-0 z-50 flex items-center justify-center bg-black/50 p-4"
onClick={() => setSelectedUser(null)}
>
<div
className="max-h-[80vh] w-full max-w-2xl overflow-y-auto rounded-xl border border-dark-700 bg-dark-800"
onClick={(e) => e.stopPropagation()}
>
<div className="flex items-center justify-between border-b border-dark-700 p-4">
<h3 className="text-lg font-semibold text-dark-100">
{t('banSystem.userDetail.title')}
</h3>
<button
onClick={() => setSelectedUser(null)}
className="text-dark-400 hover:text-dark-200"
>
<svg className="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</button>
</div>
<div className="space-y-4 p-4">
{/* User Info */}
<div className="grid grid-cols-2 gap-4">
<div>
<div className="text-xs text-dark-500">{t('banSystem.users.email')}</div>
<div className="text-dark-100">{selectedUser.email}</div>
</div>
<div>
<div className="text-xs text-dark-500">{t('banSystem.users.limit')}</div>
<div className="text-dark-100">{selectedUser.limit ?? '-'}</div>
</div>
<div>
<div className="text-xs text-dark-500">{t('banSystem.users.ipCount')}</div>
<div className="text-dark-100">{selectedUser.unique_ip_count}</div>
</div>
<div>
<div className="text-xs text-dark-500">{t('banSystem.users.networkType')}</div>
<div className="text-dark-100">{selectedUser.network_type || '-'}</div>
</div>
</div>
{/* IP History */}
<div>
<h4 className="mb-2 text-sm font-medium text-dark-200">
{t('banSystem.userDetail.ipHistory')}
</h4>
<div className="overflow-hidden rounded-lg bg-dark-900/50">
<table className="w-full text-sm">
<thead>
<tr className="border-b border-dark-700">
<th className="px-3 py-2 text-left text-xs text-dark-500">
{t('banSystem.userDetail.ip')}
</th>
<th className="px-3 py-2 text-left text-xs text-dark-500">
{t('banSystem.userDetail.country')}
</th>
<th className="px-3 py-2 text-left text-xs text-dark-500">
{t('banSystem.userDetail.node')}
</th>
<th className="px-3 py-2 text-center text-xs text-dark-500">
{t('banSystem.userDetail.requests')}
</th>
</tr>
</thead>
<tbody>
{selectedUser.ips.map((ip, idx) => (
<tr key={idx} className="border-b border-dark-700/50">
<td className="px-3 py-2 text-dark-100">{ip.ip}</td>
<td className="px-3 py-2 text-dark-300">
{ip.country_name || ip.country_code || '-'}
</td>
<td className="px-3 py-2 text-dark-300">{ip.node || '-'}</td>
<td className="px-3 py-2 text-center text-dark-300">
{ip.request_count}
</td>
</tr>
))}
</tbody>
</table>
{selectedUser.ips.length === 0 && (
<div className="py-4 text-center text-dark-500">{t('common.noData')}</div>
)}
</div>
</div>
</div>
</div>
</div>
)}
</div>
);
}