mirror of
https://github.com/ccmjga/zhilu-admin
synced 2026-03-14 05:33:42 +08:00
352 lines
16 KiB
Vue
352 lines
16 KiB
Vue
<template>
|
|
<div class="px-2 sm:px-4 pt-6 sm:rounded-lg">
|
|
<div class="mb-4 col-span-full">
|
|
<Breadcrumbs :names="['任务管理']" />
|
|
<h1 class="text-xl font-semibold text-gray-900 sm:text-2xl">任务管理</h1>
|
|
</div>
|
|
<div class="mb-4">
|
|
<form class="w-full sm:max-w-xs">
|
|
<label for="default-search" class="mb-2 text-sm font-medium text-gray-900 sr-only">Search</label>
|
|
<div class="relative">
|
|
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
|
<svg class="w-4 h-4 text-gray-500" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
|
|
viewBox="0 0 20 20">
|
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z" />
|
|
</svg>
|
|
</div>
|
|
<input type="search" id="default-search" v-model="jobName"
|
|
class="block w-full p-3 ps-10 text-sm text-gray-900 border border-gray-300 rounded-lg bg-gray-50 focus:ring-blue-500 focus:border-blue-500"
|
|
placeholder="任务名称" required />
|
|
<button type="submit"
|
|
class="text-white absolute end-1.5 bottom-1.5 bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-3 py-1.5 sm:px-4 sm:py-2"
|
|
@click.prevent="handleSearch">搜索</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- 移动端卡片布局 -->
|
|
<div class="md:hidden">
|
|
<MobileCardList :items="jobs as Array<components['schemas']['JobTriggerDto']>">
|
|
<template #title="{ item }">
|
|
{{ `${item.name}:${item.group}` }}
|
|
</template>
|
|
<template #status="{ item }">
|
|
<div class="flex items-center">
|
|
<div class="h-2.5 w-2.5 rounded-full me-2"
|
|
:class="item.triggerState === 'NORMAL' ? 'bg-green-500' : item.triggerState === 'PAUSED' ? 'bg-red-500' : 'bg-yellow-500'">
|
|
</div>
|
|
<span class="text-sm">{{ item.triggerState }}</span>
|
|
</div>
|
|
</template>
|
|
<template #content="{ item }">
|
|
<div class="grid grid-cols-2 gap-3">
|
|
<div>
|
|
<p class="text-xs font-medium text-gray-600">类型</p>
|
|
<p class="text-sm text-gray-900 mt-0.5">{{ item.schedulerType }}</p>
|
|
</div>
|
|
<div v-if="item.schedulerType === 'CRON'">
|
|
<p class="text-xs font-medium text-gray-600">Cron表达式</p>
|
|
<p class="text-sm text-gray-900 mt-0.5">{{ item.cronExpression }}</p>
|
|
</div>
|
|
<div class="col-span-2">
|
|
<p class="text-xs font-medium text-gray-600">下次执行</p>
|
|
<p class="text-sm text-gray-900 mt-0.5">{{ item.nextFireTime ? dayjs(item.nextFireTime).format("llll") :
|
|
'无' }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<template #actions="{ item }">
|
|
<div class="flex gap-x-2">
|
|
<button @click="handleCronUpdateClick(item)" :disabled="item.schedulerType !== 'CRON'"
|
|
:class="['flex items-center justify-center gap-x-1 text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-xs px-3 py-1.5' , { 'opacity-50 cursor-not-allowed': item.schedulerType !== 'CRON' }]"
|
|
type="button">
|
|
<svg class="w-3 h-3" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M17.414 2.586a2 2 0 00-2.828 0L7 10.172V13h2.828l7.586-7.586a2 2 0 000-2.828z"></path>
|
|
<path fill-rule="evenodd"
|
|
d="M2 6a2 2 0 012-2h4a1 1 0 010 2H4v10h10v-4a1 1 0 112 0v4a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"
|
|
clip-rule="evenodd"></path>
|
|
</svg>
|
|
<span>编辑</span>
|
|
</button>
|
|
<button
|
|
class="text-white bg-green-700 hover:bg-green-800 focus:ring-green-300 focus:ring-4 focus:outline-none font-medium rounded-lg text-xs px-3 py-1.5"
|
|
@click="handleResumeJobClick(item)" type="button">
|
|
<span>恢复</span>
|
|
</button>
|
|
<button
|
|
class="bg-red-700 hover:bg-red-800 focus:ring-red-300 text-white focus:ring-4 focus:outline-none font-medium rounded-lg text-xs px-3 py-1.5"
|
|
@click="handlePauseJobClick(item)" type="button">
|
|
<span>暂停</span>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</MobileCardList>
|
|
</div>
|
|
|
|
<!-- PC端表格布局 -->
|
|
<div class="relative overflow-x-auto shadow-md sm:rounded-lg hidden md:block">
|
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500">
|
|
<thead class="text-xs text-gray-700 uppercase bg-gray-50">
|
|
<tr>
|
|
<th scope="col" class="p-2 sm:p-4 hidden sm:table-cell">
|
|
<div class="flex items-center">
|
|
<input id="checkbox-all-search" disabled type="checkbox"
|
|
class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded-sm focus:ring-blue-500 focus:ring-2">
|
|
<label for="checkbox-all-search" class="sr-only">checkbox</label>
|
|
</div>
|
|
</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3">任务</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden lg:table-cell">触发器</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden lg:table-cell">开始</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden lg:table-cell">结束</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden md:table-cell">下次执行</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden lg:table-cell">上次执行</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden md:table-cell">类型</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden md:table-cell">Cron</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3">状态</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3 hidden sm:table-cell">编辑</th>
|
|
<th scope="col" class="px-3 py-2 sm:px-4 md:px-6 sm:py-3">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="job in jobs" :key="job.triggerName" class="bg-white border-b border-gray-200 hover:bg-gray-50">
|
|
<td class="w-4 p-2 sm:p-4 hidden sm:table-cell">
|
|
<div class="flex items-center">
|
|
<input :id="'checkbox-table-search-' + job.triggerName" type="checkbox" disabled
|
|
class="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded-sm focus:ring-blue-500 focus:ring-2">
|
|
<label :for="'checkbox-table-search-' + job.triggerName" class="sr-only">checkbox</label>
|
|
</div>
|
|
</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 max-w-[120px] sm:max-w-xs md:max-w-sm overflow-hidden text-ellipsis font-medium text-gray-900 whitespace-nowrap">
|
|
{{
|
|
`${job.name}:${job.group}` }}</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 max-w-[120px] sm:max-w-xs md:max-w-sm overflow-hidden text-ellipsis hidden lg:table-cell">
|
|
{{
|
|
`${job.triggerName}:${job.triggerGroup}` }}
|
|
</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 min-w-[150px] sm:min-w-3xs max-w-sm overflow-hidden text-ellipsis hidden lg:table-cell">
|
|
{{
|
|
dayjs(job.startTime!).format("llll") }}
|
|
</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 min-w-[150px] sm:min-w-3xs max-w-sm overflow-hidden text-ellipsis hidden lg:table-cell">
|
|
{{ job.endTime ?
|
|
dayjs(job.endTime).format("llll") : undefined }}</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 min-w-[150px] sm:min-w-3xs max-w-sm overflow-hidden text-ellipsis hidden md:table-cell">
|
|
{{ job.nextFireTime ?
|
|
dayjs(job.nextFireTime).format("llll") : undefined}}</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 min-w-[150px] sm:min-w-3xs max-w-sm overflow-hidden text-ellipsis hidden lg:table-cell">
|
|
{{ job.previousFireTime &&
|
|
job.previousFireTime
|
|
> 0 ? dayjs(job.previousFireTime).format("llll") :
|
|
undefined
|
|
}}
|
|
</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 max-w-[80px] sm:max-w-xs md:max-w-sm overflow-hidden text-ellipsis hidden md:table-cell">
|
|
{{ job.schedulerType }}</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 max-w-[100px] sm:max-w-xs md:max-w-sm overflow-hidden text-ellipsis hidden md:table-cell">
|
|
{{ job.cronExpression }}</td>
|
|
<td
|
|
class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 max-w-[80px] sm:max-w-xs md:max-w-sm overflow-hidden text-ellipsis">
|
|
{{ job.triggerState }}</td>
|
|
<td class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 whitespace-nowrap hidden sm:table-cell">
|
|
<div class="flex items-center gap-x-2">
|
|
<button @click="handleCronUpdateClick(job)" :disabled="job.schedulerType !== 'CRON'"
|
|
:class="['flex items-center justify-center gap-x-1 text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-xs sm:text-sm px-3 py-1.5 sm:px-4 sm:py-2.5' , { 'opacity-50 cursor-not-allowed': job.schedulerType !== 'CRON' }]"
|
|
type="button">
|
|
<svg class="w-3 h-3 sm:w-4 sm:h-4" fill="currentColor" viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M17.414 2.586a2 2 0 00-2.828 0L7 10.172V13h2.828l7.586-7.586a2 2 0 000-2.828z"></path>
|
|
<path fill-rule="evenodd"
|
|
d="M2 6a2 2 0 012-2h4a1 1 0 010 2H4v10h10v-4a1 1 0 112 0v4a2 2 0 01-2 2H4a2 2 0 01-2-2V6z"
|
|
clip-rule="evenodd"></path>
|
|
</svg>
|
|
<span>编辑</span>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
<td class="px-3 py-2 sm:px-4 md:px-6 sm:py-4 whitespace-nowrap">
|
|
<div class="flex flex-col sm:flex-row items-start sm:items-center gap-y-2 sm:gap-y-0 sm:gap-x-2">
|
|
<button
|
|
:class="['text-white bg-green-700 hover:bg-green-800 focus:ring-green-300 focus:ring-4 focus:outline-none font-medium rounded-lg text-xs sm:text-sm px-3 py-1.5 sm:px-4 sm:py-2.5 text-center']"
|
|
@click="handleResumeJobClick(job)" type="button">
|
|
<span>恢复</span>
|
|
</button>
|
|
<button
|
|
:class="['bg-red-700 hover:bg-red-800 focus:ring-red-300 text-white focus:ring-4 focus:outline-none font-medium rounded-lg text-xs sm:text-sm px-3 py-1.5 sm:px-4 sm:py-2.5 text-center']"
|
|
@click="handlePauseJobClick(job)" type="button">
|
|
<span>暂停</span>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<TablePagination :pageChange="handlePageChange" :total="total" />
|
|
</div>
|
|
|
|
<PopupModal :id="'job-resume-modal'" :closeModal="() => {
|
|
jobResumeModal!.hide();
|
|
}" :onSubmit="handleResumeModalSubmit" title="确定恢复该任务吗?" content="恢复任务"></PopupModal>
|
|
<PopupModal :id="'job-pause-modal'" :closeModal="() => {
|
|
jobPauseModal!.hide();
|
|
}" :onSubmit="handlePauseModalSubmit" title="确定暂停该任务吗" content="暂停任务"></PopupModal>
|
|
<SchedulerUpdateModal :job="selectedJob" :id="'job-update-modal'" :closeModal="() => {
|
|
jobUpdateModal!.hide();
|
|
}" :onSubmit="handleUpdateModalSubmit"></SchedulerUpdateModal>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Breadcrumbs from "@/components/Breadcrumbs.vue";
|
|
import MobileCardList from "@/components/MobileCardList.vue";
|
|
import PopupModal from "@/components/PopupModal.vue";
|
|
import SchedulerUpdateModal from "@/components/SchedulerUpdateModal.vue";
|
|
import TablePagination from "@/components/TablePagination.vue";
|
|
import { useJobControl } from "@/composables/job/useJobControl";
|
|
import { useJobsPaginationQuery } from "@/composables/job/useJobQuery";
|
|
import { useJobUpdate } from "@/composables/job/useJobUpdate";
|
|
import useAlertStore from "@/composables/store/useAlertStore";
|
|
import { useMobileStyles } from "@/composables/useMobileStyles";
|
|
import dayjs from "@/utils/dateUtil";
|
|
import { Modal, type ModalInterface, initFlowbite } from "flowbite";
|
|
import { nextTick, onMounted, ref } from "vue";
|
|
import type { components } from "../api/types/schema";
|
|
|
|
const jobName = ref<string>("");
|
|
const jobResumeModal = ref<ModalInterface>();
|
|
const jobPauseModal = ref<ModalInterface>();
|
|
const jobUpdateModal = ref<ModalInterface>();
|
|
const selectedJob = ref<components["schemas"]["JobTriggerDto"]>();
|
|
|
|
const { jobs, total, fetchJobsWith } = useJobsPaginationQuery();
|
|
|
|
const alertStore = useAlertStore();
|
|
|
|
const { resumeTrigger, pauseTrigger } = useJobControl();
|
|
|
|
const { updateCron } = useJobUpdate();
|
|
|
|
const handleResumeJobClick = async (
|
|
currentJob: components["schemas"]["JobTriggerDto"],
|
|
) => {
|
|
selectedJob.value = currentJob;
|
|
await nextTick(() => {
|
|
jobResumeModal.value?.show();
|
|
});
|
|
};
|
|
|
|
const handleCronUpdateClick = async (
|
|
currentJob: components["schemas"]["JobTriggerDto"],
|
|
) => {
|
|
selectedJob.value = currentJob;
|
|
await nextTick(() => {
|
|
jobUpdateModal.value?.show();
|
|
});
|
|
};
|
|
|
|
const handlePauseJobClick = async (
|
|
currentJob: components["schemas"]["JobTriggerDto"],
|
|
) => {
|
|
selectedJob.value = currentJob;
|
|
await nextTick(() => {
|
|
jobPauseModal.value?.show();
|
|
});
|
|
};
|
|
|
|
const handleResumeModalSubmit = async () => {
|
|
await resumeTrigger({
|
|
triggerName: selectedJob.value!.triggerName!,
|
|
triggerGroup: selectedJob.value!.triggerGroup!,
|
|
});
|
|
jobResumeModal.value?.hide();
|
|
alertStore.showAlert({
|
|
level: "success",
|
|
content: "操作成功",
|
|
});
|
|
await fetchJobsWith({
|
|
name: jobName.value,
|
|
});
|
|
};
|
|
|
|
const handleUpdateModalSubmit = async (cronExpression: string) => {
|
|
await updateCron({
|
|
triggerName: selectedJob.value!.triggerName!,
|
|
triggerGroup: selectedJob.value!.triggerGroup!,
|
|
cron: cronExpression,
|
|
});
|
|
jobUpdateModal.value?.hide();
|
|
alertStore.showAlert({
|
|
level: "success",
|
|
content: "操作成功",
|
|
});
|
|
await fetchJobsWith({
|
|
name: jobName.value,
|
|
});
|
|
};
|
|
|
|
const handlePauseModalSubmit = async () => {
|
|
await pauseTrigger({
|
|
triggerName: selectedJob!.value!.triggerName!,
|
|
triggerGroup: selectedJob!.value!.triggerGroup!,
|
|
});
|
|
jobPauseModal.value?.hide();
|
|
alertStore.showAlert({
|
|
level: "success",
|
|
content: "操作成功",
|
|
});
|
|
await fetchJobsWith({
|
|
name: jobName.value,
|
|
});
|
|
};
|
|
|
|
const handleSearch = async () => {
|
|
await fetchJobsWith({
|
|
name: jobName.value,
|
|
});
|
|
};
|
|
|
|
const handlePageChange = async (page: number, pageSize: number) => {
|
|
await fetchJobsWith(
|
|
{
|
|
name: jobName.value,
|
|
},
|
|
page,
|
|
pageSize,
|
|
);
|
|
};
|
|
|
|
onMounted(async () => {
|
|
await fetchJobsWith({
|
|
name: jobName.value,
|
|
});
|
|
initFlowbite();
|
|
const $jobResumeModalElement: HTMLElement | null =
|
|
document.querySelector("#job-resume-modal");
|
|
const $jobPauseModalElement: HTMLElement | null =
|
|
document.querySelector("#job-pause-modal");
|
|
const $jobUpdateModalElement: HTMLElement | null =
|
|
document.querySelector("#job-update-modal");
|
|
if ($jobResumeModalElement) {
|
|
jobResumeModal.value = new Modal($jobResumeModalElement, {});
|
|
}
|
|
if ($jobPauseModalElement) {
|
|
jobPauseModal.value = new Modal($jobPauseModalElement, {});
|
|
}
|
|
if ($jobUpdateModalElement) {
|
|
jobUpdateModal.value = new Modal($jobUpdateModalElement, {});
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|