Create templates/series.templ with: - Library selector dropdown (sticky, same pattern as dashboard) - Loading spinner overlay for AJAX library switching - Series grid with stacked-cascade multi-cover cards - Empty state when no series found - Pagination with Previous/Next links - SeriesCard sub-template linking to filtered bookshelf view Add 'Series' nav link in header between 'All Books' and 'Collections'. Make series badge on book detail page clickable, linking to /bookshelf?series_filter=<name>&sort=series. Add 'Continue Series' option to restore system collection modal.
33 lines
1.6 KiB
Templ
33 lines
1.6 KiB
Templ
package templates
|
|
|
|
templ RestoreSystemCollectionModal() {
|
|
<div x-data="collections" class="fixed inset-0 z-50 flex items-center justify-center bg-black/70">
|
|
<div class="card rounded-lg p-6 w-full max-w-md mx-4" style="background-color: var(--bg-secondary); border-color: var(--border);">
|
|
<div class="flex justify-between items-center mb-6">
|
|
<h2 class="text-xl font-bold" style="color: var(--text-primary)">Restore System Collection</h2>
|
|
<button type="button" @click="closeCollectionModal()" class="p-2 hover:opacity-80 rounded" style="color: var(--text-primary)">✕</button>
|
|
</div>
|
|
<div class="mb-4">
|
|
<p class="mb-4" style="color: var(--text-secondary)">Select a system collection to restore:</p>
|
|
<form
|
|
hx-post="/api/dashboard/restore-system-collection"
|
|
hx-redirect="/collections"
|
|
>
|
|
<select name="collection_name" class="w-full px-4 py-2 border rounded-lg" style="background-color: var(--bg-primary); color: var(--text-primary); border-color: var(--border);">
|
|
<option value="">Select collection...</option>
|
|
<option value="Continue Reading">Continue Reading</option>
|
|
<option value="Recently Added">Recently Added</option>
|
|
<option value="Recently Read">Recently Read</option>
|
|
<option value="Not Started">Not Started</option>
|
|
<option value="Continue Series">Continue Series</option>
|
|
</select>
|
|
<div class="flex justify-end space-x-3 mt-6">
|
|
<button type="button" @click="closeCollectionModal()" class="btn-secondary px-4 py-2 rounded-lg">Cancel</button>
|
|
<button type="submit" class="btn-primary px-4 py-2 rounded-lg">Restore</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|