ytptube/ui/app/pages/tasks.vue
2026-06-08 07:11:31 +03:00

1455 lines
45 KiB
Vue

<template>
<main class="w-full min-w-0 max-w-full space-y-6">
<div class="flex flex-col gap-4 xl:flex-row xl:items-start xl:justify-between">
<div class="flex min-w-0 items-center gap-3">
<span
class="inline-flex size-11 shrink-0 items-center justify-center rounded-md border border-default bg-elevated/70 text-primary"
>
<UIcon :name="pageShell.icon" class="size-5" />
</span>
<div class="min-w-0 space-y-2">
<div
class="flex flex-wrap items-center gap-2 text-xs font-medium uppercase tracking-[0.2em] text-toned"
>
<span>{{ pageShell.sectionLabel }}</span>
<span>/</span>
<span>{{ pageShell.pageLabel }}</span>
</div>
<p class="max-w-3xl text-sm text-toned">{{ pageShell.description }}</p>
</div>
</div>
<div class="flex min-w-0 flex-wrap items-center justify-end gap-2 xl:justify-end">
<UButton
v-if="tasks.length > 0"
color="neutral"
:variant="showFilter ? 'soft' : 'outline'"
size="sm"
icon="i-lucide-filter"
@click="toggleFilterPanel"
>
<span>Filter</span>
</UButton>
<UButton
color="neutral"
variant="outline"
size="sm"
icon="i-lucide-plus"
@click="openCreateForm"
>
<span>New Task</span>
</UButton>
<UButton
color="neutral"
variant="outline"
size="sm"
:icon="displayStyle === 'list' ? 'i-lucide-list' : 'i-lucide-grid-2x2'"
class="hidden sm:inline-flex"
@click="toggleDisplayStyle"
>
<span class="hidden sm:inline">{{ displayStyle === 'list' ? 'List' : 'Grid' }}</span>
</UButton>
<UButton
v-if="tasks.length > 0"
color="neutral"
variant="outline"
size="sm"
icon="i-lucide-refresh-cw"
:loading="isLoading"
:disabled="isLoading"
@click="() => void loadContent(page)"
>
<span>Reload</span>
</UButton>
<UInput
v-if="showFilter && tasks.length > 0"
id="filter"
ref="filterInput"
v-model="query"
type="search"
placeholder="Filter displayed content"
icon="i-lucide-filter"
size="sm"
class="order-last w-full sm:order-first sm:w-80"
/>
</div>
</div>
<div
v-if="!isLoading && filteredTasks.length > 0"
class="flex flex-wrap items-center justify-between gap-3 rounded-lg border border-default bg-default px-3 py-3"
>
<div class="flex flex-wrap items-center gap-2">
<UButton
color="neutral"
variant="outline"
size="sm"
:icon="allSelected ? 'i-lucide-square' : 'i-lucide-square-check-big'"
@click="toggleMasterSelection"
>
{{ allSelected ? 'Unselect' : 'Select' }}
</UButton>
<UBadge v-if="selectedElms.length > 0" color="error" variant="soft" size="sm">
{{ selectedElms.length }}
</UBadge>
<UDropdownMenu :items="bulkActionGroups" :modal="false">
<UButton
color="neutral"
variant="outline"
size="sm"
icon="i-lucide-list"
trailing-icon="i-lucide-chevron-down"
>
Actions
</UButton>
</UDropdownMenu>
</div>
<UPagination
v-if="paging?.total_pages > 1"
:page="paging.page"
:total="paging.total"
:items-per-page="paging.per_page"
:disabled="isLoading"
show-edges
:sibling-count="0"
@update:page="loadContent"
size="sm"
/>
</div>
<div
v-if="contentStyle === 'list' && filteredTasks.length > 0"
class="w-full min-w-0 max-w-full overflow-hidden rounded-lg border border-default bg-default"
>
<div class="w-full max-w-full overflow-x-auto overscroll-x-contain">
<table class="min-w-210 table-fixed w-full text-sm">
<thead class="bg-muted/40 text-xs uppercase tracking-wide text-toned">
<tr
class="text-center [&>th]:border-r [&>th]:border-default/60 [&>th]:px-3 [&>th]:py-3 [&>th]:font-semibold [&>th:last-child]:border-r-0"
>
<th class="w-12">
<button type="button" class="cursor-pointer" @click="toggleMasterSelection">
<UIcon
:name="allSelected ? 'i-lucide-square' : 'i-lucide-square-check-big'"
class="size-4"
/>
</button>
</th>
<th class="w-full text-left">Task</th>
<th class="w-50 whitespace-nowrap">Timer</th>
<th class="w-75 whitespace-nowrap">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-default">
<tr
v-for="item in filteredTasks"
:key="item.id"
class="align-top transition-colors hover:bg-elevated/70 [&>td]:border-r [&>td]:border-default/60 [&>td:last-child]:border-r-0"
>
<td class="px-3 py-3 text-center align-top">
<label class="inline-flex cursor-pointer items-center justify-center">
<input
v-model="selectedElms"
class="completed-checkbox size-4 rounded border-default"
type="checkbox"
:value="item.id"
/>
</label>
</td>
<td class="w-0 px-3 py-3 align-top">
<div class="flex items-start justify-between gap-3">
<div class="min-w-0 flex-1 space-y-2">
<div class="flex items-start gap-2">
<NuxtLink
target="_blank"
:href="item.url"
class="min-w-0 truncate font-semibold text-highlighted hover:underline"
>
{{ remove_tags(item.name) }}
</NuxtLink>
<UIcon
v-if="item.id && isTaskInProgress(item.id)"
name="i-lucide-loader-circle"
class="mt-0.5 size-4 shrink-0 animate-spin text-info"
/>
</div>
<div
v-if="get_tags(item.name).length > 0"
class="flex flex-wrap items-center gap-1"
>
<UBadge
v-for="tag in get_tags(item.name)"
:key="`${item.id}-${tag}`"
color="info"
variant="soft"
size="sm"
>
{{ tag }}
</UBadge>
</div>
<div class="flex flex-wrap items-center gap-2 text-xs text-toned">
<button
type="button"
class="inline-flex items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default"
@click="() => void toggleFlag(item, 'enabled')"
>
<UIcon
name="i-lucide-power"
class="size-3.5"
:class="item.enabled !== false ? 'text-success' : 'text-error'"
/>
<span>{{ item.enabled !== false ? 'Enabled' : 'Disabled' }}</span>
</button>
<button
type="button"
class="inline-flex items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default"
@click="() => void toggleFlag(item, 'auto_start')"
>
<UIcon
name="i-lucide-circle-play"
class="size-3.5"
:class="item.auto_start ? 'text-success' : 'text-error'"
/>
<span>Auto start: {{ item.auto_start ? 'Yes' : 'No' }}</span>
</button>
<button
type="button"
class="inline-flex items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default"
@click="() => void toggleFlag(item, 'handler_enabled')"
>
<UIcon
name="i-lucide-rss"
class="size-3.5"
:class="item.handler_enabled !== false ? 'text-success' : 'text-error'"
/>
<span>Handler: {{ item.handler_enabled !== false ? 'On' : 'Off' }}</span>
</button>
<span
class="inline-flex items-center gap-1 rounded-md border border-default px-2 py-1"
>
<UIcon name="i-lucide-sliders-horizontal" class="size-3.5" />
<span class="capitalize">
Preset: {{ item.preset ?? config.app.default_preset }}
</span>
</span>
</div>
</div>
</div>
</td>
<td class="px-3 py-3 align-top text-center">
<div class="space-y-1">
<template v-if="item.timer">
<UTooltip :text="item.timer">
<a
class="font-medium text-highlighted hover:underline"
target="_blank"
:href="`https://crontab.guru/#${item.timer.replace(/ /g, '_')}`"
>
{{ item.timer }}
</a>
</UTooltip>
<p
class="text-xs"
:class="tryParse(item.timer) === 'Invalid' ? 'text-error' : 'text-toned'"
>
{{ tryParse(item.timer) }}
</p>
</template>
<p
v-else-if="!willTaskBeProcessed(item)"
class="text-xs font-medium text-error whitespace-nowrap"
>
<span class="inline-flex items-center gap-1 whitespace-nowrap">
<UIcon name="i-lucide-triangle-alert" class="size-3.5" />
<span>Not configured</span>
</span>
</p>
<p v-else class="text-xs font-medium text-toned whitespace-nowrap">
<span class="inline-flex items-center gap-1 whitespace-nowrap">
<UIcon name="i-lucide-rss" class="size-3.5" />
<span>Handler only</span>
</span>
</p>
</div>
</td>
<td class="w-56 px-3 py-3 align-top whitespace-nowrap">
<div class="flex items-center justify-end gap-2">
<UButton
color="neutral"
variant="outline"
size="xs"
icon="i-lucide-pencil"
@click="editItem(item)"
>
Edit
</UButton>
<UButton
color="neutral"
variant="outline"
size="xs"
icon="i-lucide-trash"
@click="() => void deleteItem(item)"
>
Delete
</UButton>
<UDropdownMenu :items="itemActionGroups(item)" :modal="false">
<UButton
color="neutral"
variant="outline"
size="xs"
icon="i-lucide-settings-2"
trailing-icon="i-lucide-chevron-down"
>
Actions
</UButton>
</UDropdownMenu>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div
v-else-if="filteredTasks.length > 0"
class="grid grid-cols-1 gap-4 md:grid-cols-2 xl:grid-cols-3"
>
<div v-for="item in filteredTasks" :key="item.id" class="min-w-0 w-full max-w-full">
<UCard
class="flex h-full min-w-0 w-full max-w-full flex-col"
:ui="{
root: 'bg-default border border-default',
header: 'p-4 pb-3',
body: 'flex flex-1 flex-col gap-4 p-4 pt-0',
footer: 'border-t border-default px-4 py-4',
}"
>
<template #header>
<div class="flex min-w-0 items-start justify-between gap-3">
<div class="min-w-0 flex-1 space-y-2">
<div class="flex items-start gap-2">
<NuxtLink
target="_blank"
:href="item.url"
class="mt-0.5 shrink-0 text-toned transition hover:text-highlighted"
aria-label="Open source URL"
>
<UIcon name="i-lucide-external-link" class="size-4" />
</NuxtLink>
<button
type="button"
class="min-w-0 flex-1 text-left text-sm font-semibold text-highlighted"
@click="toggleExpand(item.id, 'title')"
>
<span :class="['block', expandClass(item.id, 'title')]">
{{ remove_tags(item.name) }}
</span>
</button>
<UIcon
v-if="item.id && isTaskInProgress(item.id)"
name="i-lucide-loader-circle"
class="mt-0.5 size-4 shrink-0 animate-spin text-info"
/>
</div>
<div
v-if="get_tags(item.name).length > 0"
class="flex flex-wrap items-center gap-1"
>
<UBadge
v-for="tag in get_tags(item.name)"
:key="`${item.id}-${tag}`"
color="info"
variant="soft"
size="sm"
>
{{ tag }}
</UBadge>
</div>
</div>
<div class="flex shrink-0 items-center gap-2">
<UButton
color="neutral"
variant="ghost"
size="xs"
icon="i-lucide-file-up"
square
@click="() => void exportItem(item)"
>
<span>Export Task</span>
</UButton>
<label class="inline-flex cursor-pointer items-center justify-center">
<input
v-model="selectedElms"
class="completed-checkbox size-4 rounded border-default"
type="checkbox"
:value="item.id"
/>
</label>
</div>
</div>
</template>
<div class="space-y-2 text-sm text-default">
<div class="grid grid-cols-2 gap-2 text-xs text-toned sm:flex sm:flex-wrap">
<button
type="button"
class="flex min-w-0 w-full items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default sm:w-auto sm:flex-none sm:shrink-0 sm:whitespace-nowrap"
@click="() => void toggleFlag(item, 'enabled')"
>
<UIcon
name="i-lucide-power"
class="size-3.5"
:class="item.enabled !== false ? 'text-success' : 'text-error'"
/>
<span>{{ item.enabled !== false ? 'Enabled' : 'Disabled' }}</span>
</button>
<button
type="button"
class="flex min-w-0 w-full items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default sm:w-auto sm:flex-none sm:shrink-0 sm:whitespace-nowrap"
@click="() => void toggleFlag(item, 'auto_start')"
>
<UIcon
name="i-lucide-circle-play"
class="size-3.5"
:class="item.auto_start ? 'text-success' : 'text-error'"
/>
<span>Auto start: {{ item.auto_start ? 'Yes' : 'No' }}</span>
</button>
<button
type="button"
class="flex min-w-0 w-full items-center gap-1 rounded-md border border-default px-2 py-1 transition hover:border-primary hover:text-default sm:w-auto sm:flex-none sm:shrink-0 sm:whitespace-nowrap"
@click="() => void toggleFlag(item, 'handler_enabled')"
>
<UIcon
name="i-lucide-rss"
class="size-3.5"
:class="item.handler_enabled !== false ? 'text-success' : 'text-error'"
/>
<span>Handler: {{ item.handler_enabled !== false ? 'On' : 'Off' }}</span>
</button>
<button
type="button"
class="flex min-w-0 w-full items-start gap-1 rounded-md border border-default px-2 py-1 text-left transition hover:border-primary hover:text-default sm:flex-1"
@click="toggleExpand(item.id, 'preset')"
>
<UIcon name="i-lucide-sliders-horizontal" class="size-3.5" />
<span class="min-w-0 flex-1">
<span :class="['min-w-0 capitalize', expandClass(item.id, 'preset')]">
Preset: {{ item.preset ?? config.app.default_preset }}
</span>
</span>
</button>
</div>
<div
v-if="
item.timer || item.folder || item.template || item.cli || willTaskBeProcessed(item)
"
class="feature-meta-grid"
>
<button
type="button"
class="flex min-w-0 w-full items-start gap-2 rounded-md border border-default bg-muted/20 px-3 py-2 text-left"
@click="toggleExpand(item.id, 'schedule')"
>
<UIcon
:name="
item.timer
? 'i-lucide-clock-3'
: willTaskBeProcessed(item)
? 'i-lucide-rss'
: 'i-lucide-triangle-alert'
"
class="mt-0.5 size-4 shrink-0"
:class="!item.timer && !willTaskBeProcessed(item) ? 'text-error' : 'text-toned'"
/>
<div class="min-w-0 flex-1">
<div class="text-xs font-medium text-toned">Schedule</div>
<template v-if="item.timer">
<a
target="_blank"
:href="`https://crontab.guru/#${item.timer.replace(/ /g, '_')}`"
class="block text-highlighted hover:underline"
@click.stop
>
<span :class="['block', expandClass(item.id, 'schedule')]">
{{ item.timer }} ( {{ tryParse(item.timer) }} )
</span>
</a>
</template>
<p
v-else-if="willTaskBeProcessed(item)"
:class="['text-sm text-default', expandClass(item.id, 'schedule')]"
>
Handler only
</p>
<p v-else :class="['text-sm text-error', expandClass(item.id, 'schedule')]">
Not configured
</p>
</div>
</button>
<button
v-if="item.folder"
type="button"
class="flex min-w-0 w-full items-start gap-2 rounded-md border border-default bg-muted/20 px-3 py-2 text-left"
@click="toggleExpand(item.id, 'folder')"
>
<UIcon name="i-lucide-folder-output" class="mt-0.5 size-4 shrink-0 text-toned" />
<div class="min-w-0 flex-1">
<div class="text-xs font-medium text-toned">Download path</div>
<span :class="['block', expandClass(item.id, 'folder')]">
{{ calcPath(item.folder) }}
</span>
</div>
</button>
<button
v-if="item.template"
type="button"
class="flex min-w-0 w-full items-start gap-2 rounded-md border border-default bg-muted/20 px-3 py-2 text-left"
@click="toggleExpand(item.id, 'template')"
>
<UIcon name="i-lucide-file-code-2" class="mt-0.5 size-4 shrink-0 text-toned" />
<div class="min-w-0 flex-1">
<div class="text-xs font-medium text-toned">Output template</div>
<span :class="['block', expandClass(item.id, 'template')]">{{
item.template
}}</span>
</div>
</button>
<button
v-if="item.cli"
type="button"
class="flex min-w-0 w-full items-start gap-2 rounded-md border border-default bg-muted/20 px-3 py-2 text-left"
@click="toggleExpand(item.id, 'cli')"
>
<UIcon name="i-lucide-terminal" class="mt-0.5 size-4 shrink-0 text-toned" />
<div class="min-w-0 flex-1">
<div class="text-xs font-medium text-toned">CLI options</div>
<span :class="['block', expandClass(item.id, 'cli')]">{{ item.cli }}</span>
</div>
</button>
</div>
</div>
<template #footer>
<div class="flex flex-wrap gap-2 *:min-w-32 *:flex-1">
<UButton
color="neutral"
variant="outline"
icon="i-lucide-pencil"
class="w-full justify-center"
@click="editItem(item)"
>
Edit
</UButton>
<UButton
color="neutral"
variant="outline"
icon="i-lucide-trash"
class="w-full justify-center"
@click="() => void deleteItem(item)"
>
Delete
</UButton>
<UDropdownMenu :items="itemActionGroups(item)" :modal="false">
<UButton
color="neutral"
variant="outline"
icon="i-lucide-settings-2"
trailing-icon="i-lucide-chevron-down"
class="w-full justify-center"
>
Actions
</UButton>
</UDropdownMenu>
</div>
</template>
</UCard>
</div>
</div>
<UAlert
v-if="isLoading"
color="info"
variant="soft"
icon="i-lucide-loader-circle"
title="Loading"
description="Loading data. Please wait..."
/>
<div v-else-if="query && filteredTasks.length < 1" class="space-y-3">
<UAlert
color="warning"
variant="soft"
icon="i-lucide-search"
title="No Results"
:description="`No results found for the query: ${query}. Please try a different search term.`"
/>
</div>
<UAlert
v-if="!query && tasks.length < 1"
color="warning"
variant="soft"
icon="i-lucide-circle-alert"
title="No tasks."
description="There are no tasks defined yet. Click the New Task button to create your first automated download task."
/>
<div v-if="filteredTasks.length > 0 && paging?.total_pages > 1" class="flex justify-end">
<UPagination
:page="paging.page"
:total="paging.total"
:items-per-page="paging.per_page"
:disabled="isLoading"
show-edges
:sibling-count="0"
@update:page="loadContent"
size="sm"
/>
</div>
<UAlert v-if="tasks.length > 0" color="info" variant="soft">
<template #description>
<ul class="list-disc space-y-2 pl-5 text-sm text-default">
<li>
<span class="text-error">
All tasks operations require <code>--download-archive</code> to be set in the
<b>preset</b> or in the <b>command options for yt-dlp</b> for the task to be
dispatched. If you have selected one of the built in presets it already includes this
option and no further action is required.
</span>
</li>
<li>
To avoid downloading all existing content from a channel/playlist, use
<code>Actions &gt; Archive All</code> to mark existing items as already downloaded.
</li>
<li>
<strong>Timer Requirement:</strong> Tasks must have either a valid timer or a supported
handler. If the URL does not match a handler, set a CRON timer.
</li>
<li>
<strong>Generate metadata:</strong> will attempt first to save metadata based on the
task <code>Download path</code> if not set, it will fallback to the
<code>Output template</code> with the priority of <code>task</code>,
<code>preset</code> and then finally to <code>YTP_OUTPUT_TEMPLATE</code>. The final path
must resolve inside <code>{{ config.app.download_path }}</code
>.
</li>
<li>
It's pretty normal for youtube rss feeds to return 404 from around
<span class="text-error">00:00 UTC</span> to around
<span class="text-error">06:00 UTC</span>. This is because youtube updates the feeds
around that time The tasks will automatically recover once the feeds are available
again.
</li>
</ul>
</template>
</UAlert>
<UModal
v-if="toggleForm"
:open="toggleForm"
:title="taskRef ? `Edit - ${task.name || 'Task'}` : 'Add new task'"
:description="
taskRef
? 'Update the settings of your automated download task'
: 'Create an automated download task'
"
:dismissible="!addInProgress"
:ui="{ content: 'w-full sm:max-w-7xl', body: 'max-h-[85vh] overflow-y-auto p-4 sm:p-6' }"
@update:open="handleEditorOpenChange"
>
<template #body>
<TaskForm
:key="formKey"
:addInProgress="addInProgress"
:reference="taskRef"
:task="task as Task"
@cancel="() => void requestCloseEditor()"
@dirty-change="(dirty) => (editorDirty = dirty)"
@submit="updateItem"
/>
</template>
</UModal>
<UModal
v-if="inspectTask"
:open="Boolean(inspectTask)"
title="Inspect Task Handler"
description="Inspect how the current task URL maps to a handler."
:ui="{ content: 'w-full sm:max-w-4xl', body: 'max-h-[85vh] overflow-y-auto p-4 sm:p-6' }"
@update:open="(open) => !open && (inspectTask = null)"
>
<template #body>
<TaskInspect :url="inspectTask.url" :preset="inspectTask.preset" />
</template>
</UModal>
</main>
</template>
<script setup lang="ts">
import moment from 'moment';
import type { DropdownMenuItem } from '@nuxt/ui';
import { useStorage } from '@vueuse/core';
import { CronExpressionParser } from 'cron-parser';
import { useConfirm } from '~/composables/useConfirm';
import { useExpandableMeta } from '~/composables/useExpandableMeta';
import { useTasks } from '~/composables/useTasks';
import TaskInspect from '~/components/TaskInspect.vue';
import type { ExportedTask, Task } from '~/types/tasks';
import type { WSEP } from '~/types/sockets';
import { sleep } from '~/utils';
import { useSessionCache } from '~/utils/cache';
import type { item_request } from '~/types/item';
import { requirePageShell } from '~/utils/topLevelNavigation';
const box = useConfirm();
const toast = useNotification();
const config = useYtpConfig();
const socket = useAppSocket();
const stateStore = useQueueState();
const pageShell = requirePageShell('tasks');
const route = useRoute();
const router = useRouter();
const { confirmDialog } = useDialog();
const sessionCache = useSessionCache();
const { toggleExpand, expandClass } = useExpandableMeta();
const display_style = useStorage<'list' | 'grid' | 'cards'>('tasks_display_style', 'grid');
const isMobile = useMediaQuery({ maxWidth: 639 });
const tasksComposable = useTasks();
const {
tasks,
pagination: paging,
isLoading,
addInProgress,
isTaskInProgress,
setTaskInProgress,
clearTaskInProgress,
} = tasksComposable;
const createEmptyTask = (): Partial<Task> => ({
name: '',
url: '',
timer: '',
preset: '',
folder: '',
template: '',
cli: '',
auto_start: true,
handler_enabled: true,
enabled: true,
});
const task = ref<Partial<Task>>(createEmptyTask());
const taskRef = ref<number | null>(null);
const toggleForm = ref(false);
const editorDirty = ref(false);
const selectedElms = ref<number[]>([]);
const massRun = ref(false);
const massDelete = ref(false);
const inspectTask = ref<Task | null>(null);
const query = ref('');
const showFilter = ref(false);
const filterInput = ref<{ inputRef?: { value?: HTMLInputElement | null } } | null>(null);
const page = ref<number>(route.query.page ? parseInt(route.query.page as string, 10) : 1);
const CACHE_KEY = 'tasks:handler_support';
const taskHandlerSupport = ref<Record<string, boolean>>(sessionCache.get(CACHE_KEY) || {});
const displayStyle = computed<'list' | 'grid'>(() =>
display_style.value === 'list' ? 'list' : 'grid',
);
const contentStyle = computed<'list' | 'grid'>(() =>
isMobile.value ? 'grid' : displayStyle.value,
);
const editorSessionId = ref(0);
const formKey = computed(() => `${taskRef.value ?? 'new'}:${editorSessionId.value}`);
const discardEditor = (): void => {
editorDirty.value = false;
task.value = createEmptyTask();
taskRef.value = null;
};
const { handleOpenChange: handleEditorOpenChange, requestClose: requestCloseEditor } =
useDirtyCloseGuard(toggleForm, {
dirty: editorDirty,
message: 'You have unsaved task changes. Do you want to discard them?',
onDiscard: async () => {
discardEditor();
},
});
const filteredTasks = computed(() => {
const normalizedQuery = query.value?.toLowerCase();
if (!normalizedQuery) {
return tasks.value;
}
return tasks.value.filter((item) => deepIncludes(item, normalizedQuery, new WeakSet()));
});
const selectableTaskIds = computed(() =>
filteredTasks.value.map((item) => item.id).filter((id): id is number => typeof id === 'number'),
);
const allSelected = computed(
() =>
selectableTaskIds.value.length > 0 &&
selectableTaskIds.value.every((id) => selectedElms.value.includes(id)),
);
const hasSelected = computed(() => selectedElms.value.length > 0);
const bulkActionGroups = computed<DropdownMenuItem[][]>(() => [
[
{
label: 'Run Selected',
icon: 'i-lucide-square-play',
color: 'primary',
disabled: !hasSelected.value || massRun.value,
onSelect: () => void runSelected(),
},
{
label: 'Remove Selected',
icon: 'i-lucide-trash',
color: 'error',
disabled: !hasSelected.value || massDelete.value,
onSelect: () => void deleteSelected(),
},
],
]);
watch(showFilter, (value) => {
if (!value) {
query.value = '';
}
});
watch(
filteredTasks,
(items) => {
const validIds = new Set(
items.map((item) => item.id).filter((id): id is number => typeof id === 'number'),
);
selectedElms.value = selectedElms.value.filter((id) => validIds.has(id));
},
{ deep: true },
);
watch(taskHandlerSupport, (newValue) => sessionCache.set(CACHE_KEY, newValue), { deep: true });
watch(
() => socket.isConnected,
(connected) => {
socket.off('item_status', statusHandler);
if (connected) {
socket.on('item_status', statusHandler);
}
},
{ immediate: true },
);
const syncPageQuery = async (pageNumber: number): Promise<void> => {
const totalPages = tasksComposable.pagination.value.total_pages;
const nextQuery = { ...route.query };
if (totalPages > 1) {
nextQuery.page = String(pageNumber);
} else {
delete nextQuery.page;
}
await router.replace({ query: nextQuery });
};
const toggleFilterPanel = async (): Promise<void> => {
showFilter.value = !showFilter.value;
if (!showFilter.value) {
query.value = '';
return;
}
await nextTick();
filterInput.value?.inputRef?.value?.focus?.({ preventScroll: true });
};
const toggleMasterSelection = (): void => {
if (allSelected.value) {
selectedElms.value = [];
return;
}
selectedElms.value = [...selectableTaskIds.value];
};
const toggleDisplayStyle = (): void => {
display_style.value = displayStyle.value === 'list' ? 'grid' : 'list';
};
const getCacheKey = (item: Task): string => `${item.id}:${item.url}`;
const cleanStaleCache = (currentTasks: ReadonlyArray<Task>) => {
const validKeys = new Set(currentTasks.map((item) => getCacheKey(item)));
const nextCache: Record<string, boolean> = {};
Object.keys(taskHandlerSupport.value).forEach((key) => {
if (validKeys.has(key)) {
nextCache[key] = Boolean(taskHandlerSupport.value[key]);
}
});
taskHandlerSupport.value = nextCache;
};
const checkHandlerSupport = async (item: Task): Promise<boolean> => {
const cacheKey = getCacheKey(item);
if (undefined !== taskHandlerSupport.value[cacheKey]) {
return taskHandlerSupport.value[cacheKey] as boolean;
}
try {
const result = await tasksComposable.inspectTaskHandler({
url: item.url,
static_only: true,
});
const supported = true === result?.matched;
taskHandlerSupport.value[cacheKey] = supported;
return supported;
} catch {
taskHandlerSupport.value[cacheKey] = false;
return false;
}
};
const recheckHandlerSupport = async (updatedTasks: ReadonlyArray<Task>) => {
for (const item of updatedTasks) {
if (!item.timer && false !== item.handler_enabled) {
await checkHandlerSupport(item);
}
}
};
const willTaskBeProcessed = (item: Task): boolean => {
if (false === item.enabled) {
return false;
}
const hasTimer = Boolean(item.timer && item.timer.trim());
const cacheKey = getCacheKey(item);
const hasHandler = false !== item.handler_enabled && true === taskHandlerSupport.value[cacheKey];
return hasTimer || hasHandler;
};
const loadContent = async (pageNumber = page.value, fromMounted: boolean = false) => {
page.value = pageNumber;
try {
await tasksComposable.loadTasks(pageNumber);
page.value = tasksComposable.pagination.value.page;
await nextTick();
await syncPageQuery(page.value);
if (tasks.value.length > 0) {
cleanStaleCache(tasks.value);
await recheckHandlerSupport(tasks.value);
}
} catch (error) {
if (!fromMounted) {
console.error(error);
}
}
};
const resetForm = (closeForm: boolean = false) => {
task.value = createEmptyTask();
taskRef.value = null;
editorDirty.value = false;
if (closeForm) {
toggleForm.value = false;
}
};
const closeEditor = (): void => {
resetForm(true);
};
const openCreateForm = (): void => {
resetForm(false);
editorSessionId.value += 1;
toggleForm.value = true;
};
const deleteSelected = async () => {
if (selectedElms.value.length < 1) {
toast.error('No tasks selected.');
return;
}
const { status } = await confirmDialog({
title: 'Delete Selected Tasks',
message:
`Delete ${selectedElms.value.length} task/s?` +
'\n\n' +
selectedElms.value
.map((id) => {
const item = tasks.value.find((task) => task.id === id);
return item ? `${item.id}: ${item.name}` : '';
})
.filter(Boolean)
.join('\n'),
confirmText: 'Delete',
confirmColor: 'error',
});
if (true !== status) {
return;
}
const itemsToDelete = tasks.value.filter(
(item) => item.id && selectedElms.value.includes(item.id),
);
if (itemsToDelete.length < 1) {
toast.error('No tasks found to delete.');
return;
}
massDelete.value = true;
for (const item of itemsToDelete) {
if (!item.id) {
continue;
}
await tasksComposable.deleteTask(item.id);
}
selectedElms.value = [];
setTimeout(async () => {
await nextTick();
massDelete.value = false;
}, 500);
};
const deleteItem = async (item: Task) => {
if (!item.id || true !== (await box.confirm(`Delete '${item.name}' task?`))) {
return;
}
await tasksComposable.deleteTask(item.id);
};
const toggleFlag = async (item: Task, field: 'enabled' | 'auto_start' | 'handler_enabled') => {
if (!item.id) {
toast.error('Task ID is missing');
return;
}
const currentValue = item[field] !== false;
const updated = await tasksComposable.patchTask(item.id, { [field]: !currentValue });
if (updated) {
item[field] = updated[field];
if (field === 'enabled' && updated.enabled) {
await checkHandlerSupport(updated);
}
if (field === 'handler_enabled' && updated.handler_enabled) {
await checkHandlerSupport(updated);
}
}
};
const updateItem = async ({
reference,
task,
archive_all,
}: {
reference?: number | null | undefined;
task: Task | Task[];
archive_all?: boolean;
}) => {
let createdOrUpdated: Task | Task[] | null = null;
if (reference) {
createdOrUpdated = await tasksComposable.updateTask(reference, task as Task);
} else {
createdOrUpdated = await tasksComposable.createTask(task);
}
if (!createdOrUpdated) {
return;
}
const tasksList = Array.isArray(createdOrUpdated) ? createdOrUpdated : [createdOrUpdated];
closeEditor();
if (!reference && true === archive_all) {
await nextTick();
await sleep(1);
toast.info(
`Archiving existing items for '${tasksList.length}' tasks. This will take a while...`,
);
for (const item of tasksList) {
if (item.id) {
await archiveAll(item, true);
}
}
}
for (const item of tasksList) {
if (!item.timer && false !== item.handler_enabled) {
await checkHandlerSupport(item);
}
}
};
const editItem = (item: Task) => {
editorDirty.value = false;
task.value = { ...item };
taskRef.value = item.id ?? null;
editorSessionId.value += 1;
toggleForm.value = true;
};
const calcPath = (path: string) => {
const location = shortPath(config.app.download_path || '/downloads');
if (path) {
return eTrim(location, '/') + '/' + sTrim(path, '/');
}
return location;
};
const tryParse = (expression: string) => {
try {
return moment(CronExpressionParser.parse(expression).next().toISOString()).fromNow();
} catch {
return 'Invalid';
}
};
const runSelected = async () => {
if (selectedElms.value.length < 1) {
toast.error('No tasks selected.');
return;
}
const { status } = await confirmDialog({
message:
'Run the following tasks?' +
'\n\n' +
selectedElms.value
.map((id) => {
const item = tasks.value.find((task) => task.id === id);
return item ? item.name : '';
})
.filter(Boolean)
.join('\n'),
});
if (true !== status) {
return;
}
massRun.value = true;
for (const id of selectedElms.value) {
const item = tasks.value.find((task) => task.id === id);
if (!item) {
continue;
}
await runNow(item, true);
}
selectedElms.value = [];
toast.success('Dispatched selected tasks.');
setTimeout(async () => {
await nextTick();
massRun.value = false;
}, 500);
};
const runNow = async (item: Task, mass: boolean = false) => {
if (!item.id) {
return;
}
if (
!mass &&
true !== (await box.confirm(`Run '${item.name}' now? it will also run at the scheduled time.`))
) {
return;
}
if (!mass) {
setTaskInProgress(item.id);
}
const data: item_request = {
url: item.url,
preset: item.preset,
extras: {
source_name: item.name,
source_id: item.id,
source_handler: 'Web',
},
};
if (item.folder) {
data.folder = item.folder;
}
if (item.template) {
data.template = item.template;
}
if (item.cli) {
data.cli = item.cli;
}
if (undefined !== item.auto_start) {
data.auto_start = item.auto_start;
}
await stateStore.addDownload(data);
if (mass) {
return;
}
setTimeout(async () => {
await nextTick();
if (item.id) {
clearTaskInProgress(item.id);
}
}, 500);
};
async function statusHandler(payload: WSEP['item_status']) {
const { status, msg } = payload.data || {};
if ('error' === status) {
toast.error(msg ?? 'Unknown error');
}
}
const exportItem = async (item: Task) => {
const info = JSON.parse(JSON.stringify(item));
const data = {
name: info.name,
url: info.url,
preset: info.preset,
timer: info.timer,
folder: info.folder,
auto_start: info?.auto_start ?? true,
handler_enabled: info?.handler_enabled ?? true,
enabled: info?.enabled ?? true,
} as ExportedTask;
if (info.template) {
data.template = info.template;
}
if (info.cli) {
data.cli = info.cli;
}
data._type = 'task';
data._version = '2.0';
return copyText(encode(data));
};
const get_tags = (name: string): string[] => {
const regex = /\[(.*?)\]/g;
const matches = name.match(regex);
return !matches ? [] : matches.map((tag) => tag.replace(/[[\]]/g, '').trim());
};
const remove_tags = (name: string): string => name.replace(/\[(.*?)\]/g, '').trim();
const archiveAll = async (item: Task, by_pass: boolean = false) => {
if (!item.id) {
toast.error('Task ID is missing');
return;
}
try {
if (true !== by_pass) {
const { status } = await confirmDialog({
message: `Mark all '${item.name}' items as downloaded in download archive?`,
});
if (true !== status) {
return;
}
}
setTaskInProgress(item.id);
await tasksComposable.markTaskItems(item.id);
} catch (error: any) {
toast.error(`Failed to archive items. ${error.message || 'Unknown error.'}`);
} finally {
clearTaskInProgress(item.id);
}
};
const unarchiveAll = async (item: Task) => {
if (!item.id) {
toast.error('Task ID is missing');
return;
}
try {
const { status } = await confirmDialog({
message: `Remove all '${item.name}' items from download archive?`,
});
if (true !== status) {
return;
}
setTaskInProgress(item.id);
await tasksComposable.unmarkTaskItems(item.id);
} catch (error: any) {
toast.error(`Failed to remove items from archive. ${error.message || 'Unknown error.'}`);
} finally {
if (item.id) {
clearTaskInProgress(item.id);
}
}
};
const generateMeta = async (item: Task) => {
if (!item.id) {
toast.error('Task ID is missing');
return;
}
try {
const { status } = await confirmDialog({
message:
`Generate '${item.name}' metadata? You will be notified when it is done.` +
'\n\nThis action will generate:' +
'\n- tvshow.nfo - for media center compatibility' +
'\n- title [id].info.json - yt-dlp metadata file' +
'\n- Thumbnails: poster.jpg, fanart.jpg, thumb.jpg, banner.jpg, icon.jpg, landscape.jpg if they are available.' +
'\n\nWarning: This will overwrite existing metadata files if they exist.',
});
if (true !== status) {
return;
}
setTaskInProgress(item.id);
await tasksComposable.generateTaskMetadata(item.id);
} catch (error: any) {
toast.error(`Failed to generate metadata. ${error.message || 'Unknown error.'}`);
} finally {
if (item.id) {
clearTaskInProgress(item.id);
}
}
};
const itemActionGroups = (item: Task): DropdownMenuItem[][] => [
[
{
label: 'Run now',
icon: 'i-lucide-square-play',
onSelect: () => void runNow(item),
},
{
label: 'Generate metadata',
icon: 'i-lucide-film',
onSelect: () => void generateMeta(item),
},
],
[
{
label: 'Inspect Handler',
icon: 'i-lucide-search',
onSelect: () => {
inspectTask.value = item;
},
},
],
[
{
label: 'Archive All',
icon: 'i-lucide-box',
onSelect: () => void archiveAll(item),
},
{
label: 'Unarchive All',
icon: 'i-lucide-box',
onSelect: () => void unarchiveAll(item),
},
],
[
{
label: 'Export Task',
icon: 'i-lucide-file-up',
onSelect: () => void exportItem(item),
},
],
];
onMounted(async () => {
await loadContent(page.value, true);
});
onBeforeUnmount(() => socket.off('item_status', statusHandler));
</script>