feat: add series support for book organization
API:
- Add /libraries/{id}/series endpoint to list series with book counts
- Add series filter to /books endpoint
- Fix SeriesItem to return first_book_id properly (using CTE with ROW_NUMBER)
Indexer:
- Parse series from parent folder name relative to library root
- Store series in database when indexing books
Backoffice:
- Add Books page with grid view, search, and pagination
- Add Series page showing series with cover images
- Add Library books page filtered by series
- Add book detail page
- Add Series column in libraries list with clickable link
- Create BookCard component for reusable book display
- Add CSS styles for books grid, series grid, and book details
- Add proxy API route for book cover images (fixing CORS issues)
Parser:
- Add series field to ParsedMetadata
- Extract series from file path relative to library root
Books without a parent folder are categorized as 'unclassified' series.
This commit is contained in:
@@ -303,3 +303,406 @@ button:hover {
|
||||
padding: 18px 14px 30px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Books page styles */
|
||||
.search-form {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
flex: 1;
|
||||
min-width: 200px;
|
||||
}
|
||||
|
||||
.results-info {
|
||||
color: var(--text-muted);
|
||||
margin: 16px 0;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.books-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
||||
gap: 24px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.book-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
text-decoration: none;
|
||||
color: var(--foreground);
|
||||
background: var(--card);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
box-shadow: var(--shadow-1);
|
||||
}
|
||||
|
||||
.book-card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: var(--shadow-2);
|
||||
}
|
||||
|
||||
.book-cover {
|
||||
position: relative;
|
||||
aspect-ratio: 2/3;
|
||||
background: linear-gradient(135deg, hsl(36 24% 93%), hsl(36 24% 88%));
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cover-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.book-info {
|
||||
padding: 12px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.book-title {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
line-height: 1.3;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
font-family: "Avenir Next", "Segoe UI", sans-serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.book-author {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.book-series {
|
||||
font-size: 0.8rem;
|
||||
color: var(--primary);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.book-meta {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: auto;
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
||||
.book-kind {
|
||||
font-size: 0.7rem;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-weight: 700;
|
||||
background: hsl(198 52% 90%);
|
||||
color: hsl(198 78% 37%);
|
||||
}
|
||||
|
||||
.book-kind.cbz {
|
||||
background: hsl(142 60% 90%);
|
||||
color: hsl(142 60% 35%);
|
||||
}
|
||||
|
||||
.book-kind.cbr {
|
||||
background: hsl(45 93% 90%);
|
||||
color: hsl(45 93% 35%);
|
||||
}
|
||||
|
||||
.book-kind.pdf {
|
||||
background: hsl(2 72% 90%);
|
||||
color: hsl(2 72% 45%);
|
||||
}
|
||||
|
||||
.book-lang {
|
||||
font-size: 0.7rem;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
background: var(--line);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.pagination {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 48px 24px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* Book detail page */
|
||||
.breadcrumb {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.breadcrumb a {
|
||||
color: var(--text-muted);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.breadcrumb a:hover {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.book-detail {
|
||||
display: grid;
|
||||
grid-template-columns: 300px 1fr;
|
||||
gap: 32px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.book-detail {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
.book-detail-cover {
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow-2);
|
||||
}
|
||||
|
||||
.detail-cover-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.book-detail-info h1 {
|
||||
margin: 0 0 16px 0;
|
||||
font-size: 1.8rem;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.detail-author {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text-muted);
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.detail-series {
|
||||
font-size: 1rem;
|
||||
color: var(--primary);
|
||||
margin: 0 0 24px 0;
|
||||
}
|
||||
|
||||
.detail-series .volume {
|
||||
margin-left: 12px;
|
||||
padding: 4px 10px;
|
||||
background: var(--primary-soft);
|
||||
border-radius: 6px;
|
||||
font-size: 0.85rem;
|
||||
color: var(--foreground);
|
||||
}
|
||||
|
||||
.detail-meta {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
box-shadow: var(--shadow-1);
|
||||
}
|
||||
|
||||
.meta-row {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.meta-row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.meta-label {
|
||||
font-weight: 700;
|
||||
color: var(--text-muted);
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.book-id {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.dark .book-cover {
|
||||
background: linear-gradient(135deg, hsl(221 24% 20%), hsl(221 24% 15%));
|
||||
}
|
||||
|
||||
.dark .book-kind {
|
||||
background: hsl(198 52% 25%);
|
||||
color: hsl(198 78% 75%);
|
||||
}
|
||||
|
||||
.dark .book-kind.cbz {
|
||||
background: hsl(142 60% 25%);
|
||||
color: hsl(142 60% 65%);
|
||||
}
|
||||
|
||||
.dark .book-kind.cbr {
|
||||
background: hsl(45 93% 25%);
|
||||
color: hsl(45 93% 65%);
|
||||
}
|
||||
|
||||
.dark .book-kind.pdf {
|
||||
background: hsl(2 72% 25%);
|
||||
color: hsl(2 72% 65%);
|
||||
}
|
||||
|
||||
/* Library info styles */
|
||||
.library-info {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 12px;
|
||||
padding: 16px 20px;
|
||||
margin: 16px 0 24px 0;
|
||||
box-shadow: var(--shadow-1);
|
||||
}
|
||||
|
||||
.library-info p {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.library-info code {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.library-info .separator {
|
||||
color: var(--line-strong);
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.status-enabled {
|
||||
color: hsl(142 60% 45%);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.status-disabled {
|
||||
color: hsl(220 13% 40%);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.book-count-link {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
padding: 2px 8px;
|
||||
border-radius: 6px;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.book-count-link:hover {
|
||||
background: var(--primary-soft);
|
||||
}
|
||||
|
||||
.series-count-link {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
padding: 2px 8px;
|
||||
border-radius: 6px;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.series-count-link:hover {
|
||||
background: var(--primary-soft);
|
||||
}
|
||||
|
||||
.dark .status-enabled {
|
||||
color: hsl(142 60% 65%);
|
||||
}
|
||||
|
||||
.dark .status-disabled {
|
||||
color: hsl(218 17% 72%);
|
||||
}
|
||||
|
||||
/* Series grid styles */
|
||||
.series-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
|
||||
gap: 24px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
|
||||
.series-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
text-decoration: none;
|
||||
color: var(--foreground);
|
||||
background: var(--card);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
box-shadow: var(--shadow-1);
|
||||
}
|
||||
|
||||
.series-card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: var(--shadow-2);
|
||||
}
|
||||
|
||||
.series-cover {
|
||||
position: relative;
|
||||
aspect-ratio: 2/3;
|
||||
background: linear-gradient(135deg, hsl(36 24% 93%), hsl(36 24% 88%));
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.series-cover-image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.series-info {
|
||||
padding: 12px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.series-name {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
line-height: 1.3;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
font-family: "Avenir Next", "Segoe UI", sans-serif;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
|
||||
.series-count {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
margin: 0;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.dark .series-cover {
|
||||
background: linear-gradient(135deg, hsl(221 24% 20%), hsl(221 24% 15%));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user