mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-06-11 18:40:27 +08:00
127 lines
4.0 KiB
Vue
127 lines
4.0 KiB
Vue
<script setup>
|
|
import { ref, h, onMounted } from 'vue';
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { api } from '../../api'
|
|
import { NPopconfirm } from 'naive-ui';
|
|
|
|
const message = useMessage()
|
|
|
|
const { t } = useI18n({
|
|
messages: {
|
|
en: {
|
|
download: 'Download',
|
|
action: 'Action',
|
|
delete: 'Delete',
|
|
deleteConfirm: 'Are you sure to delete this attachment?',
|
|
deleteSuccess: 'Deleted successfully',
|
|
},
|
|
zh: {
|
|
download: '下载',
|
|
action: '操作',
|
|
delete: '删除',
|
|
deleteConfirm: '确定要删除此附件吗?',
|
|
deleteSuccess: '删除成功',
|
|
}
|
|
}
|
|
});
|
|
const data = ref([])
|
|
const showDownload = ref(false)
|
|
const curRow = ref({})
|
|
const curDownloadUrl = ref('')
|
|
|
|
const fetchData = async () => {
|
|
try {
|
|
const { results } = await api.fetch(
|
|
`/api/attachment/list`
|
|
);
|
|
data.value = results;
|
|
} catch (error) {
|
|
console.log(error)
|
|
message.error(error.message || "error");
|
|
}
|
|
}
|
|
|
|
const columns = [
|
|
{
|
|
title: "key",
|
|
key: "key"
|
|
},
|
|
{
|
|
title: t('action'),
|
|
key: 'actions',
|
|
render(row) {
|
|
return h('div', [
|
|
h(NButton,
|
|
{
|
|
type: 'success',
|
|
tertiary: true,
|
|
onClick: async () => {
|
|
try {
|
|
const { url } = await api.fetch(`/api/attachment/get_url`, {
|
|
method: 'POST',
|
|
body: JSON.stringify({ key: row.key })
|
|
});
|
|
curDownloadUrl.value = url;
|
|
curRow.value = row;
|
|
showDownload.value = true;
|
|
}
|
|
catch (error) {
|
|
console.error(error);
|
|
message.error(error.message || "error");
|
|
}
|
|
}
|
|
},
|
|
{ default: () => t('download') }
|
|
),
|
|
h(NPopconfirm,
|
|
{
|
|
onPositiveClick: async () => {
|
|
try {
|
|
await api.fetch(`/api/attachment/delete`, {
|
|
method: 'POST',
|
|
body: JSON.stringify({ key: row.key })
|
|
});
|
|
message.success(t('deleteSuccess'));
|
|
await fetchData();
|
|
}
|
|
catch (error) {
|
|
console.error(error);
|
|
message.error(error.message || "error");
|
|
}
|
|
},
|
|
},
|
|
{
|
|
trigger: () => h(NButton,
|
|
{
|
|
tertiary: true,
|
|
type: "error",
|
|
},
|
|
{ default: () => t('delete') }
|
|
),
|
|
default: () => t('deleteConfirm')
|
|
}
|
|
)
|
|
])
|
|
}
|
|
}
|
|
]
|
|
|
|
onMounted(async () => {
|
|
await fetchData()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<n-modal v-model:show="showDownload" preset="dialog" :title="t('download')">
|
|
<n-tag type="info">{{ curRow.key }}</n-tag>
|
|
<n-button tag="a" target="_blank" tertiary type="info" size="small" :download="curRow.key.replace('/', '_')"
|
|
:href="curDownloadUrl">
|
|
{{ t('download') }}
|
|
</n-button>
|
|
</n-modal>
|
|
<n-data-table :columns="columns" :data="data" :bordered="false" embedded />
|
|
</div>
|
|
</template>
|