| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- import { useEffect, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import dayjs from 'dayjs';
- import {
- Checkbox,
- Form,
- Input,
- InputNumber,
- Modal,
- Select,
- Switch,
- Tabs,
- Tooltip,
- message,
- } from 'antd';
- import { HttpUtil, NumberFormatter, RandomUtil, SizeFormatter } from '@/utils';
- import {
- rawInboundToFormValues,
- formValuesToWirePayload,
- } from '@/lib/xray/inbound-form-adapter';
- import { createDefaultInboundSettings } from '@/lib/xray/inbound-defaults';
- import {
- InboundFormBaseSchema,
- InboundFormSchema,
- type InboundFormValues,
- } from '@/schemas/forms/inbound-form';
- import { antdRule } from '@/utils/zodForm';
- import { Protocols, SNIFFING_OPTION } from '@/schemas/primitives';
- import DateTimePicker from '@/components/DateTimePicker';
- import type { DBInbound } from '@/models/dbinbound';
- import type { NodeRecord } from '@/api/queries/useNodesQuery';
- // Pattern A rewrite of InboundFormModal. Built as a sibling file so the
- // build stays green while the rewrite progresses section by section.
- // InboundsPage continues to render the old InboundFormModal.tsx until the
- // atomic swap at the end (Core Decision 7).
- const PROTOCOL_OPTIONS = Object.values(Protocols).map((p) => ({ value: p, label: p }));
- const TRAFFIC_RESETS = ['never', 'hourly', 'daily', 'weekly', 'monthly'] as const;
- const NODE_ELIGIBLE_PROTOCOLS = new Set<string>([
- Protocols.VLESS,
- Protocols.VMESS,
- Protocols.TROJAN,
- Protocols.SHADOWSOCKS,
- Protocols.HYSTERIA,
- Protocols.WIREGUARD,
- ]);
- interface InboundFormModalProps {
- open: boolean;
- onClose: () => void;
- onSaved: () => void;
- mode: 'add' | 'edit';
- dbInbound: DBInbound | null;
- dbInbounds: DBInbound[];
- availableNodes?: NodeRecord[];
- }
- function buildAddModeValues(): InboundFormValues {
- const settings = createDefaultInboundSettings('vless') ?? undefined;
- return rawInboundToFormValues({
- protocol: 'vless',
- settings,
- streamSettings: { network: 'tcp', security: 'none' },
- sniffing: {},
- port: RandomUtil.randomInteger(10000, 60000),
- listen: '',
- tag: '',
- enable: true,
- trafficReset: 'never',
- });
- }
- export default function InboundFormModalNew({
- open,
- onClose,
- onSaved,
- mode,
- dbInbound,
- availableNodes,
- }: InboundFormModalProps) {
- const { t } = useTranslation();
- const [messageApi, messageContextHolder] = message.useMessage();
- const [form] = Form.useForm<InboundFormValues>();
- const [saving, setSaving] = useState(false);
- const selectableNodes = (availableNodes || []).filter((n) => n.enable);
- const protocol = Form.useWatch('protocol', form) ?? '';
- const isNodeEligible = NODE_ELIGIBLE_PROTOCOLS.has(protocol);
- const sniffingEnabled = Form.useWatch(['sniffing', 'enabled'], form) ?? false;
- useEffect(() => {
- if (!open) return;
- const initial = mode === 'edit' && dbInbound
- ? rawInboundToFormValues(dbInbound)
- : buildAddModeValues();
- form.resetFields();
- form.setFieldsValue(initial);
- }, [open, mode, dbInbound, form]);
- // Why: protocol picker reset cascades through the form — clearing the
- // settings DU branch and dropping a nodeId that no longer applies. The
- // legacy modal did this imperatively in onProtocolChange; here we hook
- // into AntD's onValuesChange and let setFieldValue keep the rest of
- // the form state intact.
- const onValuesChange = (changed: Partial<InboundFormValues>) => {
- if (mode === 'edit') return;
- if ('protocol' in changed && typeof changed.protocol === 'string') {
- const next = changed.protocol;
- const settings = createDefaultInboundSettings(next) ?? undefined;
- form.setFieldValue('settings', settings);
- if (!NODE_ELIGIBLE_PROTOCOLS.has(next)) {
- form.setFieldValue('nodeId', null);
- }
- }
- };
- const submit = async () => {
- let values: InboundFormValues;
- try {
- values = await form.validateFields();
- } catch {
- return;
- }
- const parsed = InboundFormSchema.safeParse(values);
- if (!parsed.success) {
- const issue = parsed.error.issues[0];
- messageApi.error(
- t(issue?.message ?? 'somethingWentWrong', {
- defaultValue: issue?.message ?? 'invalid',
- }),
- );
- return;
- }
- setSaving(true);
- try {
- const payload = formValuesToWirePayload(parsed.data);
- const url = mode === 'edit' && dbInbound
- ? `/panel/api/inbounds/update/${dbInbound.id}`
- : '/panel/api/inbounds/add';
- const msg = await HttpUtil.post(url, payload);
- if (msg?.success) {
- onSaved();
- onClose();
- }
- } finally {
- setSaving(false);
- }
- };
- const title = mode === 'edit'
- ? t('pages.inbounds.modifyInbound')
- : t('pages.inbounds.addInbound');
- const okText = mode === 'edit'
- ? t('pages.clients.submitEdit')
- : t('create');
- const basicTab = (
- <>
- <Form.Item name="enable" label={t('enable')} valuePropName="checked">
- <Switch />
- </Form.Item>
- <Form.Item name="remark" label={t('pages.inbounds.remark')}>
- <Input />
- </Form.Item>
- {selectableNodes.length > 0 && isNodeEligible && (
- <Form.Item name="nodeId" label={t('pages.inbounds.deployTo')}>
- <Select
- disabled={mode === 'edit'}
- placeholder={t('pages.inbounds.localPanel')}
- allowClear
- >
- <Select.Option value={null}>{t('pages.inbounds.localPanel')}</Select.Option>
- {selectableNodes.map((n) => (
- <Select.Option
- key={n.id}
- value={n.id}
- disabled={n.status === 'offline'}
- >
- {n.name}{n.status === 'offline' ? ' (offline)' : ''}
- </Select.Option>
- ))}
- </Select>
- </Form.Item>
- )}
- <Form.Item name="protocol" label={t('pages.inbounds.protocol')}>
- <Select disabled={mode === 'edit'} options={PROTOCOL_OPTIONS} />
- </Form.Item>
- <Form.Item name="listen" label={t('pages.inbounds.address')}>
- <Input placeholder={t('pages.inbounds.monitorDesc')} />
- </Form.Item>
- <Form.Item
- name="port"
- label={t('pages.inbounds.port')}
- rules={[antdRule(InboundFormBaseSchema.shape.port, t)]}
- >
- <InputNumber min={1} max={65535} />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.inbounds.meansNoLimit')}>
- {t('pages.inbounds.totalFlow')}
- </Tooltip>
- }
- >
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) => prev.total !== curr.total}
- >
- {({ getFieldValue, setFieldValue }) => {
- const totalBytes = (getFieldValue('total') as number) ?? 0;
- const totalGB = totalBytes
- ? Math.round((totalBytes / SizeFormatter.ONE_GB) * 100) / 100
- : 0;
- return (
- <InputNumber
- value={totalGB}
- min={0}
- step={1}
- onChange={(v) => {
- const bytes = NumberFormatter.toFixed(
- (Number(v) || 0) * SizeFormatter.ONE_GB,
- 0,
- );
- setFieldValue('total', bytes);
- }}
- />
- );
- }}
- </Form.Item>
- </Form.Item>
- <Form.Item name="trafficReset" label={t('pages.inbounds.periodicTrafficResetTitle')}>
- <Select>
- {TRAFFIC_RESETS.map((r) => (
- <Select.Option key={r} value={r}>
- {t(`pages.inbounds.periodicTrafficReset.${r}`)}
- </Select.Option>
- ))}
- </Select>
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.inbounds.leaveBlankToNeverExpire')}>
- {t('pages.inbounds.expireDate')}
- </Tooltip>
- }
- >
- <Form.Item
- noStyle
- shouldUpdate={(prev, curr) => prev.expiryTime !== curr.expiryTime}
- >
- {({ getFieldValue, setFieldValue }) => {
- const expiry = (getFieldValue('expiryTime') as number) ?? 0;
- return (
- <DateTimePicker
- value={expiry > 0 ? dayjs(expiry) : null}
- onChange={(d) => setFieldValue('expiryTime', d ? d.valueOf() : 0)}
- />
- );
- }}
- </Form.Item>
- </Form.Item>
- </>
- );
- const sniffingTab = (
- <>
- <Form.Item name={['sniffing', 'enabled']} label={t('enable')} valuePropName="checked">
- <Switch />
- </Form.Item>
- {sniffingEnabled && (
- <>
- <Form.Item name={['sniffing', 'destOverride']} wrapperCol={{ span: 24 }}>
- <Checkbox.Group>
- {Object.entries(SNIFFING_OPTION).map(([key, value]) => (
- <Checkbox key={key} value={value}>{key}</Checkbox>
- ))}
- </Checkbox.Group>
- </Form.Item>
- <Form.Item
- name={['sniffing', 'metadataOnly']}
- label={t('pages.inbounds.sniffingMetadataOnly')}
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'routeOnly']}
- label={t('pages.inbounds.sniffingRouteOnly')}
- valuePropName="checked"
- >
- <Switch />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'ipsExcluded']}
- label={t('pages.inbounds.sniffingIpsExcluded')}
- >
- <Select
- mode="tags"
- tokenSeparators={[',']}
- placeholder="IP/CIDR/geoip:*/ext:*"
- style={{ width: '100%' }}
- />
- </Form.Item>
- <Form.Item
- name={['sniffing', 'domainsExcluded']}
- label={t('pages.inbounds.sniffingDomainsExcluded')}
- >
- <Select
- mode="tags"
- tokenSeparators={[',']}
- placeholder="domain:*/ext:*"
- style={{ width: '100%' }}
- />
- </Form.Item>
- </>
- )}
- </>
- );
- return (
- <>
- {messageContextHolder}
- <Modal
- open={open}
- title={title}
- okText={okText}
- cancelText={t('close')}
- confirmLoading={saving}
- mask={{ closable: false }}
- width={780}
- onOk={submit}
- onCancel={onClose}
- destroyOnHidden
- >
- <Form
- form={form}
- colon={false}
- labelCol={{ sm: { span: 8 } }}
- wrapperCol={{ sm: { span: 14 } }}
- onValuesChange={onValuesChange}
- >
- <Tabs items={[
- { key: 'basic', label: t('pages.xray.basicTemplate'), children: basicTab },
- { key: 'sniffing', label: t('pages.inbounds.sniffingTab'), children: sniffingTab },
- ]} />
- </Form>
- </Modal>
- </>
- );
- }
|