7dc889852d
* feat: new page layout + endpoint * feat: non-parallel mass import * feat: paginated admin library * feat: lint and performance improvement * feat: library filter util * feat: link frontend features to backend * fix: lint * fix: small fixes * feat: bump torrential * fix: lint
238 lines
8.1 KiB
Vue
238 lines
8.1 KiB
Vue
<template>
|
|
<div>
|
|
<div>
|
|
<h2 class="text-sm font-medium text-zinc-400">
|
|
{{ $t("tasks.admin.runningTasksTitle") }}
|
|
</h2>
|
|
<ul
|
|
role="list"
|
|
class="mt-4 grid grid-cols-1 gap-6 sm:grid-cols-3 lg:grid-cols-4"
|
|
>
|
|
<li
|
|
v-for="task in liveRunningTasks"
|
|
:key="task.value?.id"
|
|
class="col-span-1 divide-y divide-gray-200 rounded-lg bg-zinc-800 border border-zinc-700 shadow-sm"
|
|
>
|
|
<TaskWidget :task="task.value" :active="true" />
|
|
</li>
|
|
</ul>
|
|
<div
|
|
v-if="liveRunningTasks.length == 0"
|
|
class="text-zinc-500 text-sm font-semibold"
|
|
>
|
|
{{ $t("tasks.admin.noTasksRunning") }}
|
|
</div>
|
|
</div>
|
|
<div class="mt-6 w-full grid lg:grid-cols-3 gap-8">
|
|
<div class="col-span-2">
|
|
<h2 class="text-sm font-medium text-zinc-400">
|
|
{{ $t("tasks.admin.completedTasksTitle") }}
|
|
</h2>
|
|
<ul
|
|
role="list"
|
|
class="mt-4 grid grid-cols-1 gap-2 lg:grid-cols-4 overflow-y-scroll max-h-[80vh]"
|
|
>
|
|
<li
|
|
v-for="task in historicalTasks"
|
|
:key="task.id"
|
|
class="col-span-1 divide-y divide-gray-200 rounded-lg bg-zinc-800 border border-zinc-700 shadow-sm"
|
|
>
|
|
<div class="flex w-full items-center justify-between space-x-6 p-2">
|
|
<div class="flex-1 truncate">
|
|
<div class="flex items-center space-x-1">
|
|
<div>
|
|
<CheckCircleIcon
|
|
v-if="task.success"
|
|
class="size-5 text-green-600"
|
|
/>
|
|
<XMarkIcon
|
|
v-else-if="task.error"
|
|
class="size-5 text-red-600"
|
|
/>
|
|
<div
|
|
v-else
|
|
class="size-2 bg-blue-600 rounded-full animate-pulse m-1"
|
|
/>
|
|
</div>
|
|
<h3 class="truncate text-sm font-medium text-zinc-100">
|
|
{{ task.name }}
|
|
</h3>
|
|
</div>
|
|
<ul v-if="task.actions" class="mt-1 flex flex-row gap-x-2">
|
|
<NuxtLink
|
|
v-for="[name, link] in task.actions.map((v) =>
|
|
v.split(':'),
|
|
)"
|
|
:key="link"
|
|
:href="link"
|
|
class="text-xs text-zinc-100 bg-blue-900 p-1 rounded"
|
|
>{{ name }}</NuxtLink
|
|
>
|
|
</ul>
|
|
<NuxtLink
|
|
type="button"
|
|
:href="`/admin/task/${task.id}`"
|
|
class="mt-3 ml-1 rounded-md text-xs font-medium text-zinc-100 hover:text-zinc-300 focus:outline-none focus:ring-2 focus:ring-zinc-100 focus:ring-offset-2"
|
|
>
|
|
<i18n-t
|
|
keypath="tasks.admin.viewTask"
|
|
tag="span"
|
|
scope="global"
|
|
>
|
|
<template #arrow>
|
|
<span aria-hidden="true">{{ $t("chars.arrow") }}</span>
|
|
</template>
|
|
</i18n-t>
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h2 class="text-sm font-medium text-zinc-400">
|
|
{{ $t("tasks.admin.dailyScheduledTitle") }}
|
|
</h2>
|
|
<ul role="list" class="mt-4 grid grid-cols-1 lg:grid-cols-2 gap-6">
|
|
<li
|
|
v-for="task in dailyTasks"
|
|
:key="task"
|
|
class="col-span-1 divide-y divide-gray-200 rounded-lg bg-zinc-800 border border-zinc-700 shadow-sm"
|
|
>
|
|
<div class="flex w-full items-center justify-between space-x-6 p-6">
|
|
<div class="flex-1">
|
|
<div class="flex items-center space-x-2">
|
|
<h3 class="text-sm font-medium text-zinc-100">
|
|
{{ scheduledTasks[task].name }}
|
|
</h3>
|
|
</div>
|
|
<p class="mt-1 text-sm text-zinc-400">
|
|
{{ scheduledTasks[task].description }}
|
|
</p>
|
|
<button
|
|
class="mt-3 rounded-md text-xs font-medium text-zinc-100 hover:text-zinc-300 focus:outline-none focus:ring-2 focus:ring-zinc-100 focus:ring-offset-2"
|
|
@click="() => startTask(task)"
|
|
>
|
|
<i18n-t
|
|
keypath="tasks.admin.execute"
|
|
tag="span"
|
|
scope="global"
|
|
class="inline-flex items-center gap-x-1"
|
|
>
|
|
<template #arrow>
|
|
<PlayIcon class="size-4" aria-hidden="true" />
|
|
</template>
|
|
</i18n-t>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<h2 class="text-sm font-medium text-zinc-400 mt-8">
|
|
{{ $t("tasks.admin.weeklyScheduledTitle") }}
|
|
</h2>
|
|
<ul role="list" class="mt-4 grid grid-cols-1 lg:grid-cols-2 gap-6">
|
|
<li
|
|
v-for="task in weeklyTasks"
|
|
:key="task"
|
|
class="col-span-1 divide-y divide-gray-200 rounded-lg bg-zinc-800 border border-zinc-700 shadow-sm"
|
|
>
|
|
<div class="flex w-full items-center justify-between space-x-6 p-6">
|
|
<div class="flex-1">
|
|
<div class="flex items-center space-x-2">
|
|
<h3 class="text-sm font-medium text-zinc-100">
|
|
{{ scheduledTasks[task].name }}
|
|
</h3>
|
|
</div>
|
|
<p class="mt-1 text-sm text-zinc-400">
|
|
{{ scheduledTasks[task].description }}
|
|
</p>
|
|
<button
|
|
class="mt-3 rounded-md text-xs font-medium text-zinc-100 hover:text-zinc-300 focus:outline-none focus:ring-2 focus:ring-zinc-100 focus:ring-offset-2"
|
|
@click="() => startTask(task)"
|
|
>
|
|
<i18n-t
|
|
keypath="tasks.admin.execute"
|
|
tag="span"
|
|
scope="global"
|
|
class="inline-flex items-center gap-x-1"
|
|
>
|
|
<template #arrow>
|
|
<PlayIcon class="size-4" aria-hidden="true" />
|
|
</template>
|
|
</i18n-t>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { CheckCircleIcon, XMarkIcon } from "@heroicons/vue/24/solid";
|
|
import { PlayIcon } from "@heroicons/vue/24/outline";
|
|
import type { TaskGroup } from "~/server/internal/tasks/group";
|
|
|
|
useHead({
|
|
title: "Tasks",
|
|
});
|
|
|
|
definePageMeta({
|
|
layout: "admin",
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { runningTasks, historicalTasks, dailyTasks, weeklyTasks } =
|
|
await $dropFetch("/api/v1/admin/task");
|
|
|
|
const liveRunningTasks = ref(
|
|
await Promise.all(runningTasks.map((e) => useTask(e))),
|
|
);
|
|
|
|
const scheduledTasks: {
|
|
[key in TaskGroup]: { name: string; description: string };
|
|
} = {
|
|
"cleanup:invitations": {
|
|
name: t("tasks.admin.scheduled.cleanupInvitationsName"),
|
|
description: t("tasks.admin.scheduled.cleanupInvitationsDescription"),
|
|
},
|
|
"cleanup:objects": {
|
|
name: t("tasks.admin.scheduled.cleanupObjectsName"),
|
|
description: t("tasks.admin.scheduled.cleanupObjectsDescription"),
|
|
},
|
|
"cleanup:sessions": {
|
|
name: t("tasks.admin.scheduled.cleanupSessionsName"),
|
|
description: t("tasks.admin.scheduled.cleanupSessionsDescription"),
|
|
},
|
|
"check:update": {
|
|
name: t("tasks.admin.scheduled.checkUpdateName"),
|
|
description: t("tasks.admin.scheduled.checkUpdateDescription"),
|
|
},
|
|
"import:game": {
|
|
name: "",
|
|
description: "",
|
|
},
|
|
"import:version": {
|
|
name: "",
|
|
description: "",
|
|
},
|
|
debug: {
|
|
name: "",
|
|
description: "",
|
|
},
|
|
};
|
|
|
|
async function startTask(taskGroup: string) {
|
|
const task = await $dropFetch("/api/v1/admin/task", {
|
|
method: "POST",
|
|
body: { taskGroup },
|
|
failTitle: "Failed to start task",
|
|
});
|
|
const taskRef = await useTask(task.id);
|
|
liveRunningTasks.value.push(taskRef);
|
|
}
|
|
</script>
|