mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-01 02:34:09 +00:00
Outbound reverse tags now appear as inbound options in routing rules (#4199), and inbound-client reverse tags appear as outbounds in the balancer selector (#4187). Both represent virtual endpoints created by xray-core that the dropdowns previously missed.
409 lines
15 KiB
Vue
409 lines
15 KiB
Vue
<script setup>
|
|
import { computed, ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import {
|
|
PlusOutlined,
|
|
MoreOutlined,
|
|
EditOutlined,
|
|
DeleteOutlined,
|
|
ExportOutlined,
|
|
ClusterOutlined,
|
|
ArrowUpOutlined,
|
|
ArrowDownOutlined,
|
|
} from '@ant-design/icons-vue';
|
|
import { Modal } from 'ant-design-vue';
|
|
|
|
import RuleFormModal from './RuleFormModal.vue';
|
|
|
|
const { t } = useI18n();
|
|
|
|
// Routing tab — table over templateSettings.routing.rules with the
|
|
// modernised legacy column layout. Each row is rendered as a single
|
|
// "lead value + N more" pill per criterion (matches the legacy pill
|
|
// layout); full lists surface via tooltip on hover.
|
|
//
|
|
// Reorder uses up/down buttons in the action menu rather than the
|
|
// jQuery-Sortable drag handle the legacy panel used — same effect,
|
|
// no extra dep. The mobile column layout drops source/network/
|
|
// destination criteria for readability.
|
|
|
|
const props = defineProps({
|
|
templateSettings: { type: Object, default: null },
|
|
inboundTags: { type: Array, default: () => [] },
|
|
clientReverseTags: { type: Array, default: () => [] },
|
|
isMobile: { type: Boolean, default: false },
|
|
});
|
|
|
|
// === Table data — match the legacy routingRuleData shape ============
|
|
// Convert array criteria to CSV strings so the pill renderer can
|
|
// split + summarise them without needing a separate path per shape.
|
|
const rows = computed(() => {
|
|
if (!props.templateSettings?.routing?.rules) return [];
|
|
return props.templateSettings.routing.rules.map((rule, idx) => {
|
|
const r = { key: idx, ...rule };
|
|
if (Array.isArray(r.domain)) r.domain = r.domain.join(',');
|
|
if (Array.isArray(r.ip)) r.ip = r.ip.join(',');
|
|
if (Array.isArray(r.source)) r.source = r.source.join(',');
|
|
if (Array.isArray(r.user)) r.user = r.user.join(',');
|
|
if (Array.isArray(r.inboundTag)) r.inboundTag = r.inboundTag.join(',');
|
|
if (Array.isArray(r.protocol)) r.protocol = r.protocol.join(',');
|
|
if (r.attrs && typeof r.attrs === 'object' && !Array.isArray(r.attrs)) {
|
|
r.attrs = JSON.stringify(r.attrs, null, 2);
|
|
}
|
|
return r;
|
|
});
|
|
});
|
|
|
|
function csv(value) {
|
|
if (!value) return [];
|
|
return String(value).split(',').map((s) => s.trim()).filter(Boolean);
|
|
}
|
|
|
|
// === Modal state ====================================================
|
|
const ruleModalOpen = ref(false);
|
|
const editingRule = ref(null);
|
|
const editingIndex = ref(null);
|
|
|
|
const inboundTagOptions = computed(() => {
|
|
const out = new Set();
|
|
for (const ib of props.templateSettings?.inbounds || []) {
|
|
if (ib.tag) out.add(ib.tag);
|
|
}
|
|
for (const t of props.inboundTags || []) out.add(t);
|
|
for (const ob of props.templateSettings?.outbounds || []) {
|
|
const rt = ob?.reverse?.tag || ob?.settings?.reverse?.tag;
|
|
if (rt) out.add(rt);
|
|
}
|
|
// dnsTag if DNS is configured.
|
|
const dt = props.templateSettings?.dns?.tag;
|
|
if (dt) out.add(dt);
|
|
return [...out];
|
|
});
|
|
|
|
const outboundTagOptions = computed(() => {
|
|
const out = new Set(['']);
|
|
for (const ob of props.templateSettings?.outbounds || []) {
|
|
if (ob.tag) out.add(ob.tag);
|
|
}
|
|
for (const t of props.clientReverseTags || []) {
|
|
if (t) out.add(t);
|
|
}
|
|
return [...out];
|
|
});
|
|
|
|
const balancerTagOptions = computed(() => {
|
|
const out = [''];
|
|
for (const b of props.templateSettings?.routing?.balancers || []) {
|
|
if (b.tag) out.push(b.tag);
|
|
}
|
|
return out;
|
|
});
|
|
|
|
function openAdd() {
|
|
editingRule.value = null;
|
|
editingIndex.value = null;
|
|
ruleModalOpen.value = true;
|
|
}
|
|
|
|
function openEdit(idx) {
|
|
editingRule.value = props.templateSettings.routing.rules[idx];
|
|
editingIndex.value = idx;
|
|
ruleModalOpen.value = true;
|
|
}
|
|
|
|
function onRuleConfirm(rule) {
|
|
// Empty submit (e.g. user clears every field) collapses to an
|
|
// object with only `type: "field"`. Match legacy: skip the write
|
|
// when the result is essentially empty.
|
|
if (JSON.stringify(rule).length <= 3) {
|
|
ruleModalOpen.value = false;
|
|
return;
|
|
}
|
|
if (editingIndex.value == null) {
|
|
props.templateSettings.routing.rules.push(rule);
|
|
} else {
|
|
props.templateSettings.routing.rules[editingIndex.value] = rule;
|
|
}
|
|
ruleModalOpen.value = false;
|
|
}
|
|
|
|
function confirmDelete(idx) {
|
|
Modal.confirm({
|
|
title: `${t('delete')} ${t('pages.xray.Routings')} #${idx + 1}?`,
|
|
okText: t('delete'),
|
|
okType: 'danger',
|
|
cancelText: t('cancel'),
|
|
onOk: () => { props.templateSettings.routing.rules.splice(idx, 1); },
|
|
});
|
|
}
|
|
|
|
function moveUp(idx) {
|
|
if (idx <= 0) return;
|
|
const rules = props.templateSettings.routing.rules;
|
|
[rules[idx - 1], rules[idx]] = [rules[idx], rules[idx - 1]];
|
|
}
|
|
function moveDown(idx) {
|
|
const rules = props.templateSettings.routing.rules;
|
|
if (idx >= rules.length - 1) return;
|
|
[rules[idx + 1], rules[idx]] = [rules[idx], rules[idx + 1]];
|
|
}
|
|
|
|
// === Columns =========================================================
|
|
// Computed so titles re-render after a locale swap.
|
|
const desktopColumns = computed(() => [
|
|
{ title: '#', align: 'center', width: 70, key: 'action' },
|
|
{ title: 'Source', align: 'left', width: 180, key: 'source' },
|
|
{ title: t('pages.inbounds.network'), align: 'left', width: 180, key: 'network' },
|
|
{ title: 'Destination', align: 'left', key: 'destination' },
|
|
{ title: t('pages.xray.Inbounds'), align: 'left', width: 180, key: 'inbound' },
|
|
{ title: t('pages.xray.Outbounds'), align: 'left', width: 170, key: 'target' },
|
|
]);
|
|
const mobileColumns = computed(() => [
|
|
{ title: '#', align: 'center', width: 70, key: 'action' },
|
|
{ title: t('pages.xray.Inbounds'), align: 'left', key: 'inbound' },
|
|
{ title: t('pages.xray.Outbounds'), align: 'left', width: 140, key: 'target' },
|
|
]);
|
|
const columns = computed(() => (props.isMobile ? mobileColumns.value : desktopColumns.value));
|
|
</script>
|
|
|
|
<template>
|
|
<a-space direction="vertical" size="middle" :style="{ width: '100%' }">
|
|
<a-button type="primary" @click="openAdd">
|
|
<template #icon><PlusOutlined /></template>
|
|
{{ t('pages.xray.Routings') }}
|
|
</a-button>
|
|
|
|
<a-table
|
|
:columns="columns"
|
|
:data-source="rows"
|
|
:row-key="(r) => r.key"
|
|
:pagination="false"
|
|
:scroll="isMobile ? {} : { x: 1000 }"
|
|
size="small"
|
|
class="routing-table"
|
|
>
|
|
<template #bodyCell="{ column, record, index }">
|
|
<!-- ============== # / actions ============== -->
|
|
<template v-if="column.key === 'action'">
|
|
<div class="action-cell">
|
|
<span class="row-index">{{ index + 1 }}</span>
|
|
<a-dropdown :trigger="['click']">
|
|
<a-button shape="circle" size="small">
|
|
<MoreOutlined />
|
|
</a-button>
|
|
<template #overlay>
|
|
<a-menu>
|
|
<a-menu-item @click="openEdit(index)">
|
|
<EditOutlined /> {{ t('edit') }}
|
|
</a-menu-item>
|
|
<a-menu-item :disabled="index === 0" @click="moveUp(index)">
|
|
<ArrowUpOutlined />
|
|
</a-menu-item>
|
|
<a-menu-item :disabled="index === rows.length - 1" @click="moveDown(index)">
|
|
<ArrowDownOutlined />
|
|
</a-menu-item>
|
|
<a-menu-item class="danger" @click="confirmDelete(index)">
|
|
<DeleteOutlined /> {{ t('delete') }}
|
|
</a-menu-item>
|
|
</a-menu>
|
|
</template>
|
|
</a-dropdown>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- ============== Source ============== -->
|
|
<template v-else-if="column.key === 'source'">
|
|
<div class="criterion-flow">
|
|
<a-tooltip v-if="record.sourceIP" :title="`Source IP: ${record.sourceIP}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">IP</span>
|
|
<span class="criterion-value">{{ csv(record.sourceIP)[0] }}</span>
|
|
<span v-if="csv(record.sourceIP).length > 1" class="criterion-more">+{{ csv(record.sourceIP).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.sourcePort" :title="`Source port: ${record.sourcePort}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Port</span>
|
|
<span class="criterion-value">{{ csv(record.sourcePort)[0] }}</span>
|
|
<span v-if="csv(record.sourcePort).length > 1" class="criterion-more">+{{ csv(record.sourcePort).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.vlessRoute" :title="`VLESS route: ${record.vlessRoute}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">VLESS</span>
|
|
<span class="criterion-value">{{ csv(record.vlessRoute)[0] }}</span>
|
|
<span v-if="csv(record.vlessRoute).length > 1" class="criterion-more">+{{ csv(record.vlessRoute).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<span v-if="!record.sourceIP && !record.sourcePort && !record.vlessRoute" class="criterion-empty">—</span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- ============== Network ============== -->
|
|
<template v-else-if="column.key === 'network'">
|
|
<div class="criterion-flow">
|
|
<a-tooltip v-if="record.network" :title="`L4: ${record.network}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">L4</span>
|
|
<span class="criterion-value">{{ csv(record.network)[0] }}</span>
|
|
<span v-if="csv(record.network).length > 1" class="criterion-more">+{{ csv(record.network).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.protocol" :title="`Protocol: ${record.protocol}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Protocol</span>
|
|
<span class="criterion-value">{{ csv(record.protocol)[0] }}</span>
|
|
<span v-if="csv(record.protocol).length > 1" class="criterion-more">+{{ csv(record.protocol).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.attrs" :title="`Attrs: ${record.attrs}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Attrs</span>
|
|
<span class="criterion-value">{{ csv(record.attrs)[0] }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<span v-if="!record.network && !record.protocol && !record.attrs" class="criterion-empty">—</span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- ============== Destination ============== -->
|
|
<template v-else-if="column.key === 'destination'">
|
|
<div class="criterion-flow">
|
|
<a-tooltip v-if="record.ip" :title="`Destination IP: ${record.ip}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">IP</span>
|
|
<span class="criterion-value">{{ csv(record.ip)[0] }}</span>
|
|
<span v-if="csv(record.ip).length > 1" class="criterion-more">+{{ csv(record.ip).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.domain" :title="`Domain: ${record.domain}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Domain</span>
|
|
<span class="criterion-value">{{ csv(record.domain)[0] }}</span>
|
|
<span v-if="csv(record.domain).length > 1" class="criterion-more">+{{ csv(record.domain).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.port" :title="`Destination port: ${record.port}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Port</span>
|
|
<span class="criterion-value">{{ csv(record.port)[0] }}</span>
|
|
<span v-if="csv(record.port).length > 1" class="criterion-more">+{{ csv(record.port).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<span v-if="!record.ip && !record.domain && !record.port" class="criterion-empty">—</span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- ============== Inbound ============== -->
|
|
<template v-else-if="column.key === 'inbound'">
|
|
<div class="criterion-flow">
|
|
<a-tooltip v-if="record.inboundTag" :title="`Inbound tag: ${record.inboundTag}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">Tag</span>
|
|
<span class="criterion-value">{{ csv(record.inboundTag)[0] }}</span>
|
|
<span v-if="csv(record.inboundTag).length > 1" class="criterion-more">+{{ csv(record.inboundTag).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-if="record.user" :title="`User: ${record.user}`">
|
|
<span class="criterion-row">
|
|
<span class="criterion-label">User</span>
|
|
<span class="criterion-value">{{ csv(record.user)[0] }}</span>
|
|
<span v-if="csv(record.user).length > 1" class="criterion-more">+{{ csv(record.user).length - 1 }}</span>
|
|
</span>
|
|
</a-tooltip>
|
|
<span v-if="!record.inboundTag && !record.user" class="criterion-empty">—</span>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- ============== Outbound / balancer target ============== -->
|
|
<template v-else-if="column.key === 'target'">
|
|
<div class="target-cell">
|
|
<div v-if="record.outboundTag" class="target-row">
|
|
<ExportOutlined class="target-icon" />
|
|
<a-tag color="green">{{ record.outboundTag }}</a-tag>
|
|
</div>
|
|
<div v-if="record.balancerTag" class="target-row">
|
|
<ClusterOutlined class="target-icon" />
|
|
<a-tag color="purple">{{ record.balancerTag }}</a-tag>
|
|
</div>
|
|
<span v-if="!record.outboundTag && !record.balancerTag" class="criterion-empty">—</span>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
|
|
<RuleFormModal
|
|
v-model:open="ruleModalOpen"
|
|
:rule="editingRule"
|
|
:inbound-tags="inboundTagOptions"
|
|
:outbound-tags="outboundTagOptions"
|
|
:balancer-tags="balancerTagOptions"
|
|
@confirm="onRuleConfirm"
|
|
/>
|
|
</a-space>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.action-cell {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
.row-index {
|
|
font-weight: 500;
|
|
opacity: 0.7;
|
|
min-width: 18px;
|
|
text-align: right;
|
|
}
|
|
|
|
.criterion-flow {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
font-size: 12px;
|
|
}
|
|
.criterion-row {
|
|
display: inline-flex;
|
|
align-items: baseline;
|
|
gap: 4px;
|
|
white-space: nowrap;
|
|
}
|
|
.criterion-label {
|
|
font-size: 10px;
|
|
text-transform: uppercase;
|
|
opacity: 0.55;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
.criterion-value {
|
|
font-weight: 500;
|
|
}
|
|
.criterion-more {
|
|
font-size: 11px;
|
|
padding: 0 5px;
|
|
border-radius: 8px;
|
|
background: rgba(0, 0, 0, 0.06);
|
|
}
|
|
:global(body.dark) .criterion-more {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
.criterion-empty {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.target-cell {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
.target-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
.target-icon {
|
|
font-size: 12px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.danger { color: #ff4d4f; }
|
|
</style>
|