feat(admin): 添加 S3 备份列表查看、下载和删除功能
- 在数据管理页面添加“查看备份”按钮,用于打开备份列表弹窗 - 新增 S3BackupModal 组件,展示备份文件列表,支持下载和删除操作 - 扩展 S3 工具类,支持列出、获取和删除 S3 对象 - 新增后端 API 接口:获取备份列表、删除备份、下载备份文件 - 为所有支持的语言添加相应的国际化文本
This commit is contained in:
314
cwd-admin/src/views/DataView/components/S3BackupModal.vue
Normal file
314
cwd-admin/src/views/DataView/components/S3BackupModal.vue
Normal file
@@ -0,0 +1,314 @@
|
||||
<template>
|
||||
<div v-if="visible" class="modal-overlay" @click.self="handleClose">
|
||||
<div class="modal s3-backup-modal">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title">{{ t("data.sections.s3.backupListTitle") }}</h3>
|
||||
<button class="modal-close" @click="handleClose">×</button>
|
||||
</div>
|
||||
<div class="modal-content">
|
||||
<div v-if="loading" class="loading">
|
||||
<div class="loading-spinner"></div>
|
||||
<div class="loading-text">{{ t("data.sections.s3.loadingBackups") }}</div>
|
||||
</div>
|
||||
<div v-else-if="backups.length === 0" class="empty-backup-list">
|
||||
{{ t("data.sections.s3.emptyBackupList") }}
|
||||
</div>
|
||||
<div v-else class="backup-list">
|
||||
<div v-for="item in backups" :key="item.key" class="backup-item">
|
||||
<div class="backup-info">
|
||||
<div class="backup-name" :title="item.key">{{ item.key }}</div>
|
||||
<div class="backup-meta">
|
||||
<span class="backup-size">{{ formatFileSize(item.size) }}</span>
|
||||
<span class="backup-date">{{ new Date(item.lastModified).toLocaleString() }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="backup-actions">
|
||||
<button
|
||||
class="backup-btn download"
|
||||
@click="handleDownload(item.key)"
|
||||
:title="t('data.sections.s3.download')"
|
||||
>
|
||||
<svg viewBox="0 0 24 24" width="16" height="16">
|
||||
<path fill="currentColor" d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/>
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
class="backup-btn delete"
|
||||
@click="handleDelete(item.key)"
|
||||
:disabled="deletingKey === item.key"
|
||||
:title="t('data.sections.s3.delete')"
|
||||
>
|
||||
<svg v-if="deletingKey !== item.key" viewBox="0 0 24 24" width="16" height="16">
|
||||
<path fill="currentColor" d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/>
|
||||
</svg>
|
||||
<span v-else class="loading-spinner small"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, computed, watch, onMounted } from "vue";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import {
|
||||
fetchS3BackupList,
|
||||
deleteS3Backup,
|
||||
downloadS3BackupUrl,
|
||||
S3BackupItem,
|
||||
} from "../../../api/admin";
|
||||
|
||||
const props = defineProps<{
|
||||
visible: boolean;
|
||||
onClose?: () => void;
|
||||
}>();
|
||||
|
||||
const emit = defineEmits<{
|
||||
close: [];
|
||||
}>();
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const loading = ref(false);
|
||||
const backups = ref<S3BackupItem[]>([]);
|
||||
const deletingKey = ref<string | null>(null);
|
||||
|
||||
const handleClose = () => {
|
||||
if (loading.value || deletingKey.value) {
|
||||
return;
|
||||
}
|
||||
emit("close");
|
||||
};
|
||||
|
||||
const handleDownload = (key: string) => {
|
||||
const url = downloadS3BackupUrl(key);
|
||||
window.open(url, "_blank");
|
||||
};
|
||||
|
||||
const handleDelete = async (key: string) => {
|
||||
if (!confirm(t("data.sections.s3.confirmDelete", { file: key }))) {
|
||||
return;
|
||||
}
|
||||
|
||||
deletingKey.value = key;
|
||||
try {
|
||||
await deleteS3Backup(key);
|
||||
backups.value = backups.value.filter((item) => item.key !== key);
|
||||
} catch (e: any) {
|
||||
console.error("Delete error:", e);
|
||||
} finally {
|
||||
deletingKey.value = null;
|
||||
}
|
||||
};
|
||||
|
||||
const fetchBackups = async () => {
|
||||
if (!props.visible) return;
|
||||
|
||||
loading.value = true;
|
||||
try {
|
||||
const res = await fetchS3BackupList();
|
||||
backups.value = res.files;
|
||||
} catch (e: any) {
|
||||
console.error("Fetch backups error:", e);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const formatFileSize = (bytes: number): string => {
|
||||
if (bytes === 0) return "0 B";
|
||||
const k = 1024;
|
||||
const sizes = ["B", "KB", "MB", "GB"];
|
||||
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
||||
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + " " + sizes[i];
|
||||
};
|
||||
|
||||
watch(
|
||||
() => props.visible,
|
||||
(newVal) => {
|
||||
if (newVal) {
|
||||
fetchBackups();
|
||||
} else {
|
||||
backups.value = [];
|
||||
}
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
.s3-backup-modal {
|
||||
max-width: 600px;
|
||||
width: 90%;
|
||||
max-height: 70vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
color: var(--text-secondary);
|
||||
padding: 0;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.modal-close:hover {
|
||||
background: var(--bg-secondary);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.loading {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.loading-spinner {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: 2px solid var(--border-color);
|
||||
border-top-color: var(--primary-color);
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
.loading-spinner.small {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.loading-text {
|
||||
color: var(--text-secondary);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.empty-backup-list {
|
||||
text-align: center;
|
||||
padding: 40px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.backup-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.backup-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
background: var(--bg-secondary);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.backup-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.backup-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.backup-meta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.backup-size {
|
||||
background: var(--bg-primary);
|
||||
padding: 2px 8px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.backup-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.backup-btn {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border: 1px solid var(--border-color);
|
||||
background: var(--bg-primary);
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--text-secondary);
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.backup-btn:hover:not(:disabled) {
|
||||
background: var(--bg-hover);
|
||||
color: var(--text-primary);
|
||||
border-color: var(--border-hover);
|
||||
}
|
||||
|
||||
.backup-btn.download:hover {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
|
||||
.backup-btn.delete:hover {
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.backup-btn:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -162,6 +162,13 @@
|
||||
s3BackingUp ? t("data.sections.s3.backingUp") : t("data.sections.s3.backup")
|
||||
}}
|
||||
</button>
|
||||
<button
|
||||
class="card-button secondary"
|
||||
:disabled="false"
|
||||
@click="handleViewS3Backups"
|
||||
>
|
||||
{{ t("data.sections.s3.viewBackups") }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -213,6 +220,12 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- S3 备份列表弹窗 -->
|
||||
<S3BackupModal
|
||||
:visible="showS3BackupModal"
|
||||
@close="handleS3BackupModalClose"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -231,8 +244,9 @@ import {
|
||||
fetchS3Settings,
|
||||
saveS3Settings,
|
||||
triggerS3Backup,
|
||||
type S3SettingsResponse,
|
||||
S3SettingsResponse,
|
||||
} from "../../api/admin";
|
||||
import S3BackupModal from "./components/S3BackupModal.vue";
|
||||
import { useSite } from "../../composables/useSite";
|
||||
|
||||
const { t } = useI18n();
|
||||
@@ -264,6 +278,7 @@ const s3Config = ref<S3SettingsResponse>({
|
||||
});
|
||||
const s3Saving = ref(false);
|
||||
const s3BackingUp = ref(false);
|
||||
const showS3BackupModal = ref(false);
|
||||
|
||||
async function loadS3Config() {
|
||||
try {
|
||||
@@ -298,6 +313,14 @@ async function handleS3Backup() {
|
||||
}
|
||||
}
|
||||
|
||||
function handleViewS3Backups() {
|
||||
showS3BackupModal.value = true;
|
||||
}
|
||||
|
||||
function handleS3BackupModalClose() {
|
||||
showS3BackupModal.value = false;
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
loadS3Config();
|
||||
});
|
||||
@@ -552,4 +575,93 @@ function joinUrl(prefix: string, path: string): string {
|
||||
margin-bottom: 4px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
/* S3 备份弹窗样式 */
|
||||
.s3-backup-modal {
|
||||
max-width: 600px;
|
||||
width: 90%;
|
||||
max-height: 70vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 24px;
|
||||
cursor: pointer;
|
||||
color: var(--text-secondary);
|
||||
padding: 0;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 4px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.modal-close:hover {
|
||||
background: var(--bg-secondary);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
overflow-y: auto;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.empty-backup-list {
|
||||
text-align: center;
|
||||
padding: 40px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.backup-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.backup-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
background: var(--bg-secondary);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.backup-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.backup-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.backup-meta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user