- 使用 BaseDialog 替代旧版 Modal 组件 - 添加平滑过渡动画和更好的可访问性支持 - 新增 ExportProgressDialog 导出进度弹窗 - 优化所有账号管理和使用记录相关弹窗 - 更新国际化文案,改进用户交互体验 - 精简依赖,减少 package.json 体积
190 lines
5.5 KiB
Vue
190 lines
5.5 KiB
Vue
<template>
|
||
<BaseDialog
|
||
:show="show"
|
||
:title="t('admin.accounts.syncFromCrsTitle')"
|
||
width="normal"
|
||
close-on-click-outside
|
||
@close="handleClose"
|
||
>
|
||
<form id="sync-from-crs-form" class="space-y-4" @submit.prevent="handleSync">
|
||
<div class="text-sm text-gray-600 dark:text-dark-300">
|
||
{{ t('admin.accounts.syncFromCrsDesc') }}
|
||
</div>
|
||
<div
|
||
class="rounded-lg bg-gray-50 p-3 text-xs text-gray-500 dark:bg-dark-700/60 dark:text-dark-400"
|
||
>
|
||
已有账号仅同步 CRS
|
||
返回的字段,缺失字段保持原值;凭据按键合并,不会清空未下发的键;未勾选"同步代理"时保留原有代理。
|
||
</div>
|
||
<div
|
||
class="rounded-lg border border-amber-200 bg-amber-50 p-3 text-xs text-amber-600 dark:border-amber-800 dark:bg-amber-900/20 dark:text-amber-400"
|
||
>
|
||
{{ t('admin.accounts.crsVersionRequirement') }}
|
||
</div>
|
||
|
||
<div class="grid grid-cols-1 gap-4">
|
||
<div>
|
||
<label class="input-label">{{ t('admin.accounts.crsBaseUrl') }}</label>
|
||
<input
|
||
v-model="form.base_url"
|
||
type="text"
|
||
class="input"
|
||
:placeholder="t('admin.accounts.crsBaseUrlPlaceholder')"
|
||
/>
|
||
</div>
|
||
|
||
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
||
<div>
|
||
<label class="input-label">{{ t('admin.accounts.crsUsername') }}</label>
|
||
<input v-model="form.username" type="text" class="input" autocomplete="username" />
|
||
</div>
|
||
<div>
|
||
<label class="input-label">{{ t('admin.accounts.crsPassword') }}</label>
|
||
<input
|
||
v-model="form.password"
|
||
type="password"
|
||
class="input"
|
||
autocomplete="current-password"
|
||
/>
|
||
</div>
|
||
</div>
|
||
|
||
<label class="flex items-center gap-2 text-sm text-gray-700 dark:text-dark-300">
|
||
<input
|
||
v-model="form.sync_proxies"
|
||
type="checkbox"
|
||
class="rounded border-gray-300 dark:border-dark-600"
|
||
/>
|
||
{{ t('admin.accounts.syncProxies') }}
|
||
</label>
|
||
</div>
|
||
|
||
<div
|
||
v-if="result"
|
||
class="space-y-2 rounded-xl border border-gray-200 p-4 dark:border-dark-700"
|
||
>
|
||
<div class="text-sm font-medium text-gray-900 dark:text-white">
|
||
{{ t('admin.accounts.syncResult') }}
|
||
</div>
|
||
<div class="text-sm text-gray-700 dark:text-dark-300">
|
||
{{ t('admin.accounts.syncResultSummary', result) }}
|
||
</div>
|
||
|
||
<div v-if="errorItems.length" class="mt-2">
|
||
<div class="text-sm font-medium text-red-600 dark:text-red-400">
|
||
{{ t('admin.accounts.syncErrors') }}
|
||
</div>
|
||
<div
|
||
class="mt-2 max-h-48 overflow-auto rounded-lg bg-gray-50 p-3 font-mono text-xs dark:bg-dark-800"
|
||
>
|
||
<div v-for="(item, idx) in errorItems" :key="idx" class="whitespace-pre-wrap">
|
||
{{ item.kind }} {{ item.crs_account_id }} — {{ item.action
|
||
}}{{ item.error ? `: ${item.error}` : '' }}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
|
||
<template #footer>
|
||
<div class="flex justify-end gap-3">
|
||
<button class="btn btn-secondary" type="button" :disabled="syncing" @click="handleClose">
|
||
{{ t('common.cancel') }}
|
||
</button>
|
||
<button
|
||
class="btn btn-primary"
|
||
type="submit"
|
||
form="sync-from-crs-form"
|
||
:disabled="syncing"
|
||
>
|
||
{{ syncing ? t('admin.accounts.syncing') : t('admin.accounts.syncNow') }}
|
||
</button>
|
||
</div>
|
||
</template>
|
||
</BaseDialog>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { computed, reactive, ref, watch } from 'vue'
|
||
import { useI18n } from 'vue-i18n'
|
||
import BaseDialog from '@/components/common/BaseDialog.vue'
|
||
import { useAppStore } from '@/stores/app'
|
||
import { adminAPI } from '@/api/admin'
|
||
|
||
interface Props {
|
||
show: boolean
|
||
}
|
||
|
||
interface Emits {
|
||
(e: 'close'): void
|
||
(e: 'synced'): void
|
||
}
|
||
|
||
const props = defineProps<Props>()
|
||
const emit = defineEmits<Emits>()
|
||
|
||
const { t } = useI18n()
|
||
const appStore = useAppStore()
|
||
|
||
const syncing = ref(false)
|
||
const result = ref<Awaited<ReturnType<typeof adminAPI.accounts.syncFromCrs>> | null>(null)
|
||
|
||
const form = reactive({
|
||
base_url: '',
|
||
username: '',
|
||
password: '',
|
||
sync_proxies: true
|
||
})
|
||
|
||
const errorItems = computed(() => {
|
||
if (!result.value?.items) return []
|
||
return result.value.items.filter((i) => i.action === 'failed' || i.action === 'skipped')
|
||
})
|
||
|
||
watch(
|
||
() => props.show,
|
||
(open) => {
|
||
if (open) {
|
||
result.value = null
|
||
}
|
||
}
|
||
)
|
||
|
||
const handleClose = () => {
|
||
// 防止在同步进行中关闭对话框
|
||
if (syncing.value) {
|
||
return
|
||
}
|
||
emit('close')
|
||
}
|
||
|
||
const handleSync = async () => {
|
||
if (!form.base_url.trim() || !form.username.trim() || !form.password.trim()) {
|
||
appStore.showError(t('admin.accounts.syncMissingFields'))
|
||
return
|
||
}
|
||
|
||
syncing.value = true
|
||
try {
|
||
const res = await adminAPI.accounts.syncFromCrs({
|
||
base_url: form.base_url.trim(),
|
||
username: form.username.trim(),
|
||
password: form.password,
|
||
sync_proxies: form.sync_proxies
|
||
})
|
||
result.value = res
|
||
|
||
if (res.failed > 0) {
|
||
appStore.showError(t('admin.accounts.syncCompletedWithErrors', res))
|
||
} else {
|
||
appStore.showSuccess(t('admin.accounts.syncCompleted', res))
|
||
emit('synced')
|
||
}
|
||
} catch (error: any) {
|
||
appStore.showError(error?.message || t('admin.accounts.syncFailed'))
|
||
} finally {
|
||
syncing.value = false
|
||
}
|
||
}
|
||
</script>
|