| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- import { useEffect, useMemo, useState } from 'react';
- import { useTranslation } from 'react-i18next';
- import { Button, Form, Input, Modal, Select, Space, Tooltip } from 'antd';
- import { PlusOutlined, MinusOutlined, QuestionCircleOutlined } from '@ant-design/icons';
- import { InputAddon } from '@/components/ui';
- import { useInboundOptions } from '@/api/queries/useInboundOptions';
- import { RuleFormSchema, type RuleFormValues } from '@/schemas/xray';
- import { buildRemarkByTag, formatInboundTag } from './helpers';
- export interface RoutingRule {
- type?: string;
- domain?: string | string[];
- ip?: string | string[];
- port?: string;
- sourcePort?: string;
- vlessRoute?: string;
- network?: string;
- sourceIP?: string | string[];
- user?: string | string[];
- inboundTag?: string[];
- protocol?: string[];
- attrs?: Record<string, string>;
- outboundTag?: string;
- balancerTag?: string;
- [key: string]: unknown;
- }
- interface RuleFormModalProps {
- open: boolean;
- rule: RoutingRule | null;
- inboundTags: string[];
- outboundTags: string[];
- balancerTags: string[];
- onClose: () => void;
- onConfirm: (rule: Record<string, unknown>) => void;
- }
- type FormState = RuleFormValues;
- const initialForm = (): FormState => ({
- domain: '',
- ip: '',
- port: '',
- sourcePort: '',
- vlessRoute: '',
- network: '',
- sourceIP: '',
- user: '',
- inboundTag: [],
- protocol: [],
- attrs: [],
- outboundTag: '',
- balancerTag: '',
- });
- const NETWORKS = ['', 'TCP', 'UDP', 'TCP,UDP'];
- const PROTOCOLS = ['http', 'tls', 'bittorrent', 'quic'];
- function csv(value: string): string[] {
- if (!value) return [];
- return value.split(',').map((s) => s.trim()).filter(Boolean);
- }
- export default function RuleFormModal({
- open,
- rule,
- inboundTags,
- outboundTags,
- balancerTags,
- onClose,
- onConfirm,
- }: RuleFormModalProps) {
- const { t } = useTranslation();
- const [form, setForm] = useState<FormState>(initialForm);
- const isEdit = rule != null;
- const { data: inboundOptions } = useInboundOptions();
- const remarkByTag = useMemo(() => buildRemarkByTag(inboundOptions || []), [inboundOptions]);
- useEffect(() => {
- if (!open) return;
- if (rule) {
- setForm({
- domain: Array.isArray(rule.domain) ? rule.domain.join(',') : rule.domain || '',
- ip: Array.isArray(rule.ip) ? rule.ip.join(',') : rule.ip || '',
- port: rule.port || '',
- sourcePort: rule.sourcePort || '',
- vlessRoute: rule.vlessRoute || '',
- network: rule.network || '',
- sourceIP: Array.isArray(rule.sourceIP) ? rule.sourceIP.join(',') : rule.sourceIP || '',
- user: Array.isArray(rule.user) ? rule.user.join(',') : rule.user || '',
- inboundTag: rule.inboundTag || [],
- protocol: rule.protocol || [],
- attrs: rule.attrs ? Object.entries(rule.attrs) : [],
- outboundTag: rule.outboundTag || '',
- balancerTag: rule.balancerTag || '',
- });
- } else {
- setForm(initialForm());
- }
- }, [open, rule]);
- const update = <K extends keyof FormState>(key: K, value: FormState[K]) =>
- setForm((prev) => ({ ...prev, [key]: value }));
- function submit() {
- const validated = RuleFormSchema.safeParse(form);
- if (!validated.success) return;
- const v = validated.data;
- const built: Record<string, unknown> = {
- type: 'field',
- domain: csv(v.domain),
- ip: csv(v.ip),
- port: v.port,
- sourcePort: v.sourcePort,
- vlessRoute: v.vlessRoute,
- network: v.network,
- sourceIP: csv(v.sourceIP),
- user: csv(v.user),
- inboundTag: v.inboundTag,
- protocol: v.protocol,
- attrs: Object.fromEntries(v.attrs.filter(([k]) => k)),
- outboundTag: v.outboundTag === '' ? undefined : v.outboundTag,
- balancerTag: v.balancerTag === '' ? undefined : v.balancerTag,
- };
- const out: Record<string, unknown> = {};
- for (const [k, v] of Object.entries(built)) {
- if (v == null) continue;
- if (Array.isArray(v) && v.length === 0) continue;
- if (typeof v === 'object' && !Array.isArray(v) && Object.keys(v).length === 0) continue;
- if (v === '') continue;
- out[k] = v;
- }
- onConfirm(out);
- }
- const title = isEdit
- ? `${t('edit')} ${t('pages.xray.Routings')}`
- : `+ ${t('pages.xray.Routings')}`;
- const okText = isEdit ? t('pages.clients.submitEdit') : t('create');
- return (
- <Modal
- open={open}
- title={title}
- okText={okText}
- cancelText={t('close')}
- mask={{ closable: false }}
- width={640}
- onOk={submit}
- onCancel={onClose}
- >
- <Form colon={false} labelCol={{ md: { span: 8 } }} wrapperCol={{ md: { span: 14 } }}>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('pages.xray.ruleForm.sourceIps')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.sourceIP} onChange={(e) => update('sourceIP', e.target.value)} placeholder="0.0.0.0/8, fc00::/7, geoip:ir" />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('pages.xray.ruleForm.sourcePort')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.sourcePort} onChange={(e) => update('sourcePort', e.target.value)} placeholder="53,443,1000-2000" />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('pages.xray.ruleForm.vlessRoute')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.vlessRoute} onChange={(e) => update('vlessRoute', e.target.value)} placeholder="53,443,1000-2000" />
- </Form.Item>
- <Form.Item label={t('pages.inbounds.network')}>
- <Select
- value={form.network}
- onChange={(v) => update('network', v)}
- options={NETWORKS.map((n) => ({ value: n, label: n || '(any)' }))}
- />
- </Form.Item>
- <Form.Item label={t('pages.inbounds.protocol')}>
- <Select
- mode="multiple"
- value={form.protocol}
- onChange={(v) => update('protocol', v)}
- options={PROTOCOLS.map((p) => ({ value: p, label: p }))}
- />
- </Form.Item>
- <Form.Item label={t('pages.xray.ruleForm.attributes')}>
- <Button size="small" icon={<PlusOutlined />} onClick={() => update('attrs', [...form.attrs, ['', '']])} />
- </Form.Item>
- <Form.Item wrapperCol={{ span: 24 }}>
- {form.attrs.map((attr, idx) => (
- <Space.Compact key={idx} block className="mb-8">
- <InputAddon>{`${idx + 1}`}</InputAddon>
- <Input
- value={attr[0]}
- placeholder={t('pages.nodes.name')}
- onChange={(e) => {
- const next = form.attrs.map((a, i) => (i === idx ? ([e.target.value, a[1]] as [string, string]) : a));
- update('attrs', next);
- }}
- />
- <Input
- value={attr[1]}
- placeholder={t('pages.xray.ruleForm.value')}
- onChange={(e) => {
- const next = form.attrs.map((a, i) => (i === idx ? ([a[0], e.target.value] as [string, string]) : a));
- update('attrs', next);
- }}
- />
- <Button
- icon={<MinusOutlined />}
- onClick={() => update('attrs', form.attrs.filter((_, i) => i !== idx))}
- />
- </Space.Compact>
- ))}
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- IP <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.ip} onChange={(e) => update('ip', e.target.value)} placeholder="0.0.0.0/8, fc00::/7, geoip:ir" />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('domainName')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.domain} onChange={(e) => update('domain', e.target.value)} placeholder="google.com, geosite:cn" />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('pages.xray.ruleForm.user')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.user} onChange={(e) => update('user', e.target.value)} placeholder="email address" />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.rules.useComma')}>
- {t('pages.inbounds.port')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Input value={form.port} onChange={(e) => update('port', e.target.value)} placeholder="53,443,1000-2000" />
- </Form.Item>
- <Form.Item label={t('pages.xray.ruleForm.inboundTags')}>
- <Select
- mode="multiple"
- value={form.inboundTag}
- onChange={(v) => update('inboundTag', v)}
- options={inboundTags.map((tag) => ({ value: tag, label: formatInboundTag(tag, remarkByTag) }))}
- />
- </Form.Item>
- <Form.Item label={t('pages.xray.ruleForm.outboundTag')}>
- <Select
- value={form.outboundTag}
- onChange={(v) => update('outboundTag', v)}
- options={outboundTags.map((tag) => ({ value: tag, label: tag || '(none)' }))}
- />
- </Form.Item>
- <Form.Item
- label={
- <Tooltip title={t('pages.xray.ruleForm.balancerTagTooltip')}>
- {t('pages.xray.ruleForm.balancerTag')} <QuestionCircleOutlined />
- </Tooltip>
- }
- >
- <Select
- value={form.balancerTag}
- onChange={(v) => update('balancerTag', v)}
- options={balancerTags.map((tag) => ({ value: tag, label: tag || '(none)' }))}
- />
- </Form.Item>
- </Form>
- </Modal>
- );
- }
|