Apply the sidebar shell and bold primitives across the rest of the app so the whole experience shares one visual language: - Browse/organize: series (keeps stacked-covers/series-card CSS), collections (keeps wood-paneling + carousel classes), browse_detail. - Account/stats: profile + form + modal, progress, analytics (stat-card tiles), devices, conflicts (status semantics), queue (status/priority badges). - Admin: admin sidebar restyled with icons, dashboard/users/library/ processing-issues/settings migrated to .card/.btn/.input primitives. - Docs/setup/misc: docs (keeps prose/highlight.js), api_explorer, setup wizard, unlinked_books, custom_section builder. - Modals/fragments: collection_modal, collection_rules, restore_system_collection_modal, filter_item, book_detail_modals — all overlays use --surface-overlay + --shadow-pop. Every Alpine handler, HTMX attribute, id, name, and data-* is preserved; only presentation changes.
143 lines
7.1 KiB
Templ
143 lines
7.1 KiB
Templ
package templates
|
|
|
|
templ CollectionModal(collection CollectionData) {
|
|
<div x-data="collections" class="fixed inset-0 z-50 flex items-center justify-center p-4" style="background-color: var(--surface-overlay);">
|
|
<div class="card p-6 w-full max-w-md" style="box-shadow: var(--shadow-pop);">
|
|
<div class="flex justify-between items-center mb-6">
|
|
<div class="flex items-center gap-3">
|
|
<span class="grid place-items-center h-10 w-10 rounded-xl shrink-0" style="background-color: var(--accent-muted); color: var(--accent);">
|
|
@Icon("folder", "h-5 w-5")
|
|
</span>
|
|
if collection.ID != "" {
|
|
<h2 class="text-xl font-bold" style="color: var(--text-primary)">Edit Collection</h2>
|
|
} else {
|
|
<h2 class="text-xl font-bold" style="color: var(--text-primary)">Create Collection</h2>
|
|
}
|
|
</div>
|
|
<button type="button" @click="closeCollectionModal()" class="icon-btn" aria-label="Close">
|
|
@Icon("close", "h-5 w-5")
|
|
</button>
|
|
</div>
|
|
if collection.ID != "" {
|
|
<form
|
|
hx-put={ "/api/collections/" + collection.ID }
|
|
hx-redirect="/collections"
|
|
>
|
|
<input type="hidden" name="id" value={ collection.ID }/>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Name</label>
|
|
<input
|
|
type="text"
|
|
name="name"
|
|
value={ collection.Name }
|
|
required
|
|
class="input"
|
|
placeholder="My Reading List"
|
|
/>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Description</label>
|
|
<textarea
|
|
name="description"
|
|
class="input"
|
|
placeholder="Optional description"
|
|
rows="3"
|
|
>{ collection.Description }</textarea>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Icon</label>
|
|
<input
|
|
type="text"
|
|
id="icon-search"
|
|
class="input mb-2"
|
|
placeholder="Search or type emoji..."
|
|
maxlength="4"
|
|
oninput="filterIcons(this.value)"
|
|
onfocus="showAllIcons()"
|
|
/>
|
|
<input type="hidden" name="icon" id="collection-icon" value={ collection.Icon }/>
|
|
<div
|
|
id="icon-grid"
|
|
class="grid grid-cols-8 gap-1 max-h-32 overflow-y-auto p-2 rounded-lg border"
|
|
style="background-color: var(--bg-primary); border-color: var(--border);"
|
|
></div>
|
|
</div>
|
|
<div class="mb-6">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Color</label>
|
|
<div class="flex gap-2">
|
|
<button type="button" @click="selectColor('blue')" class="w-8 h-8 rounded-full color-option bg-blue-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-blue-400" aria-label="Blue"></button>
|
|
<button type="button" @click="selectColor('red')" class="w-8 h-8 rounded-full color-option bg-red-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-red-400" aria-label="Red"></button>
|
|
<button type="button" @click="selectColor('yellow')" class="w-8 h-8 rounded-full color-option bg-yellow-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-yellow-400" aria-label="Yellow"></button>
|
|
<button type="button" @click="selectColor('green')" class="w-8 h-8 rounded-full color-option bg-green-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-green-400" aria-label="Green"></button>
|
|
<button type="button" @click="selectColor('purple')" class="w-8 h-8 rounded-full color-option bg-purple-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-purple-400" aria-label="Purple"></button>
|
|
</div>
|
|
<input type="hidden" name="color" id="collection-color" value={ collection.Color }/>
|
|
</div>
|
|
<div class="flex justify-end space-x-3">
|
|
<button type="button" @click="closeCollectionModal()" class="btn btn-secondary">Cancel</button>
|
|
<button type="submit" class="btn btn-primary">Update Collection</button>
|
|
</div>
|
|
</form>
|
|
} else {
|
|
<form
|
|
hx-post="/api/collections"
|
|
hx-redirect="/collections"
|
|
>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Name</label>
|
|
<input
|
|
type="text"
|
|
name="name"
|
|
required
|
|
class="input"
|
|
placeholder="My Reading List"
|
|
/>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Description</label>
|
|
<textarea
|
|
name="description"
|
|
class="input"
|
|
placeholder="Optional description"
|
|
rows="3"
|
|
></textarea>
|
|
</div>
|
|
<div class="mb-4">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Icon</label>
|
|
<input
|
|
type="text"
|
|
id="icon-search"
|
|
class="input mb-2"
|
|
placeholder="Search or type emoji..."
|
|
maxlength="4"
|
|
oninput="filterIcons(this.value)"
|
|
onfocus="showAllIcons()"
|
|
/>
|
|
<input type="hidden" name="icon" id="collection-icon" value={ collection.Icon }/>
|
|
<div
|
|
id="icon-grid"
|
|
class="grid grid-cols-8 gap-1 max-h-32 overflow-y-auto p-2 rounded-lg border"
|
|
style="background-color: var(--bg-primary); border-color: var(--border);"
|
|
></div>
|
|
</div>
|
|
<div class="mb-6">
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Color</label>
|
|
<div class="flex gap-2">
|
|
<button type="button" @click="selectColor('blue')" class="w-8 h-8 rounded-full color-option bg-blue-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-blue-400" aria-label="Blue"></button>
|
|
<button type="button" @click="selectColor('red')" class="w-8 h-8 rounded-full color-option bg-red-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-red-400" aria-label="Red"></button>
|
|
<button type="button" @click="selectColor('yellow')" class="w-8 h-8 rounded-full color-option bg-yellow-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-yellow-400" aria-label="Yellow"></button>
|
|
<button type="button" @click="selectColor('green')" class="w-8 h-8 rounded-full color-option bg-green-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-green-400" aria-label="Green"></button>
|
|
<button type="button" @click="selectColor('purple')" class="w-8 h-8 rounded-full color-option bg-purple-500 hover:ring-2 hover:ring-offset-2 hover:ring-offset-transparent hover:ring-purple-400" aria-label="Purple"></button>
|
|
</div>
|
|
<input type="hidden" name="color" id="collection-color" value="blue"/>
|
|
</div>
|
|
<div class="flex justify-end space-x-3">
|
|
<button type="button" @click="closeCollectionModal()" class="btn btn-secondary">Cancel</button>
|
|
<button type="submit" class="btn btn-primary">Create Collection</button>
|
|
</div>
|
|
</form>
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|