mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-31 18:24:10 +00:00
189 lines
6.4 KiB
TypeScript
189 lines
6.4 KiB
TypeScript
|
|
import { useCallback, useEffect, useMemo, useState } from 'react';
|
||
|
|
import { useTranslation } from 'react-i18next';
|
||
|
|
import { Card, Col, ConfigProvider, Layout, Modal, Row, Spin, message } from 'antd';
|
||
|
|
import {
|
||
|
|
CheckCircleOutlined,
|
||
|
|
CloseCircleOutlined,
|
||
|
|
CloudServerOutlined,
|
||
|
|
ThunderboltOutlined,
|
||
|
|
} from '@ant-design/icons';
|
||
|
|
|
||
|
|
import { useTheme } from '@/hooks/useTheme';
|
||
|
|
import { useMediaQuery } from '@/hooks/useMediaQuery';
|
||
|
|
import { useNodes } from '@/hooks/useNodes';
|
||
|
|
import type { NodeRecord } from '@/hooks/useNodes';
|
||
|
|
import { useWebSocket } from '@/hooks/useWebSocket';
|
||
|
|
import AppSidebar from '@/components/AppSidebar';
|
||
|
|
import CustomStatistic from '@/components/CustomStatistic';
|
||
|
|
import NodeList from './NodeList';
|
||
|
|
import NodeFormModal from './NodeFormModal';
|
||
|
|
import { setMessageInstance } from '@/utils/messageBus';
|
||
|
|
import '@/styles/page-cards.css';
|
||
|
|
import './NodesPage.css';
|
||
|
|
|
||
|
|
const basePath = window.X_UI_BASE_PATH || '';
|
||
|
|
const requestUri = window.location.pathname;
|
||
|
|
|
||
|
|
export default function NodesPage() {
|
||
|
|
const { t } = useTranslation();
|
||
|
|
const { isDark, isUltra, antdThemeConfig } = useTheme();
|
||
|
|
const { isMobile } = useMediaQuery();
|
||
|
|
const [modal, modalContextHolder] = Modal.useModal();
|
||
|
|
const [messageApi, messageContextHolder] = message.useMessage();
|
||
|
|
useEffect(() => { setMessageInstance(messageApi); }, [messageApi]);
|
||
|
|
|
||
|
|
const {
|
||
|
|
nodes,
|
||
|
|
loading,
|
||
|
|
fetched,
|
||
|
|
totals,
|
||
|
|
applyNodesEvent,
|
||
|
|
create,
|
||
|
|
update,
|
||
|
|
remove,
|
||
|
|
setEnable,
|
||
|
|
testConnection,
|
||
|
|
probe,
|
||
|
|
} = useNodes();
|
||
|
|
|
||
|
|
useWebSocket({ nodes: applyNodesEvent });
|
||
|
|
|
||
|
|
const [formOpen, setFormOpen] = useState(false);
|
||
|
|
const [formMode, setFormMode] = useState<'add' | 'edit'>('add');
|
||
|
|
const [formNode, setFormNode] = useState<NodeRecord | null>(null);
|
||
|
|
|
||
|
|
const onAdd = useCallback(() => {
|
||
|
|
setFormMode('add');
|
||
|
|
setFormNode(null);
|
||
|
|
setFormOpen(true);
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
const onEdit = useCallback((node: NodeRecord) => {
|
||
|
|
setFormMode('edit');
|
||
|
|
setFormNode({ ...node });
|
||
|
|
setFormOpen(true);
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
const onSave = useCallback(async (payload: Partial<NodeRecord>) => {
|
||
|
|
if (formMode === 'edit' && formNode?.id) {
|
||
|
|
return update(formNode.id, payload);
|
||
|
|
}
|
||
|
|
return create(payload);
|
||
|
|
}, [formMode, formNode, update, create]);
|
||
|
|
|
||
|
|
const onDelete = useCallback((node: NodeRecord) => {
|
||
|
|
modal.confirm({
|
||
|
|
title: t('pages.nodes.deleteConfirmTitle', { name: node.name }),
|
||
|
|
content: t('pages.nodes.deleteConfirmContent'),
|
||
|
|
okText: t('delete'),
|
||
|
|
okType: 'danger',
|
||
|
|
cancelText: t('cancel'),
|
||
|
|
onOk: async () => {
|
||
|
|
const msg = await remove(node.id);
|
||
|
|
if (msg?.success) messageApi.success(t('pages.nodes.toasts.deleted'));
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}, [modal, t, remove, messageApi]);
|
||
|
|
|
||
|
|
const onProbe = useCallback(async (node: NodeRecord) => {
|
||
|
|
const msg = await probe(node.id);
|
||
|
|
if (msg?.success && msg.obj) {
|
||
|
|
if (msg.obj.status === 'online') {
|
||
|
|
messageApi.success(t('pages.nodes.connectionOk', { ms: msg.obj.latencyMs }));
|
||
|
|
} else {
|
||
|
|
messageApi.error(msg.obj.error || t('pages.nodes.toasts.probeFailed'));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}, [probe, t, messageApi]);
|
||
|
|
|
||
|
|
const onToggleEnable = useCallback(async (node: NodeRecord, next: boolean) => {
|
||
|
|
await setEnable(node.id, next);
|
||
|
|
}, [setEnable]);
|
||
|
|
|
||
|
|
const pageClass = useMemo(() => {
|
||
|
|
const classes = ['nodes-page'];
|
||
|
|
if (isDark) classes.push('is-dark');
|
||
|
|
if (isUltra) classes.push('is-ultra');
|
||
|
|
return classes.join(' ');
|
||
|
|
}, [isDark, isUltra]);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<ConfigProvider theme={antdThemeConfig}>
|
||
|
|
{messageContextHolder}
|
||
|
|
{modalContextHolder}
|
||
|
|
<Layout className={pageClass}>
|
||
|
|
<AppSidebar basePath={basePath} requestUri={requestUri} />
|
||
|
|
|
||
|
|
<Layout className="content-shell">
|
||
|
|
<Layout.Content id="content-layout" className="content-area">
|
||
|
|
<Spin spinning={!fetched} delay={200} description="Loading…" size="large">
|
||
|
|
{!fetched ? (
|
||
|
|
<div className="loading-spacer" />
|
||
|
|
) : (
|
||
|
|
<Row gutter={[isMobile ? 8 : 16, isMobile ? 8 : 12]}>
|
||
|
|
<Col span={24}>
|
||
|
|
<Card size="small" hoverable className="summary-card">
|
||
|
|
<Row gutter={[16, isMobile ? 16 : 12]}>
|
||
|
|
<Col xs={12} sm={12} md={6}>
|
||
|
|
<CustomStatistic
|
||
|
|
title={t('pages.nodes.totalNodes')}
|
||
|
|
value={String(totals.total)}
|
||
|
|
prefix={<CloudServerOutlined />}
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
<Col xs={12} sm={12} md={6}>
|
||
|
|
<CustomStatistic
|
||
|
|
title={t('pages.nodes.onlineNodes')}
|
||
|
|
value={String(totals.online)}
|
||
|
|
prefix={<CheckCircleOutlined style={{ color: '#52c41a' }} />}
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
<Col xs={12} sm={12} md={6}>
|
||
|
|
<CustomStatistic
|
||
|
|
title={t('pages.nodes.offlineNodes')}
|
||
|
|
value={String(totals.offline)}
|
||
|
|
prefix={<CloseCircleOutlined style={{ color: '#ff4d4f' }} />}
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
<Col xs={12} sm={12} md={6}>
|
||
|
|
<CustomStatistic
|
||
|
|
title={t('pages.nodes.avgLatency')}
|
||
|
|
value={totals.avgLatency > 0 ? `${totals.avgLatency} ms` : '-'}
|
||
|
|
prefix={<ThunderboltOutlined />}
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
</Row>
|
||
|
|
</Card>
|
||
|
|
</Col>
|
||
|
|
|
||
|
|
<Col span={24}>
|
||
|
|
<NodeList
|
||
|
|
nodes={nodes}
|
||
|
|
loading={loading}
|
||
|
|
isMobile={isMobile}
|
||
|
|
onAdd={onAdd}
|
||
|
|
onEdit={onEdit}
|
||
|
|
onDelete={onDelete}
|
||
|
|
onProbe={onProbe}
|
||
|
|
onToggleEnable={onToggleEnable}
|
||
|
|
/>
|
||
|
|
</Col>
|
||
|
|
</Row>
|
||
|
|
)}
|
||
|
|
</Spin>
|
||
|
|
</Layout.Content>
|
||
|
|
</Layout>
|
||
|
|
|
||
|
|
<NodeFormModal
|
||
|
|
open={formOpen}
|
||
|
|
mode={formMode}
|
||
|
|
node={formNode}
|
||
|
|
testConnection={testConnection}
|
||
|
|
save={onSave}
|
||
|
|
onOpenChange={setFormOpen}
|
||
|
|
/>
|
||
|
|
</Layout>
|
||
|
|
</ConfigProvider>
|
||
|
|
);
|
||
|
|
}
|