Files
FabledScribe/frontend/src/views/TrashView.vue
T

89 lines
3.5 KiB
Vue

<script setup lang="ts">
import { onMounted } from "vue";
import { useTrashStore } from "@/stores/trash";
import { relativeTime } from "@/composables/useRelativeTime";
const store = useTrashStore();
async function purge(batchId: string) {
if (!confirm("Permanently delete this? This cannot be undone.")) return;
await store.purge(batchId);
}
async function empty() {
if (!store.batches.length) return;
if (!confirm("Permanently delete everything in the trash? This cannot be undone.")) return;
await store.emptyTrash();
}
onMounted(() => store.fetchTrash());
</script>
<template>
<main class="trash-page">
<header class="trash-header">
<h1>Trash</h1>
<button
v-if="store.batches.length"
class="btn-empty"
@click="empty"
>Empty trash</button>
</header>
<p class="trash-note">
Deleted items are kept here and can be restored. They're permanently removed
after the retention window set in Settings.
</p>
<div v-if="store.loading" class="trash-loading">Loading…</div>
<p v-else-if="!store.batches.length" class="trash-empty">Trash is empty.</p>
<ul v-else class="batch-list">
<li v-for="b in store.batches" :key="b.batch_id" class="batch">
<div class="batch-main">
<div class="batch-summary">
{{ b.summary }}
<span v-if="b.count > 1" class="batch-count">+ {{ b.count - 1 }} item{{ b.count - 1 === 1 ? '' : 's' }}</span>
</div>
<div class="batch-meta">
deleted {{ b.deleted_at ? relativeTime(b.deleted_at) : '' }}
<span class="batch-types">· {{ b.items.map(i => i.type).join(', ') }}</span>
</div>
</div>
<div class="batch-actions">
<button class="btn-restore" @click="store.restore(b.batch_id)">Restore</button>
<button class="btn-purge" @click="purge(b.batch_id)">Delete permanently</button>
</div>
</li>
</ul>
</main>
</template>
<style scoped>
.trash-page { max-width: 900px; margin: 0 auto; padding: 1.5rem; }
.trash-header { display: flex; align-items: center; justify-content: space-between; }
.trash-header h1 { font-family: Fraunces, serif; font-style: italic; margin: 0; }
.btn-empty {
background: none; border: 1px solid var(--color-border, #2a2a2e);
color: inherit; border-radius: 6px; padding: 0.4rem 0.8rem; cursor: pointer;
}
.btn-empty:hover { border-color: var(--color-danger, #ef4444); color: var(--color-danger, #ef4444); }
.trash-note { opacity: 0.7; font-size: 0.9em; margin: 0.5rem 0 1.5rem; }
.trash-loading, .trash-empty { opacity: 0.6; font-style: italic; padding: 2rem 0; }
.batch-list { list-style: none; padding: 0; margin: 0; }
.batch {
display: flex; align-items: center; justify-content: space-between;
gap: 1rem; padding: 0.85rem 1rem; margin-bottom: 0.5rem;
background: var(--color-surface, #18181b); border-radius: 8px;
border-left: 2px solid var(--color-border, #2a2a2e);
}
.batch-summary { font-weight: 500; }
.batch-count { opacity: 0.6; font-weight: 400; font-size: 0.9em; margin-left: 0.35rem; }
.batch-meta { font-size: 0.82em; opacity: 0.6; margin-top: 0.25rem; }
.batch-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.batch-actions button { border-radius: 6px; padding: 0.35rem 0.7rem; cursor: pointer; border: 1px solid var(--color-border, #2a2a2e); background: none; color: inherit; }
.btn-restore:hover { border-color: var(--color-primary, #6366f1); color: var(--color-primary, #6366f1); }
.btn-purge:hover { border-color: var(--color-danger, #ef4444); color: var(--color-danger, #ef4444); }
</style>