ruoyi-plus-vben5/apps/web-antd/src/views/workflow/processDefinition/index.vue
2024-12-16 09:15:04 +08:00

333 lines
8.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import type { Recordable } from '@vben/types';
import { ref } from 'vue';
import { useRouter } from 'vue-router';
import { Page, useVbenModal, type VbenFormProps } from '@vben/common-ui';
import { $t } from '@vben/locales';
import { getVxePopupContainer } from '@vben/utils';
import { message, Modal, Popconfirm, Space } from 'ant-design-vue';
import { useVbenVxeGrid, type VxeGridProps } from '#/adapter/vxe-table';
import { vxeCheckboxChecked } from '#/adapter/vxe-table';
import {
workflowDefinitionActive,
workflowDefinitionCopy,
workflowDefinitionDelete,
workflowDefinitionExport,
workflowDefinitionList,
workflowDefinitionPublish,
} from '#/api/workflow/definition';
import { downloadByData } from '#/utils/file/download';
import CategoryTree from './category-tree.vue';
import { ActivityStatusEnum } from './constant';
import { columns, querySchema } from './data';
import processDefinitionDeployModal from './process-definition-deploy-modal.vue';
import processDefinitionModal from './process-definition-modal.vue';
// 左边部门用
const selectedCode = ref<number[] | string[]>([]);
const formOptions: VbenFormProps = {
schema: querySchema(),
commonConfig: {
labelWidth: 80,
componentProps: {
allowClear: true,
},
},
wrapperClass: 'grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4',
handleReset: async () => {
selectedCode.value = [];
// eslint-disable-next-line no-use-before-define
const { formApi, reload } = tableApi;
await formApi.resetForm();
const formValues = formApi.form.values;
formApi.setLatestSubmissionValues(formValues);
await reload(formValues);
},
};
const gridOptions: VxeGridProps = {
checkboxConfig: {
// 高亮
highlight: true,
// 翻页时保留选中状态
reserve: true,
// 点击行选中
trigger: 'default',
},
columns,
height: 'auto',
keepSource: true,
pagerConfig: {},
proxyConfig: {
ajax: {
query: async ({ page }, formValues = {}) => {
// 部门树选择处理
if (selectedCode.value.length === 1) {
formValues.categoryCode = selectedCode.value[0];
} else {
Reflect.deleteProperty(formValues, 'categoryCode');
}
return await workflowDefinitionList({
pageNum: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
isHover: true,
keyField: 'id',
height: 100,
},
id: 'workflow-definition-index',
};
const [BasicTable, tableApi] = useVbenVxeGrid({
formOptions,
gridOptions,
});
async function handleDelete(row: Recordable<any>) {
await workflowDefinitionDelete(row.id);
await tableApi.query();
}
function handleMultiDelete() {
const rows = tableApi.grid.getCheckboxRecords();
const ids = rows.map((row: any) => row.id);
Modal.confirm({
title: '提示',
okType: 'danger',
content: `确认删除选中的${ids.length}条记录吗?`,
onOk: async () => {
await workflowDefinitionDelete(ids);
await tableApi.query();
},
});
}
const router = useRouter();
/**
* 流程设计/预览
* @param row row
* @param disabled true为预览false为设计
*/
function handleDesign(row: any, disabled: boolean) {
console.log(row);
router.push({
path: '/workflow/designer',
query: { definitionId: row.id, disabled: String(disabled) },
});
}
/**
* 激活/挂起流程
* @param row row
*/
async function handleActive(row: any) {
await workflowDefinitionActive(row.id, !row.activityStatus);
await tableApi.query();
}
/**
* 历史版本
* @param _row row
*/
function handleHistory(_row: any) {
message.info('暂未开放');
}
/**
* 发布流程
* @param row row
*/
async function handlePublish(row: any) {
await workflowDefinitionPublish(row.id);
await tableApi.query();
}
/**
* 复制流程
* @param row row
*/
async function handleCopy(row: any) {
await workflowDefinitionCopy(row.id);
await tableApi.query();
}
const [ProcessDefinitionModal, modalApi] = useVbenModal({
connectedComponent: processDefinitionModal,
});
/**
* 新增流程
*/
function handleAdd() {
modalApi.setData({});
modalApi.open();
}
/**
* 编辑流程
*/
function handleEdit(row: any) {
modalApi.setData({ id: row.id });
modalApi.open();
}
/**
* 导出xml
* @param row row
*/
async function handleExportXml(row: any) {
const hideLoading = message.loading($t('pages.common.downloadLoading'), 0);
try {
const blob = await workflowDefinitionExport(row.id);
downloadByData(blob, `${row.flowName}-${Date.now()}.xml`);
} catch (error) {
console.error(error);
} finally {
hideLoading();
}
}
const [ProcessDefinitionDeployModal, deployModalApi] = useVbenModal({
connectedComponent: processDefinitionDeployModal,
});
/**
* 部署流程xml
*/
function handleDeploy() {
if (selectedCode.value.length === 0) {
message.warning('请先选择流程分类');
return;
}
const selectedCategory = selectedCode.value[0];
if (selectedCategory === 0) {
message.warning('不可选择根目录进行部署, 请选择子分类');
return;
}
deployModalApi.setData({ category: selectedCategory });
deployModalApi.open();
}
</script>
<template>
<Page :auto-content-height="true">
<div class="flex h-full gap-[8px]">
<CategoryTree
v-model:select-code="selectedCode"
class="w-[260px]"
@reload="() => tableApi.reload()"
@select="() => tableApi.reload()"
/>
<BasicTable class="flex-1 overflow-hidden" table-title="流程定义列表">
<template #toolbar-tools>
<Space>
<a-button
:disabled="!vxeCheckboxChecked(tableApi)"
danger
type="primary"
v-access:code="['system:user:remove']"
@click="handleMultiDelete"
>
{{ $t('pages.common.delete') }}
</a-button>
<a-button v-access:code="['system:user:add']" @click="handleDeploy">
部署
</a-button>
<a-button
type="primary"
v-access:code="['system:user:add']"
@click="handleAdd"
>
{{ $t('pages.common.add') }}
</a-button>
</Space>
</template>
<template #action="{ row }">
<div class="flex flex-col gap-1">
<div>
<a-button
v-if="row.activityStatus === ActivityStatusEnum.Active"
size="small"
type="link"
@click="() => handleActive(row)"
>
挂起流程
</a-button>
<a-button
v-if="row.activityStatus === ActivityStatusEnum.Suspended"
size="small"
type="link"
@click="() => handleActive(row)"
>
激活流程
</a-button>
<a-button size="small" type="link" @click="handleHistory(row)">
历史版本
</a-button>
<Popconfirm
:get-popup-container="getVxePopupContainer"
placement="left"
title="确认删除?"
@confirm="handleDelete(row)"
>
<a-button danger size="small" type="link" @click.stop="">
删除流程
</a-button>
</Popconfirm>
</div>
<div>
<a-button
size="small"
type="link"
@click="handleDesign(row, !!row.isPublish)"
>
{{ row.isPublish ? '查看流程' : '设计流程' }}
</a-button>
<Popconfirm
:get-popup-container="getVxePopupContainer"
:title="`确认发布流程[${row.flowName}]?`"
placement="left"
@confirm="handlePublish(row)"
>
<a-button v-if="!row.isPublish" size="small" type="link">
发布流程
</a-button>
</Popconfirm>
<Popconfirm
:get-popup-container="getVxePopupContainer"
:title="`确认复制流程[${row.flowName}]?`"
placement="left"
@confirm="handleCopy(row)"
>
<a-button size="small" type="link"> 复制流程 </a-button>
</Popconfirm>
</div>
<div>
<a-button size="small" type="link" @click="handleEdit(row)">
编辑信息
</a-button>
<a-button size="small" type="link" @click="handleExportXml(row)">
导出流程
</a-button>
</div>
</div>
</template>
</BasicTable>
</div>
<ProcessDefinitionModal @reload="() => tableApi.reload()" />
<ProcessDefinitionDeployModal @reload="() => tableApi.reload()" />
</Page>
</template>