mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-31 20:25:14 -04:00
feat(frontend): ✨ Add UI for background tasks
This commit is contained in:
parent
a94b9d504f
commit
7f99c3d113
@ -120,6 +120,11 @@ export default defineComponent({
|
|||||||
to: "/admin/backups",
|
to: "/admin/backups",
|
||||||
title: i18n.t("sidebar.backups"),
|
title: i18n.t("sidebar.backups"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: $globals.icons.check,
|
||||||
|
to: "/admin/background-tasks",
|
||||||
|
title: "Background Tasks",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: $globals.icons.slotMachine,
|
icon: $globals.icons.slotMachine,
|
||||||
to: "/admin/parser",
|
to: "/admin/parser",
|
||||||
|
87
frontend/pages/admin/background-tasks.vue
Normal file
87
frontend/pages/admin/background-tasks.vue
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
<template>
|
||||||
|
<v-container class="narrow-container">
|
||||||
|
<BasePageTitle divider>
|
||||||
|
<template #header>
|
||||||
|
<v-img max-height="125" max-width="125" :src="require('~/static/svgs/manage-tasks.svg')"></v-img>
|
||||||
|
</template>
|
||||||
|
<template #title> Background Tasks </template>
|
||||||
|
Here you can view all the running background tasks and their status
|
||||||
|
</BasePageTitle>
|
||||||
|
<v-card-actions>
|
||||||
|
<BaseButton color="info" :loading="loading" @click="refreshTasks">
|
||||||
|
<template #icon> {{ $globals.icons.refresh }} </template>
|
||||||
|
Refresh
|
||||||
|
</BaseButton>
|
||||||
|
<BaseButton color="info" @click="testTask">
|
||||||
|
<template #icon> {{ $globals.icons.testTube }} </template>
|
||||||
|
Test
|
||||||
|
</BaseButton>
|
||||||
|
</v-card-actions>
|
||||||
|
<v-expansion-panels class="mt-2">
|
||||||
|
<v-expansion-panel v-for="(task, i) in tasks" :key="i">
|
||||||
|
<v-expansion-panel-header>
|
||||||
|
<span>
|
||||||
|
<v-progress-circular v-if="task.status === 'running'" indeterminate color="info"></v-progress-circular>
|
||||||
|
<v-icon v-else-if="task.status === 'finished'" large color="success"> {{ $globals.icons.check }}</v-icon>
|
||||||
|
<v-icon v-else-if="task.status === 'failed'" large color="error"> {{ $globals.icons.close }}</v-icon>
|
||||||
|
<v-icon v-else-if="task.status === 'pending'" large color="gray"> {{ $globals.icons.pending }}</v-icon>
|
||||||
|
<span class="ml-2">
|
||||||
|
{{ task.name }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
{{ $d(Date.parse(task.createdAt), "short") }}
|
||||||
|
</v-expansion-panel-header>
|
||||||
|
<v-expansion-panel-content style="white-space: pre-line">
|
||||||
|
{{ task.log === "" ? "No Logs Found" : task.log }}
|
||||||
|
</v-expansion-panel-content>
|
||||||
|
</v-expansion-panel>
|
||||||
|
</v-expansion-panels>
|
||||||
|
</v-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent, onMounted, ref } from "@nuxtjs/composition-api";
|
||||||
|
import { ServerTask } from "~/api/types/server-task";
|
||||||
|
import { useAdminApi } from "~/composables/use-api";
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
layout: "admin",
|
||||||
|
setup() {
|
||||||
|
const api = useAdminApi();
|
||||||
|
|
||||||
|
const tasks = ref<ServerTask[]>([]);
|
||||||
|
const loading = ref(false);
|
||||||
|
|
||||||
|
async function refreshTasks() {
|
||||||
|
loading.value = true;
|
||||||
|
const { data } = await api.serverTasks.getAll();
|
||||||
|
|
||||||
|
if (data) {
|
||||||
|
tasks.value = data;
|
||||||
|
}
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function testTask() {
|
||||||
|
await api.serverTasks.testTask();
|
||||||
|
refreshTasks();
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await refreshTasks();
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
loading,
|
||||||
|
refreshTasks,
|
||||||
|
testTask,
|
||||||
|
tasks,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
head() {
|
||||||
|
return {
|
||||||
|
title: "Tasks",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
@ -78,7 +78,7 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { computed, defineComponent, onMounted, reactive, toRefs, ref } from "@nuxtjs/composition-api";
|
import { computed, defineComponent, onMounted, reactive, toRefs, ref } from "@nuxtjs/composition-api";
|
||||||
import { CheckAppConfig } from "~/api/class-interfaces/admin-about";
|
import { CheckAppConfig } from "~/api/admin/admin-about";
|
||||||
import { useAdminApi, useApiSingleton } from "~/composables/use-api";
|
import { useAdminApi, useApiSingleton } from "~/composables/use-api";
|
||||||
import { validators } from "~/composables/use-validators";
|
import { validators } from "~/composables/use-validators";
|
||||||
|
|
||||||
|
1
frontend/static/svgs/manage-tasks.svg
Normal file
1
frontend/static/svgs/manage-tasks.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 9.7 KiB |
@ -98,6 +98,8 @@ import {
|
|||||||
mdiBeakerOutline,
|
mdiBeakerOutline,
|
||||||
mdiArrowLeftBoldOutline,
|
mdiArrowLeftBoldOutline,
|
||||||
mdiArrowRightBoldOutline,
|
mdiArrowRightBoldOutline,
|
||||||
|
mdiTimerSand,
|
||||||
|
mdiRefresh,
|
||||||
} from "@mdi/js";
|
} from "@mdi/js";
|
||||||
|
|
||||||
export const icons = {
|
export const icons = {
|
||||||
@ -197,6 +199,8 @@ export const icons = {
|
|||||||
edit: mdiSquareEditOutline,
|
edit: mdiSquareEditOutline,
|
||||||
close: mdiClose,
|
close: mdiClose,
|
||||||
minus: mdiMinus,
|
minus: mdiMinus,
|
||||||
|
pending: mdiTimerSand,
|
||||||
|
refresh: mdiRefresh,
|
||||||
|
|
||||||
// Organization
|
// Organization
|
||||||
tags: mdiTagMultipleOutline,
|
tags: mdiTagMultipleOutline,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user