| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471 |
- import { useEffect, useMemo, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import {
- Alert,
- Button,
- Col,
- Form,
- Input,
- InputNumber,
- Modal,
- Row,
- Select,
- Switch,
- message,
- } from 'antd';
- import type { NodeRecord } from '@/api/queries/useNodesQuery';
- import type { RemoteInboundOption } from '@/api/queries/useNodeMutations';
- import type { Msg } from '@/utils';
- import { NodeFormSchema, type NodeFormValues, type ProbeResult } from '@/schemas/node';
- import { antdRule } from '@/utils/zodForm';
- import { useOutboundTagGroups } from '@/api/queries/useOutboundTags';
- import './NodeFormModal.css';
- type Mode = 'add' | 'edit';
- interface NodeFormModalProps {
- open: boolean;
- mode: Mode;
- node: NodeRecord | null;
- testConnection: (payload: Partial<NodeRecord>) => Promise<Msg<ProbeResult>>;
- fetchFingerprint: (payload: Partial<NodeRecord>) => Promise<Msg<string>>;
- fetchInbounds: (payload: Partial<NodeRecord>) => Promise<Msg<RemoteInboundOption[]>>;
- save: (payload: Partial<NodeRecord>) => Promise<Msg<unknown>>;
- onOpenChange: (open: boolean) => void;
- }
- function defaultValues(): NodeFormValues {
- return {
- id: 0,
- name: '',
- remark: '',
- scheme: 'https',
- address: '',
- port: 2053,
- basePath: '/',
- apiToken: '',
- enable: true,
- allowPrivateAddress: false,
- tlsVerifyMode: 'verify',
- pinnedCertSha256: '',
- inboundSyncMode: 'all',
- inboundTags: [],
- outboundTag: '',
- };
- }
- export default function NodeFormModal({
- open,
- mode,
- node,
- testConnection,
- fetchFingerprint,
- fetchInbounds,
- save,
- onOpenChange,
- }: NodeFormModalProps) {
- const { t } = useTranslation();
- const [form] = Form.useForm<NodeFormValues>();
- const [messageApi, messageContextHolder] = message.useMessage();
- const [submitting, setSubmitting] = useState(false);
- const [testing, setTesting] = useState(false);
- const [fetchingPin, setFetchingPin] = useState(false);
- const [fetchingInbounds, setFetchingInbounds] = useState(false);
- const [inboundOptions, setInboundOptions] = useState<RemoteInboundOption[]>([]);
- const [testResult, setTestResult] = useState<ProbeResult | null>(null);
- const scheme = Form.useWatch('scheme', form) ?? 'https';
- const tlsVerifyMode = Form.useWatch('tlsVerifyMode', form) ?? 'verify';
- const inboundSyncMode = Form.useWatch('inboundSyncMode', form) ?? 'all';
- const { data: outboundGroups } = useOutboundTagGroups({ excludeBlackhole: true });
- // Outbounds and balancers share one picker (like the panel-outbound selector);
- // when balancers exist they get a labeled group so it's clear the selection
- // routes through a balancer. Empty falls back to the placeholder ("Direct
- // connection") rather than a synthetic option, so it can't read as a second
- // "direct" next to a real freedom outbound.
- const outboundOptions = useMemo<
- ({ label: string; value: string } | { label: string; options: { label: string; value: string }[] })[]
- >(() => {
- const outOpts = (outboundGroups?.outbounds ?? []).map((tag) => ({ label: tag, value: tag }));
- if (!outboundGroups?.balancers.length) return outOpts;
- return [
- { label: t('pages.xray.Outbounds'), options: outOpts },
- { label: t('pages.xray.Balancers'), options: outboundGroups.balancers.map((tag) => ({ label: tag, value: tag })) },
- ];
- }, [outboundGroups, t]);
- useEffect(() => {
- if (!open) return;
- const base = defaultValues();
- const next: NodeFormValues = mode === 'edit' && node
- ? {
- ...base,
- ...(node as unknown as Partial<NodeFormValues>),
- id: node.id,
- scheme: (node.scheme as 'http' | 'https') || base.scheme,
- inboundSyncMode: (node.inboundSyncMode as 'all' | 'selected') || base.inboundSyncMode,
- inboundTags: node.inboundTags ?? [],
- }
- : base;
- if (next.scheme === 'http') next.tlsVerifyMode = 'skip';
- form.resetFields();
- form.setFieldsValue(next);
- setInboundOptions((next.inboundTags || []).map((tag) => ({ tag })));
- setTestResult(null);
- }, [open, mode, node, form]);
- const title = useMemo(
- () => (mode === 'edit' ? t('pages.nodes.editNode') : t('pages.nodes.addNode')),
- [mode, t],
- );
- function buildPayload(values: NodeFormValues): Partial<NodeRecord> {
- return {
- id: values.id || 0,
- name: values.name.trim(),
- remark: values.remark?.trim() || '',
- scheme: values.scheme,
- address: values.address.trim(),
- port: values.port,
- basePath: values.basePath.trim() || '/',
- apiToken: values.apiToken.trim(),
- enable: values.enable,
- allowPrivateAddress: values.allowPrivateAddress,
- tlsVerifyMode: values.tlsVerifyMode,
- pinnedCertSha256: values.tlsVerifyMode === 'pin' ? values.pinnedCertSha256.trim() : '',
- inboundSyncMode: values.inboundSyncMode,
- inboundTags: values.inboundSyncMode === 'selected' ? values.inboundTags : [],
- outboundTag: values.outboundTag || '',
- };
- }
- async function onTest() {
- try {
- await form.validateFields(['address', 'port']);
- } catch {
- return;
- }
- setTesting(true);
- setTestResult(null);
- try {
- const payload = buildPayload(form.getFieldsValue(true));
- const msg = await testConnection(payload);
- if (msg?.success && msg.obj) {
- setTestResult(msg.obj);
- } else {
- setTestResult({ status: 'offline', error: msg?.msg || 'unknown error' });
- }
- } finally {
- setTesting(false);
- }
- }
- async function onFetchPin() {
- try {
- await form.validateFields(['address', 'port']);
- } catch {
- return;
- }
- setFetchingPin(true);
- try {
- const payload = buildPayload(form.getFieldsValue(true));
- const msg = await fetchFingerprint(payload);
- if (msg?.success && msg.obj) {
- form.setFieldValue('pinnedCertSha256', msg.obj);
- messageApi.success(t('pages.nodes.pinFetched'));
- } else {
- messageApi.error(msg?.msg || t('pages.nodes.pinFetchFailed'));
- }
- } finally {
- setFetchingPin(false);
- }
- }
- async function onFetchInbounds() {
- try {
- await form.validateFields(['name', 'address', 'port', 'apiToken']);
- } catch {
- return;
- }
- setFetchingInbounds(true);
- try {
- const msg = await fetchInbounds(buildPayload(form.getFieldsValue(true)));
- if (msg?.success && Array.isArray(msg.obj)) {
- setInboundOptions(msg.obj);
- messageApi.success(t('pages.nodes.inboundsLoaded', { count: msg.obj.length }));
- } else {
- messageApi.error(msg?.msg || t('pages.nodes.inboundsLoadFailed'));
- }
- } finally {
- setFetchingInbounds(false);
- }
- }
- async function onFinish(values: NodeFormValues) {
- const result = NodeFormSchema.safeParse(values);
- if (!result.success) {
- messageApi.error(t(result.error.issues[0]?.message ?? 'pages.nodes.toasts.fillRequired'));
- return;
- }
- setSubmitting(true);
- try {
- const payload = buildPayload(result.data);
- const test = await testConnection(payload);
- const probe = test?.success ? test.obj : null;
- if (!probe || probe.status !== 'online') {
- setTestResult(probe ?? { status: 'offline', error: test?.msg || t('pages.nodes.connectionFailed') });
- return;
- }
- setTestResult(probe);
- const msg = await save(payload);
- if (msg?.success) {
- onOpenChange(false);
- }
- } finally {
- setSubmitting(false);
- }
- }
- function close() {
- if (!submitting) onOpenChange(false);
- }
- return (
- <>
- {messageContextHolder}
- <Modal
- open={open}
- title={title}
- confirmLoading={submitting}
- okText={t('save')}
- cancelText={t('cancel')}
- mask={{ closable: false }}
- width="640px"
- onOk={() => form.submit()}
- onCancel={close}
- >
- <Form
- form={form}
- layout="vertical"
- initialValues={defaultValues()}
- onFinish={onFinish}
- >
- <Row gutter={16}>
- <Col xs={24} md={12}>
- <Form.Item
- label={t('pages.nodes.name')}
- name="name"
- rules={[antdRule(NodeFormSchema.shape.name, t)]}
- >
- <Input placeholder={t('pages.nodes.namePlaceholder')} />
- </Form.Item>
- </Col>
- <Col xs={24} md={12}>
- <Form.Item label={t('pages.nodes.remark')} name="remark">
- <Input />
- </Form.Item>
- </Col>
- </Row>
- <Row gutter={16}>
- <Col xs={24} md={6}>
- <Form.Item label={t('pages.nodes.scheme')} name="scheme">
- <Select
- options={[
- { value: 'https', label: 'https' },
- { value: 'http', label: 'http' },
- ]}
- onChange={(value) => {
- if (value === 'http') form.setFieldValue('tlsVerifyMode', 'skip');
- }}
- />
- </Form.Item>
- </Col>
- <Col xs={24} md={12}>
- <Form.Item
- label={t('pages.nodes.address')}
- name="address"
- rules={[antdRule(NodeFormSchema.shape.address, t)]}
- >
- <Input placeholder={t('pages.nodes.addressPlaceholder')} />
- </Form.Item>
- </Col>
- <Col xs={24} md={6}>
- <Form.Item
- label={t('pages.nodes.port')}
- name="port"
- rules={[antdRule(NodeFormSchema.shape.port, t)]}
- >
- <InputNumber min={1} max={65535} style={{ width: '100%' }} />
- </Form.Item>
- </Col>
- </Row>
- <Row gutter={16}>
- <Col xs={24} md={12}>
- <Form.Item label={t('pages.nodes.basePath')} name="basePath">
- <Input placeholder="/" />
- </Form.Item>
- </Col>
- <Col xs={24} md={12}>
- <Form.Item
- label={t('pages.nodes.enable')}
- name="enable"
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- </Col>
- </Row>
- <Form.Item
- label={t('pages.nodes.allowPrivateAddress')}
- name="allowPrivateAddress"
- valuePropName="checked"
- tooltip={t('pages.nodes.allowPrivateAddressHint')}
- >
- <Switch />
- </Form.Item>
- <Form.Item
- label={t('pages.nodes.tlsVerifyMode')}
- name="tlsVerifyMode"
- tooltip={t('pages.nodes.tlsVerifyModeHint')}
- >
- <Select
- disabled={scheme === 'http'}
- options={[
- { value: 'verify', label: t('pages.nodes.tlsVerify') },
- { value: 'pin', label: t('pages.nodes.tlsPin') },
- { value: 'skip', label: t('pages.nodes.tlsSkip') },
- { value: 'mtls', label: t('pages.nodes.tlsMtls') },
- ]}
- />
- </Form.Item>
- {tlsVerifyMode === 'skip' && (
- <Alert
- type="warning"
- showIcon
- style={{ marginBottom: 16 }}
- title={t('pages.nodes.tlsSkipWarning')}
- />
- )}
- {tlsVerifyMode === 'mtls' && (
- <Alert
- type="info"
- showIcon
- style={{ marginBottom: 16 }}
- title={t('pages.nodes.mtlsFormHint')}
- />
- )}
- {tlsVerifyMode === 'pin' && (
- <Form.Item
- label={t('pages.nodes.pinnedCert')}
- name="pinnedCertSha256"
- tooltip={t('pages.nodes.pinnedCertHint')}
- >
- <Input.Search
- placeholder={t('pages.nodes.pinnedCertPlaceholder')}
- enterButton={t('pages.nodes.fetchPin')}
- loading={fetchingPin}
- onSearch={onFetchPin}
- />
- </Form.Item>
- )}
- <Form.Item
- label={t('pages.nodes.apiToken')}
- name="apiToken"
- rules={[antdRule(NodeFormSchema.shape.apiToken, t)]}
- tooltip={t('pages.nodes.apiTokenHint')}
- >
- <Input.Password placeholder={t('pages.nodes.apiTokenPlaceholder')} />
- </Form.Item>
- <Form.Item
- label={t('pages.nodes.outboundTag')}
- name="outboundTag"
- tooltip={t('pages.nodes.outboundTagHint')}
- getValueProps={(v) => ({ value: (v as string) || undefined })}
- >
- <Select
- allowClear
- showSearch
- placeholder={t('pages.nodes.outboundTagPlaceholder')}
- options={outboundOptions}
- />
- </Form.Item>
- <Form.Item
- label={t('pages.nodes.inboundSyncMode')}
- name="inboundSyncMode"
- tooltip={t('pages.nodes.inboundSyncModeHint')}
- >
- <Select
- options={[
- { value: 'all', label: t('pages.nodes.allInbounds') },
- { value: 'selected', label: t('pages.nodes.selectedInbounds') },
- ]}
- />
- </Form.Item>
- {inboundSyncMode === 'selected' && (
- <Form.Item
- label={t('pages.nodes.inboundTags')}
- name="inboundTags"
- tooltip={t('pages.nodes.inboundTagsHint')}
- >
- <Select
- mode="multiple"
- allowClear
- loading={fetchingInbounds}
- placeholder={t('pages.nodes.inboundTagsPlaceholder')}
- popupRender={(menu) => (
- <>
- <Button type="text" block loading={fetchingInbounds} onClick={onFetchInbounds}>
- {t('pages.nodes.loadInbounds')}
- </Button>
- {menu}
- </>
- )}
- options={inboundOptions.map((inbound) => ({
- value: inbound.tag,
- label: `${inbound.remark || inbound.tag}${inbound.protocol ? ` (${inbound.protocol}:${inbound.port || 0})` : ''}`,
- }))}
- />
- </Form.Item>
- )}
- <div className="test-row">
- <Button type="default" loading={testing} onClick={onTest}>
- {t('pages.nodes.testConnection')}
- </Button>
- {testResult && (
- <div className="test-result">
- {testResult.status === 'online' ? (
- <Alert
- type="success"
- showIcon
- title={t('pages.nodes.connectionOk', { ms: testResult.latencyMs })}
- description={testResult.xrayVersion ? `Xray ${testResult.xrayVersion}` : undefined}
- />
- ) : (
- <Alert
- type="error"
- showIcon
- title={t('pages.nodes.connectionFailed')}
- description={testResult.error}
- />
- )}
- </div>
- )}
- </div>
- </Form>
- </Modal>
- </>
- );
- }
|