Release / build-and-push (push) Successful in 2m44s
# Conflicts: # templates/admin_library.templ # templates/admin_library_templ.go # templates/conflicts_templ.go # templates/unlinked_books_templ.go
201 lines
8.3 KiB
Templ
201 lines
8.3 KiB
Templ
package templates
|
|
|
|
templ CollectionRules(user User, collection CollectionData) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Collection Rules - { collection.Name } - Bookhoard</title>
|
|
<script src="/static/htmx.min.js"></script>
|
|
<link href="/static/style.css" rel="stylesheet"/>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg"/>
|
|
</head>
|
|
<body class="theme-{ user.Theme }" x-data="collectionRules" x-init="initCollectionRules('{ collection.ID }')">
|
|
@Header(user, "/collections")
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div class="mb-6">
|
|
<button @click="backToCollection()" class="btn btn-secondary mb-4">
|
|
@Icon("arrow-left", "h-4 w-4")
|
|
Back to Collection
|
|
</button>
|
|
<div class="flex items-center gap-4">
|
|
<span class="grid place-items-center h-12 w-12 rounded-2xl shrink-0 text-2xl" style="background-color: var(--accent-muted); color: { collection.Color }">{ collection.Icon }</span>
|
|
<div>
|
|
<h1 class="text-3xl font-bold" style="color: var(--text-primary)">{ collection.Name }</h1>
|
|
<p style="color: var(--text-secondary)">Auto-Assign Rules</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mb-8">
|
|
<h2 class="text-2xl font-bold mb-4" style="color: var(--text-primary)">Existing Rules</h2>
|
|
<div id="rules-container" class="space-y-4">
|
|
<div id="no-rules" class="card p-8 text-center">
|
|
<span class="inline-grid place-items-center h-12 w-12 rounded-xl mb-3" style="background-color: var(--accent-muted); color: var(--accent);">
|
|
@Icon("filter", "h-6 w-6")
|
|
</span>
|
|
<h3 class="text-lg font-semibold mb-2" style="color: var(--text-primary)">No Rules Yet</h3>
|
|
<p style="color: var(--text-secondary)">Create auto-assign rules to automatically add books to this collection</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mb-8">
|
|
<h2 class="text-2xl font-bold mb-4" style="color: var(--text-primary)">Create New Rule</h2>
|
|
<form id="rule-form" @submit="handleCreateRule($event)" class="card p-6 space-y-6">
|
|
<input type="hidden" id="collection-id" value={ collection.ID }/>
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Field</label>
|
|
<select
|
|
id="rule-field"
|
|
required
|
|
class="input"
|
|
>
|
|
<option value="">Select field...</option>
|
|
<option value="genre">Genre</option>
|
|
<option value="series">Series</option>
|
|
<option value="author">Author</option>
|
|
<option value="language">Language</option>
|
|
<option value="publisher">Publisher</option>
|
|
<option value="copyright_year">Copyright Year</option>
|
|
<option value="tags">Tags</option>
|
|
</select>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Operator</label>
|
|
<select
|
|
id="rule-operator"
|
|
required
|
|
class="input"
|
|
>
|
|
<option value="">Select operator...</option>
|
|
<option value="equals">equals</option>
|
|
<option value="not_equals">does not equal</option>
|
|
<option value="contains">contains</option>
|
|
<option value="not_contains">does not contain</option>
|
|
<option value="starts_with">starts with</option>
|
|
<option value="ends_with">ends with</option>
|
|
<option value="greater_than">greater than</option>
|
|
<option value="less_than">less than</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Value</label>
|
|
<input
|
|
type="text"
|
|
id="rule-value"
|
|
required
|
|
class="input"
|
|
placeholder="e.g., Science Fiction"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label class="flex items-center space-x-3 cursor-pointer">
|
|
<input
|
|
type="checkbox"
|
|
id="rule-enabled"
|
|
checked
|
|
class="w-5 h-5 rounded"
|
|
/>
|
|
<span class="text-sm font-medium" style="color: var(--text-primary)">Enable Rule</span>
|
|
</label>
|
|
<p class="text-xs mt-1" style="color: var(--text-secondary)">Uncheck to disable without deleting</p>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-semibold uppercase tracking-wide mb-2" style="color: var(--text-secondary)">Priority</label>
|
|
<div class="flex gap-4">
|
|
<label class="flex items-center space-x-2 cursor-pointer">
|
|
<input type="radio" name="priority" value="1" class="w-4 h-4"/>
|
|
<span class="text-sm" style="color: var(--text-primary)">High</span>
|
|
</label>
|
|
<label class="flex items-center space-x-2 cursor-pointer">
|
|
<input
|
|
type="radio"
|
|
name="priority"
|
|
value="2"
|
|
checked
|
|
class="w-4 h-4"
|
|
/>
|
|
<span class="text-sm" style="color: var(--text-primary)">Medium</span>
|
|
</label>
|
|
<label class="flex items-center space-x-2 cursor-pointer">
|
|
<input
|
|
type="radio"
|
|
name="priority"
|
|
value="3"
|
|
class="w-4 h-4"
|
|
/>
|
|
<span class="text-sm" style="color: var(--text-primary)">Low</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-end space-x-3">
|
|
<button type="button" @click="testRule()" class="btn btn-secondary">
|
|
@Icon("search", "h-4 w-4")
|
|
Test Rule
|
|
</button>
|
|
<button type="button" @click="clearForm()" class="btn btn-ghost">
|
|
Clear
|
|
</button>
|
|
<button type="submit" class="btn btn-primary">
|
|
@Icon("plus", "h-4 w-4")
|
|
Add Rule
|
|
</button>
|
|
</div>
|
|
</form>
|
|
<div id="test-results" class="hidden card p-6 mt-4 mb-6">
|
|
<h3 class="font-semibold mb-3" style="color: var(--text-primary)">Rule Test Results</h3>
|
|
<p class="text-sm mb-2" style="color: var(--text-secondary)">Books that would be added by this rule:</p>
|
|
<div id="test-results-list" class="max-h-64 overflow-y-auto space-y-2"></div>
|
|
</div>
|
|
</div>
|
|
<div class="card p-6">
|
|
<h2 class="text-xl font-bold mb-4" style="color: var(--text-primary)">Rule Examples</h2>
|
|
<div class="space-y-4">
|
|
<div class="flex items-start gap-4">
|
|
<span class="grid place-items-center flex-shrink-0 w-8 h-8 rounded-full text-sm font-bold" style="background-color: var(--accent-muted); color: var(--accent);">1</span>
|
|
<div>
|
|
<p class="font-medium" style="color: var(--text-primary)">Add all Science Fiction books</p>
|
|
<code class="block mt-1 text-sm rounded-lg" style="color: var(--text-secondary); background-color: var(--bg-primary); padding: 8px 12px;">
|
|
Field: genre
|
|
<br/>
|
|
Operator: equals
|
|
<br/>
|
|
Value: Science Fiction
|
|
</code>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-start gap-4">
|
|
<span class="grid place-items-center flex-shrink-0 w-8 h-8 rounded-full text-sm font-bold" style="background-color: var(--accent-muted); color: var(--accent);">2</span>
|
|
<div>
|
|
<p class="font-medium" style="color: var(--text-primary)">Add books from a specific series</p>
|
|
<code class="block mt-1 text-sm rounded-lg" style="color: var(--text-secondary); background-color: var(--bg-primary); padding: 8px 12px;">
|
|
Field: series
|
|
<br/>
|
|
Operator: starts with
|
|
<br/>
|
|
Value: Harry Potter
|
|
</code>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-start gap-4">
|
|
<span class="grid place-items-center flex-shrink-0 w-8 h-8 rounded-full text-sm font-bold" style="background-color: var(--accent-muted); color: var(--accent);">3</span>
|
|
<div>
|
|
<p class="font-medium" style="color: var(--text-primary)">Add books published in a year range</p>
|
|
<code class="block mt-1 text-sm rounded-lg" style="color: var(--text-secondary); background-color: var(--bg-primary); padding: 8px 12px;">
|
|
Field: copyright_year
|
|
<br/>
|
|
Operator: greater than
|
|
<br/>
|
|
Value: 2020
|
|
</code>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
}
|