| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <script setup>
- import { computed, reactive, ref, watch } from 'vue';
- import { useI18n } from 'vue-i18n';
- const { t } = useI18n();
- // Balancer add/edit modal — mirrors xray_balancer_modal.html.
- // Tag must be unique across other balancers; selector is a tag-mode
- // list constrained to existing outbound tags (but lets users type
- // new ones for forward-references).
- const props = defineProps({
- open: { type: Boolean, default: false },
- balancer: { type: Object, default: null },
- outboundTags: { type: Array, default: () => [] },
- // All other balancer tags (excludes the one currently being edited)
- // — used for the duplicate-tag check.
- otherTags: { type: Array, default: () => [] },
- });
- const emit = defineEmits(['update:open', 'confirm']);
- const STRATEGIES = [
- { value: 'random', label: 'Random' },
- { value: 'roundRobin', label: 'Round robin' },
- { value: 'leastLoad', label: 'Least load' },
- { value: 'leastPing', label: 'Least ping' },
- ];
- const form = reactive({
- tag: '',
- strategy: 'random',
- selector: [],
- fallbackTag: '',
- });
- const isEdit = ref(false);
- watch(() => props.open, (next) => {
- if (!next) return;
- if (props.balancer) {
- isEdit.value = true;
- form.tag = props.balancer.tag || '';
- form.strategy = props.balancer.strategy || 'random';
- form.selector = [...(props.balancer.selector || [])];
- form.fallbackTag = props.balancer.fallbackTag || '';
- } else {
- isEdit.value = false;
- form.tag = '';
- form.strategy = 'random';
- form.selector = [];
- form.fallbackTag = '';
- }
- });
- const tagEmpty = computed(() => !form.tag?.trim());
- const duplicateTag = computed(
- () => !!form.tag && props.otherTags.includes(form.tag.trim()),
- );
- const emptySelector = computed(() => form.selector.length === 0);
- const isValid = computed(
- () => !tagEmpty.value && !duplicateTag.value && !emptySelector.value,
- );
- const tagValidateStatus = computed(() => {
- if (tagEmpty.value) return 'error';
- if (duplicateTag.value) return 'warning';
- return 'success';
- });
- const tagHelp = computed(() => {
- if (tagEmpty.value) return 'Tag is required';
- if (duplicateTag.value) return 'Tag already used by another balancer';
- return '';
- });
- const selectorValidateStatus = computed(() => (emptySelector.value ? 'error' : 'success'));
- const selectorHelp = computed(() => (emptySelector.value ? 'Pick at least one outbound' : ''));
- function close() { emit('update:open', false); }
- function onOk() {
- if (!isValid.value) return;
- emit('confirm', { ...form });
- }
- const title = computed(() =>
- isEdit.value
- ? `${t('edit')} ${t('pages.xray.Balancers')}`
- : `+ ${t('pages.xray.Balancers')}`,
- );
- const okText = computed(() =>
- isEdit.value ? t('pages.client.submitEdit') : t('create'),
- );
- </script>
- <template>
- <a-modal :open="open" :title="title" :ok-text="okText" :cancel-text="t('close')"
- :ok-button-props="{ disabled: !isValid }" :mask-closable="false" @ok="onOk" @cancel="close">
- <a-form :colon="false" :label-col="{ md: { span: 8 } }" :wrapper-col="{ md: { span: 14 } }">
- <a-form-item label="Tag" :validate-status="tagValidateStatus" :help="tagHelp" has-feedback>
- <a-input v-model:value="form.tag" placeholder="unique balancer tag" />
- </a-form-item>
- <a-form-item label="Strategy">
- <a-select v-model:value="form.strategy">
- <a-select-option v-for="s in STRATEGIES" :key="s.value" :value="s.value">{{ s.label }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Selector" :validate-status="selectorValidateStatus" :help="selectorHelp" has-feedback>
- <a-select v-model:value="form.selector" mode="tags" :token-separators="[',']">
- <a-select-option v-for="tag in outboundTags" :key="tag" :value="tag">{{ tag }}</a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="Fallback">
- <a-select v-model:value="form.fallbackTag" allow-clear>
- <a-select-option v-for="tag in ['', ...outboundTags]" :key="tag || '__empty'" :value="tag">
- {{ tag || `(${t('none')})` }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-form>
- </a-modal>
- </template>
|