little-hesinde/rusty-library/src/handlers/html/books.rs

27 lines
763 B
Rust
Raw Normal View History

2024-05-10 12:25:18 +00:00
//! Handle multiple books in html.
2024-05-09 12:24:45 +00:00
use calibre_db::data::pagination::SortOrder;
use poem::Response;
use crate::{app_state::AppState, data::book::Book, handlers::paginated};
2024-05-10 12:25:18 +00:00
/// Render all books paginated by cursor in html.
2024-05-09 12:24:45 +00:00
pub async fn handler(
state: &AppState,
cursor: Option<&str>,
sort_order: &SortOrder,
) -> Result<Response, poem::Error> {
paginated::render(
"books",
|| {
state
.calibre
.books(25, cursor, sort_order)
.map(|x| x.iter().filter_map(|y| Book::full_book(y, state)).collect())
},
2024-05-10 12:25:18 +00:00
|book| book.data.sort.clone(),
2024-05-09 12:24:45 +00:00
|cursor| state.calibre.has_previous_books(cursor),
|cursor| state.calibre.has_more_books(cursor),
)
}