gtsoft-snail-job-admin/src/views/job/batch/index.vue

216 lines
5.9 KiB
Vue

<script setup lang="tsx">
import { NButton, NPopconfirm, NTag } from 'naive-ui';
import { useBoolean } from '@sa/hooks';
import { ref, watch } from 'vue';
import { useRoute } from 'vue-router';
import { fetchGetJobBatchList, fetchGetJobNameList, fetchJobBatchRetry, fetchJobBatchStop } from '@/service/api';
import { $t } from '@/locales';
import { useAppStore } from '@/store/modules/app';
import { useTable } from '@/hooks/common/table';
import { operationReasonRecord, taskBatchStatusRecord } from '@/constants/business';
import { tagColor } from '@/utils/common';
import JobBatchSearch from './modules/job-batch-search.vue';
import JobBatchDetailDrawer from './modules/job-batch-detail-drawer.vue';
const appStore = useAppStore();
const route = useRoute();
/** 详情页属性数据 */
const detailData = ref<Api.JobBatch.JobBatch | null>();
/** 详情页可见状态 */
const { bool: detailVisible, setTrue: openDetail } = useBoolean(false);
const { columnChecks, columns, data, getData, loading, mobilePagination, searchParams, resetSearchParams } = useTable({
apiFn: fetchGetJobBatchList,
apiParams: {
page: 1,
size: 10,
groupName: null,
jobName: null,
taskBatchStatus: null
},
columns: () => [
{
key: 'id',
title: $t('common.index'),
align: 'center',
width: 64,
render: row => {
function showDetailDrawer() {
detailData.value = row;
openDetail();
}
return (
<NButton text tag="a" type="primary" onClick={showDetailDrawer} class="ws-normal">
{row.id}
</NButton>
);
}
},
{
key: 'groupName',
title: $t('page.jobBatch.groupName'),
align: 'left',
minWidth: 120
},
{
key: 'jobName',
title: $t('page.jobBatch.jobName'),
align: 'center',
minWidth: 120
},
{
key: 'executionAt',
title: $t('page.jobBatch.executionAt'),
align: 'center',
minWidth: 120
},
{
key: 'taskBatchStatus',
title: $t('page.jobBatch.taskBatchStatus'),
align: 'center',
minWidth: 120,
render: row => {
if (row.taskBatchStatus === null) {
return null;
}
const label = $t(taskBatchStatusRecord[row.taskBatchStatus!]);
return <NTag type={tagColor(row.taskBatchStatus!)}>{label}</NTag>;
}
},
{
key: 'operationReason',
title: $t('page.jobBatch.operationReason'),
align: 'center',
minWidth: 120,
render: row => {
if (row.operationReason === null) {
return null;
}
const label = $t(operationReasonRecord[row.operationReason!]);
return <NTag type={tagColor(row.operationReason!)}>{label}</NTag>;
}
},
{
key: 'operate',
title: $t('common.operate'),
align: 'center',
width: 130,
render: row => (
<div class="flex-center gap-8px">
{row.taskBatchStatus === 1 || row.taskBatchStatus === 2 ? (
<NPopconfirm onPositiveClick={() => handleStopJob(row.id!)}>
{{
default: () => $t('common.confirmStop'),
trigger: () => (
<NButton type="error" ghost size="small">
{$t('common.stop')}
</NButton>
)
}}
</NPopconfirm>
) : (
''
)}
{row.taskBatchStatus === 4 || row.taskBatchStatus === 5 || row.taskBatchStatus === 6 ? (
<NPopconfirm onPositiveClick={() => handleRetryJob(row.id!)}>
{{
default: () => $t('common.confirmRetry'),
trigger: () => (
<NButton type="warning" ghost size="small">
{$t('common.retry')}
</NButton>
)
}}
</NPopconfirm>
) : (
''
)}
</div>
)
}
]
});
async function handleRetryJob(id: string) {
const { error } = await fetchJobBatchRetry(id);
if (!error) {
window.$message?.success($t('common.operateSuccess'));
getData();
}
}
async function handleStopJob(id: string) {
const { error } = await fetchJobBatchStop(id);
if (!error) {
window.$message?.success($t('common.operateSuccess'));
getData();
}
}
/** 处理路由 query 参数变化 */
async function handleQueryChanged(jobId: number) {
if (!jobId) {
searchParams.jobName = null;
} else {
const { data: jobList, error } = await fetchGetJobNameList({ jobId });
if (!error && jobList.length > 0) {
const jobName = jobList[0].jobName;
searchParams.jobName = jobName;
}
}
getData();
}
watch(
() => route.query,
() => {
if (route.name === 'job_batch' && route.query.jobId) {
const jobId = Number(route.query.jobId);
handleQueryChanged(jobId);
}
},
{ immediate: true }
);
</script>
<template>
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
<JobBatchSearch v-model:model="searchParams" @reset="resetSearchParams" @search="getData" />
<NCard
:title="$t('page.jobBatch.title')"
:bordered="false"
size="small"
class="sm:flex-1-hidden card-wrapper"
header-class="view-card-header"
>
<template #header-extra>
<TableHeaderOperation
v-model:columns="columnChecks"
:loading="loading"
:show-delete="false"
:show-add="false"
@refresh="getData"
/>
</template>
<NDataTable
:columns="columns"
:data="data"
:flex-height="!appStore.isMobile"
:scroll-x="962"
:loading="loading"
remote
:row-key="row => row.id"
:pagination="mobilePagination"
class="sm:h-full"
/>
</NCard>
<JobBatchDetailDrawer v-if="detailVisible" v-model:visible="detailVisible" :row-data="detailData" />
</div>
</template>
<style scoped></style>