mirror of
https://github.com/hkalexling/Mango.git
synced 2026-04-24 00:03:12 -04:00
64 lines
2.3 KiB
Plaintext
64 lines
2.3 KiB
Plaintext
<div x-data="component()" x-init="init()">
|
|
<div class="uk-margin">
|
|
<button class="uk-button uk-button-default" @click="jobAction('delete')">Delete Completed Tasks</button>
|
|
<button class="uk-button uk-button-default" @click="jobAction('retry')">Retry Failed Tasks</button>
|
|
<button class="uk-button uk-button-default" @click="load()" :disabled="loading">Refresh Queue</button>
|
|
<button class="uk-button uk-button-default" x-show="paused !== undefined" x-text="paused ? 'Resume Download' : 'Pause Download'" @click="toggle()" :disabled="toggling"></button>
|
|
</div>
|
|
<table class="uk-table uk-table-striped uk-overflow-auto">
|
|
<thead>
|
|
<tr>
|
|
<th>Chapter</th>
|
|
<th>Manga</th>
|
|
<th>Progress</th>
|
|
<th>Time</th>
|
|
<th>Status</th>
|
|
<th>Plugin</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<template x-for="job in jobs" :key="job">
|
|
<tr :id="`chapter-${job.id}`">
|
|
|
|
<template x-if="job.plugin_id">
|
|
<td x-text="job.title"></td>
|
|
</template>
|
|
|
|
<template x-if="job.plugin_id">
|
|
<td x-text="job.manga_title"></td>
|
|
</template>
|
|
|
|
<td x-text="`${job.success_count}/${job.pages}`"></td>
|
|
<td x-text="`${moment(job.time).fromNow()}`"></td>
|
|
|
|
<td>
|
|
<span :class="statusClass(job.status)" x-text="job.status"></span>
|
|
<template x-if="job.status_message.length > 0">
|
|
<div class="uk-inline">
|
|
<span uk-icon="info"></span>
|
|
<div uk-dropdown x-text="job.status_message" style="white-space: pre-line;"></div>
|
|
</div>
|
|
</template>
|
|
</td>
|
|
|
|
<td x-text="`${job.plugin_id || ''}`"></td>
|
|
<td>
|
|
<a @click="jobAction('delete', $event)" uk-icon="trash" uk-tooltip="Delete"></a>
|
|
<template x-if="job.status_message.length > 0">
|
|
<a @click="jobAction('retry', $event)" uk-icon="refresh" uk-tooltip="Retry"></a>
|
|
</template>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for "script" do %>
|
|
<%= render_component "moment" %>
|
|
<script src="<%= base_url %>js/alert.js"></script>
|
|
<script src="<%= base_url %>js/download-manager.js"></script>
|
|
<% end %>
|