Spaces:
Runtime error
Runtime error
<script setup lang='ts'> | |
import { onMounted, ref } from 'vue' | |
import { NButton, NInput, NSpin, NSwitch, useMessage } from 'naive-ui' | |
import type { ConfigState, MailConfig } from './model' | |
import { fetchChatConfig, fetchTestMail, fetchUpdateMail } from '@/api' | |
import { t } from '@/locales' | |
const ms = useMessage() | |
const loading = ref(false) | |
const saving = ref(false) | |
const testing = ref(false) | |
const config = ref<MailConfig>() | |
async function fetchConfig() { | |
try { | |
loading.value = true | |
const { data } = await fetchChatConfig<ConfigState>() | |
config.value = data.mailConfig | |
} | |
finally { | |
loading.value = false | |
} | |
} | |
async function updateMailInfo() { | |
saving.value = true | |
try { | |
const { data } = await fetchUpdateMail(config.value as MailConfig) | |
config.value = data | |
ms.success(t('common.success')) | |
} | |
catch (error: any) { | |
ms.error(error.message) | |
} | |
saving.value = false | |
} | |
async function testMail() { | |
testing.value = true | |
try { | |
const { message } = await fetchTestMail(config.value as MailConfig) as { status: string; message: string } | |
ms.success(message) | |
} | |
catch (error: any) { | |
ms.error(error.message) | |
} | |
testing.value = false | |
} | |
onMounted(() => { | |
fetchConfig() | |
}) | |
</script> | |
<template> | |
<NSpin :show="loading"> | |
<div class="p-4 space-y-5 min-h-[200px]"> | |
<div class="space-y-6"> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.smtpHost') }}</span> | |
<div class="flex-1"> | |
<NInput | |
:value="config && config.smtpHost" placeholder="" | |
@input="(val) => { if (config) config.smtpHost = val }" | |
/> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.smtpPort') }}</span> | |
<div class="flex-1"> | |
<NInput | |
:value="config && config.smtpPort !== undefined ? String(config.smtpPort) : undefined" | |
placeholder="" | |
@input="(val) => { if (config) config.smtpPort = typeof val === 'string' ? Number(val) : undefined }" | |
/> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.smtpTsl') }}</span> | |
<div class="flex-1"> | |
<NSwitch | |
:round="false" | |
:value="config && config.smtpTsl" | |
@update:value="(val) => { if (config) config.smtpTsl = val }" | |
/> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.smtpUserName') }}</span> | |
<div class="flex-1"> | |
<NInput | |
:value="config && config.smtpUserName" placeholder="" | |
@input="(val) => { if (config) config.smtpUserName = val }" | |
/> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]">{{ $t('setting.smtpPassword') }}</span> | |
<div class="flex-1"> | |
<NInput | |
:value="config && config.smtpPassword" placeholder="" | |
@input="(val) => { if (config) config.smtpPassword = val }" | |
/> | |
</div> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<span class="flex-shrink-0 w-[100px]" /> | |
<div class="flex flex-wrap items-center gap-4"> | |
<NButton :loading="saving" type="primary" @click="updateMailInfo()"> | |
{{ $t('common.save') }} | |
</NButton> | |
<NButton :loading="testing" type="info" @click="testMail()"> | |
{{ $t('common.test') }} | |
</NButton> | |
</div> | |
</div> | |
</div> | |
</div> | |
</NSpin> | |
</template> | |