mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.2 KiB
81 lines
2.2 KiB
<template>
|
|
<main v-if="data">
|
|
<FormElement @submit.prevent="submit">
|
|
<FormGroup>
|
|
<FormHeading>{{ $t('admin.config.connection') }}</FormHeading>
|
|
<FormTextField
|
|
id="host"
|
|
v-model="data.host"
|
|
:label="$t('general.host')"
|
|
:description="$t('admin.config.hostDesc')"
|
|
/>
|
|
<FormNumberField
|
|
id="port"
|
|
v-model="data.port"
|
|
:label="$t('general.port')"
|
|
:description="$t('admin.config.portDesc')"
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<FormHeading :description="$t('admin.config.allowedIpsDesc')">{{
|
|
$t('general.allowedIps')
|
|
}}</FormHeading>
|
|
<FormArrayField
|
|
v-model="data.defaultAllowedIps"
|
|
name="defaultAllowedIps"
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<FormHeading :description="$t('admin.config.dnsDesc')">{{
|
|
$t('general.dns')
|
|
}}</FormHeading>
|
|
<FormArrayField v-model="data.defaultDns" name="defaultDns" />
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<FormHeading>{{ $t('form.sectionAdvanced') }}</FormHeading>
|
|
<FormNumberField
|
|
id="defaultMtu"
|
|
v-model="data.defaultMtu"
|
|
:label="$t('general.mtu')"
|
|
:description="$t('admin.config.mtuDesc')"
|
|
/>
|
|
<FormNumberField
|
|
id="defaultPersistentKeepalive"
|
|
v-model="data.defaultPersistentKeepalive"
|
|
:label="$t('general.persistentKeepalive')"
|
|
:description="$t('admin.config.persistentKeepaliveDesc')"
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup>
|
|
<FormHeading>{{ $t('form.actions') }}</FormHeading>
|
|
<FormActionField type="submit" :label="$t('form.save')" />
|
|
<FormActionField :label="$t('form.revert')" @click="revert" />
|
|
</FormGroup>
|
|
</FormElement>
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { data: _data, refresh } = await useFetch(`/api/admin/userconfig`, {
|
|
method: 'get',
|
|
});
|
|
|
|
const data = toRef(_data.value);
|
|
|
|
const _submit = useSubmit(
|
|
`/api/admin/userconfig`,
|
|
{
|
|
method: 'post',
|
|
},
|
|
{ revert }
|
|
);
|
|
|
|
function submit() {
|
|
return _submit(data.value);
|
|
}
|
|
|
|
async function revert() {
|
|
await refresh();
|
|
data.value = toRef(_data.value).value;
|
|
}
|
|
</script>
|
|
|