feat:增加 fileConfig 文件配置(全部)、file 文件(部分)

This commit is contained in:
YunaiV
2025-04-07 10:22:27 +08:00
parent 1a3657b2bf
commit b4d1c678fd
19 changed files with 1044 additions and 13 deletions

View File

@@ -0,0 +1,124 @@
import { type VbenFormSchema, z } from '#/adapter/form';
import type { OnActionClickFn, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { InfraFileApi } from '#/api/infra/file';
import { useAccess } from '@vben/access';
import { getRangePickerDefaultProps } from '#/utils/date';
const { hasAccessByCodes } = useAccess();
/** 列表的搜索表单 */
export function useGridFormSchema(): VbenFormSchema[] {
return [
{
fieldName: 'path',
label: '文件路径',
component: 'Input',
componentProps: {
placeholder: '请输入文件路径',
clearable: true,
},
},
{
fieldName: 'type',
label: '文件类型',
component: 'Input',
componentProps: {
placeholder: '请输入文件类型',
clearable: true,
},
},
{
fieldName: 'createTime',
label: '创建时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
},
},
];
}
/** 列表的字段 */
export function useGridColumns<T = InfraFileApi.InfraFile>(
onActionClick: OnActionClickFn<T>,
): VxeTableGridOptions['columns'] {
return [
{
field: 'name',
title: '文件名',
minWidth: 150,
},
{
field: 'path',
title: '文件路径',
minWidth: 200,
showOverflow: true,
},
{
field: 'url',
title: 'URL',
minWidth: 200,
showOverflow: true,
},
{
field: 'size',
title: '文件大小',
minWidth: 80,
formatter: ({ cellValue }) => {
// TODO @芋艿:后续优化下
if (!cellValue) return '0 B';
const unitArr = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
const index = Math.floor(Math.log(cellValue) / Math.log(1024));
const size = cellValue / Math.pow(1024, index);
const formattedSize = size.toFixed(2);
return formattedSize + ' ' + unitArr[index];
},
},
{
field: 'type',
title: '文件类型',
minWidth: 120,
},
{
field: 'url',
title: '文件内容',
minWidth: 120,
slots: {
default: 'file-content',
},
},
{
field: 'createTime',
title: '上传时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
field: 'operation',
title: '操作',
width: 160,
fixed: 'right',
align: 'center',
cellRender: {
attrs: {
nameField: 'name',
nameTitle: '文件',
onClick: onActionClick,
},
name: 'CellOperation',
options: [
{
code: 'copyUrl',
text: '复制链接',
},
{
code: 'delete',
show: hasAccessByCodes(['infra:file:delete']),
},
],
},
},
];
}

View File

@@ -0,0 +1,137 @@
<script lang="ts" setup>
import type { OnActionClickParams, VxeTableGridOptions } from '#/adapter/vxe-table';
import type { InfraFileApi } from '#/api/infra/file';
import { Page, useVbenModal } from '@vben/common-ui';
import { Button, message, Image } from 'ant-design-vue';
import { Plus } from '@vben/icons';
import Form from './modules/form.vue';
import { $t } from '#/locales';
import { useClipboard } from '@vueuse/core';
import { useVbenVxeGrid } from '#/adapter/vxe-table';
import { getFilePage, deleteFile } from '#/api/infra/file';
import { useGridColumns, useGridFormSchema } from './data';
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
/** 刷新表格 */
function onRefresh() {
gridApi.query();
}
/** 上传文件 */
function onUpload() {
formModalApi.setData(null).open();
}
/** 复制链接到剪贴板 */
const { copy } = useClipboard({ legacy: true });
async function onCopyUrl(row: InfraFileApi.InfraFile) {
if (!row.url) {
message.error('文件 URL 为空');
return;
}
try {
await copy(row.url);
message.success('复制成功');
} catch (error) {
message.error('复制失败');
}
}
/** 打开 URL */
function openUrl(url?: string) {
if (url) {
window.open(url, '_blank');
}
}
/** 删除文件 */
async function onDelete(row: InfraFileApi.InfraFile) {
const hideLoading = message.loading({
content: $t('ui.actionMessage.deleting', [row.name || row.path]),
duration: 0,
key: 'action_process_msg',
});
try {
await deleteFile(row.id as number);
message.success({
content: $t('ui.actionMessage.deleteSuccess', [row.name || row.path]),
key: 'action_process_msg',
});
onRefresh();
} catch (error) {
hideLoading();
}
}
/** 表格操作按钮的回调函数 */
function onActionClick({
code,
row,
}: OnActionClickParams<InfraFileApi.InfraFile>) {
switch (code) {
case 'delete': {
onDelete(row);
break;
}
case 'copyUrl': {
onCopyUrl(row);
break;
}
}
}
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema()
},
gridOptions: {
columns: useGridColumns(onActionClick),
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getFilePage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: { code: 'query' },
search: true,
},
} as VxeTableGridOptions<InfraFileApi.InfraFile>,
});
</script>
<template>
<Page auto-content-height>
<FormModal @success="onRefresh" />
<Grid table-title="文件列表">
<template #toolbar-tools>
<Button type="primary" @click="onUpload">
<Plus class="size-5" />
{{ $t('ui.actionTitle.upload', ['文件']) }}
</Button>
</template>
<template #file-content="{ row }">
<Image v-if="row.type && row.type.includes('image')" :src="row.url" />
<Button v-else-if="row.type && row.type.includes('pdf')" type="link" @click="() => openUrl(row.url)"> 预览 </Button>
<Button v-else type="link" @click="() => openUrl(row.url)"> 下载 </Button>
</template>
</Grid>
</Page>
</template>

View File

@@ -0,0 +1,96 @@
<script lang="ts" setup>
import type { InfraFileApi } from '#/api/infra/file';
import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { computed, ref } from 'vue';
import { useVbenForm } from '#/adapter/form';
import { uploadFile } from '#/api/infra/file';
import { $t } from '#/locales';
const emit = defineEmits(['success']);
const fileList = ref<any[]>([]);
const uploadData = ref({ path: '' });
// 表单内容
const formSchema = [
{
fieldName: 'file',
component: 'Upload',
label: '文件上传',
componentProps: {
fileList: fileList.value,
name: 'file',
maxCount: 1,
accept: '.jpg,.png,.gif,.pdf,.doc,.docx,.xls,.xlsx',
beforeUpload: (file: File) => {
uploadData.value.path = file.name;
return false; // 阻止自动上传
},
onChange: ({ fileList }: any) => {
fileList.value = fileList;
},
},
rules: 'required',
},
];
// 表单实例
const [Form, formApi] = useVbenForm({
layout: 'horizontal',
schema: formSchema,
showDefaultActions: false,
});
// 模态框实例
const [Modal, modalApi] = useVbenModal({
async onConfirm() {
const { valid } = await formApi.validate();
if (!valid) {
return;
}
if (fileList.value.length === 0) {
message.error('请上传文件');
return;
}
modalApi.lock();
// 提交表单
try {
const formData = new FormData();
formData.append('file', fileList.value[0].originFileObj);
formData.append('path', uploadData.value.path);
await uploadFile(formData);
// 关闭并提示
await modalApi.close();
emit('success');
message.success({
content: $t('ui.actionMessage.uploadSuccess'),
key: 'action_process_msg',
});
} finally {
modalApi.lock(false);
fileList.value = [];
}
},
async onOpenChange(isOpen: boolean) {
if (!isOpen) {
return;
}
// 重置表单
fileList.value = [];
uploadData.value = { path: '' };
},
});
const getTitle = computed(() => $t('ui.actionTitle.upload', ['文件']));
</script>
<template>
<Modal :title="getTitle">
<Form class="mx-4" />
</Modal>
</template>