| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- <template>
- <a-spin :spinning="state.downloadLoading" tip="下载中...">
- <div class="mediaDetail">
- <Search :fetchList="fetchList" :selectedRowKeys="state.selectedRowKeys" :onClickDownload="onClickBatchDownload"
- :onClickDelete="onClickBatchDelete" :onClickSearch="onClickSearch" :onClickReset="onClickReset" />
- <div style="background: #FFFFFF;padding: 20px;">
- <div class="mediaDetail-info">
- <div class="mediaDetail-info-left">
- <div style="color: #7C7C7C;cursor: pointer;" @click="onClickGoBack">
- 媒体文件
- </div>
- <div style="margin: 0 10px;">
- /
- </div>
- <div>
- {{ state.dirName }}
- </div>
- </div>
- <div class="mediaDetail-info-right">
- <div class="mediaDetail-info-right-text">
- <div>
- 已选/全部:
- </div>
- <div>
- {{ state.selectedRowKeys.length }}/{{ paginationConfig.total }}
- </div>
- </div>
- </div>
- </div>
- <a-table :scroll="{ x: '100%', y: 500 }" rowKey="file_id" :loading="state.listLoading" :columns="columns"
- :dataSource="state.list" :rowClassName="rowClassName" :pagination="paginationConfig"
- :rowSelection="{ selectedRowKeys: state.selectedRowKeys, onChange: onSelectChange }">
- <!-- 文件夹名称 -->
- <template #file_name="{ record }">
- <a-tooltip :title="record.file_name">
- <div class="fileName">
- <div class="fileName-cover" @click="onClickLookFile(record)">
- <img class="fileName-cover-img" :src="record.thumbnail_url" />
- <img class="fileName-cover-icon" :src="panoramaSrc" v-if="record.media_type === 3" />
- <img class="fileName-cover-icon" :src="videoSrc" v-else-if="record.media_type === 4" />
- </div>
- <div style="margin-left: 5px;">
- <a-input v-model:value="record.file_name" v-if="state.editableData[record.file_id]" />
- <div @click="onClickLookFile(record)" v-else>
- {{ record.file_name }}
- </div>
- </div>
- </div>
- </a-tooltip>
- </template>
- <!-- 操作 -->
- <template #action="{ record }">
- <!-- 编辑态操作 -->
- <div v-if="state.editableData[record.file_id]">
- <a-tooltip title="确定">
- <CheckOutlined style="color: #28d445;margin-right: 10px;" @click="onClickSave(record)" />
- </a-tooltip>
- <a-tooltip title="取消">
- <CloseOutlined style="color: #e70102;" @click="() => delete state.editableData[record.file_id]" />
- </a-tooltip>
- </div>
- <!-- 非编辑态操作 -->
- <div class="flex-align-center flex-row" style="color: #2d8cf0" v-else>
- <div v-if="[1, 3].includes(record.media_type)">
- <a-tooltip title="在地图上加载" v-if="!record.element_id">
- <AimOutlined style="margin-right: 10px;" @click="onClickCreateMapElement(record.file_id)" />
- </a-tooltip>
- <a-tooltip title="在地图上取消加载" v-else>
- <AimOutlined style="color: #e70102;margin-right: 10px;"
- @click="onClickDeleteMapElement(record.file_id)" />
- </a-tooltip>
- </div>
- <a-tooltip title="重命名" v-else-if="record.media_type === 4">
- <EditOutlined style="margin-right: 10px;" @click="onClickRechristen(record)" />
- </a-tooltip>
- <a-tooltip title="删除">
- <DeleteOutlined style="margin-right: 10px;" @click="onClickDelete(record)" />
- </a-tooltip>
- <a-tooltip title="压缩下载">
- <DownloadOutlined @click="onClickDownload(record)" />
- </a-tooltip>
- </div>
- </template>
- </a-table>
- </div>
- </div>
- </a-spin>
- <FileInfo :fileId="state.fileId" :fileList="state.list" :onClose="fileInfoOnClickClose"
- v-if="state.fileInfoVisible" />
- </template>
- <script lang="ts" setup>
- import { reactive, onMounted } from 'vue';
- import { message, Modal } from 'ant-design-vue';
- import { EditOutlined, DeleteOutlined, DownloadOutlined, AimOutlined, CheckOutlined, CloseOutlined } from '@ant-design/icons-vue';
- import Search from './components/Search.vue';
- import FileInfo from './components/FileInfo.vue';
- import panoramaSrc from '/@/assets/media/panorama.svg';
- import videoSrc from '/@/assets/media/video.svg';
- import { apis } from '/@/api/custom';
- import router from '/@/router/index';
- import { downloadFile } from '/@/utils/common';
- import { downloadMediaFile } from '/@/api/media';
- import { getWorkspaceId } from '/@/utils/index';
- interface State {
- query: any,
- listLoading: boolean,
- list: any[],
- dirName: string,
- selectedRowKeys: string[],
- editableData: {
- [key: string]: string,
- },
- downloadLoading: boolean,
- fileId: string,
- fileInfoVisible: boolean,
- };
- const state: State = reactive({
- query: undefined,
- listLoading: false,
- list: [],
- dirName: '',
- selectedRowKeys: [],
- editableData: {},
- downloadLoading: false,
- fileId: '',
- fileInfoVisible: false,
- })
- const paginationConfig = reactive({
- pageSizeOptions: ['20', '50', '100'],
- showQuickJumper: true,
- showSizeChanger: true,
- pageSize: 100,
- current: 1,
- total: 0,
- onChange: async (current: number) => {
- paginationConfig.current = current;
- await fetchList();
- },
- onShowSizeChange: async (current: number, pageSize: number) => {
- paginationConfig.pageSize = pageSize;
- await fetchList();
- }
- })
- const fetchList = async () => {
- state.listLoading = true;
- try {
- const dirId = router.currentRoute.value.params?.id;
- const res = await apis.fetchFileListByFolder(dirId as string, {
- ...state.query,
- page: paginationConfig.current,
- page_size: paginationConfig.pageSize,
- });
- state.dirName = res.data.group_name;
- state.list = res.data.list;
- paginationConfig.current = res.data.pagination.page;
- paginationConfig.pageSize = res.data.pagination.page_size;
- paginationConfig.total = res.data.pagination.total;
- } catch (e) {
- console.error(e);
- } finally {
- state.listLoading = false;
- }
- }
- onMounted(async () => {
- await fetchList();
- })
- const columns = [
- {
- title: '文件名称',
- dataIndex: 'file_name',
- width: 250,
- ellipsis: true,
- sorter: (a: any, b: any) => a.file_name.localeCompare(b.file_name),
- slots: { customRender: 'file_name' }
- },
- {
- title: '拍摄负载',
- dataIndex: 'payload',
- width: 150,
- ellipsis: true,
- },
- {
- title: '容量大小',
- dataIndex: 'size',
- width: 150,
- ellipsis: true,
- customRender: ({ text }: any) => {
- return text > 0 ? (text / 1024 / 1024).toFixed(1) + 'M' : '--';
- }
- },
- {
- title: '创建时间',
- dataIndex: 'create_time',
- width: 200,
- sorter: (a: any, b: any) => a.create_time.localeCompare(b.create_time),
- },
- {
- title: '媒体类型',
- dataIndex: 'media_type_text',
- width: 100,
- customRender: ({ text }: any) => {
- return text || '--';
- }
- },
- {
- title: '文件类型',
- dataIndex: 'picture_type',
- width: 100,
- customRender: ({ text }: any) => {
- return text || '--';
- }
- },
- {
- title: '操作',
- dataIndex: 'actions',
- fixed: 'right',
- width: 100,
- slots: { customRender: 'action' },
- },
- ]
- const rowClassName = (record: any, index: number) => {
- const className = []
- if ((index & 1) === 0) {
- className.push('table-striped')
- }
- return className.toString().replaceAll(',', ' ')
- }
- // 点击批量下载
- const onClickBatchDownload = async () => {
- state.downloadLoading = true;
- try {
- const bold = await apis.batchDownloadFile({
- id: state.selectedRowKeys.join(',')
- });
- const data = new Blob([bold], { type: 'application/zip' });
- downloadFile(data, state.dirName + '.zip');
- } catch (e) {
- console.error(e);
- } finally {
- state.downloadLoading = false;
- }
- }
- // 点击批量删除
- const onClickBatchDelete = async () => {
- const canDeleteList = state.list.filter(item => state.selectedRowKeys.includes(item.file_id));
- const data = {
- id: canDeleteList.map(item => item.file_id).join(',')
- }
- Modal.confirm({
- title: '删除',
- content: '您确认删除文件吗?',
- okType: 'danger',
- onOk: async () => {
- try {
- const res = await apis.batchDeletePicture(data);
- if (res.code === 0) {
- await fetchList();
- message.success('删除成功');
- }
- } catch (error) {
- message.error('删除失败: ' + error);
- }
- },
- })
- }
- // 点击搜索
- const onClickSearch = async (query: any) => {
- state.query = query;
- await fetchList();
- }
- // 点击重置
- const onClickReset = async (query: any) => {
- state.query = query;
- await fetchList();
- }
- // 点击返回
- const onClickGoBack = () => {
- router.push({ path: '/media' })
- }
- // 勾选
- const onSelectChange = (selectedRowKeys: string[]) => {
- state.selectedRowKeys = selectedRowKeys;
- }
- // 点击查看文件
- const onClickLookFile = (record: any) => {
- state.fileId = record.file_id;
- state.fileInfoVisible = true;
- }
- // 文件信息-点击关闭
- const fileInfoOnClickClose = async () => {
- state.fileId = '';
- state.fileInfoVisible = false;
- await fetchList();
- }
- // 点击在地图上加载
- const onClickCreateMapElement = async (id: string) => {
- try {
- await apis.createMapElement(id);
- await fetchList();
- message.success('在地图上加载成功');
- } catch (e: any) {
- console.error(e);
- }
- }
- // 点击在地图上取消加载
- const onClickDeleteMapElement = async (id: string) => {
- try {
- await apis.deleteMapElement(id);
- await fetchList();
- message.success('在地图上取消加载成功');
- } catch (e: any) {
- console.error(e);
- }
- }
- // 点击重命名
- const onClickRechristen = (record: any) => {
- state.editableData[record.file_id] = record;
- }
- // 点击保存
- const onClickSave = async (record: any) => {
- delete state.editableData[record.file_id];
- await apis.updateFileName(record.file_id, { file_name: record.file_name })
- await fetchList();
- }
- // 点击删除
- const onClickDelete = async (record: any) => {
- console.log(record, "record");
- const data = {
- id: record.file_id
- }
- Modal.confirm({
- title: '删除',
- content: '您确认删除文件吗?',
- okType: 'danger',
- onOk: async () => {
- try {
- const res = await apis.batchDeletePicture(data);
- if (res.code === 0) {
- await fetchList();
- message.success('删除成功');
- }
- } catch (error) {
- message.error('删除失败: ' + error);
- }
- },
- })
- }
- // 点击下载
- const onClickDownload = async (record: any) => {
- state.downloadLoading = true;
- try {
- const workspaceId: string = getWorkspaceId();
- const res = await downloadMediaFile(workspaceId, record.file_id)
- if (!res) {
- return
- }
- const data = new Blob([res])
- downloadFile(data, record.file_name)
- } catch (e) {
- console.error(e);
- } finally {
- state.downloadLoading = false;
- }
- }
- </script>
- <style lang="scss">
- .mediaDetail {
- padding: 20px;
- &-info {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- &-left {
- display: flex;
- align-items: center;
- }
- &-right {
- display: flex;
- align-items: center;
- &-text {
- display: flex;
- align-items: center;
- margin-right: 20px;
- }
- }
- }
- .fileName {
- display: flex;
- align-items: center;
- cursor: pointer;
- &-cover {
- position: relative;
- &-img {
- width: 36px;
- height: 36px;
- }
- &-icon {
- width: 20px;
- height: 20px;
- position: absolute;
- z-index: 2;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- }
- }
- }
- .ant-table {
- border-top: 1px solid rgb(0, 0, 0, 0.06);
- border-bottom: 1px solid rgb(0, 0, 0, 0.06);
- }
- .ant-table-tbody tr td {
- border: 0;
- }
- .table-striped {
- background-color: #f7f9fa;
- }
- .ant-card-body {
- padding: 0 10px 10px;
- }
- </style>
|