Add position to sequence books

This commit is contained in:
2024-09-28 21:36:50 +02:00
parent 420c6a6310
commit 698a9ded17
2 changed files with 6 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ pub struct SequenceBook {
pub authors: Vec<Author>, pub authors: Vec<Author>,
pub translators: Vec<Author>, pub translators: Vec<Author>,
pub annotation_exists: bool, pub annotation_exists: bool,
pub position: i32,
} }
impl From<book::Data> for SequenceBook { impl From<book::Data> for SequenceBook {
@@ -48,6 +49,7 @@ impl From<book::Data> for SequenceBook {
translations, translations,
book_annotation, book_annotation,
source, source,
book_sequences,
.. ..
} = value; } = value;
@@ -62,6 +64,7 @@ impl From<book::Data> for SequenceBook {
authors: get_authors(book_authors), authors: get_authors(book_authors),
translators: get_translators(translations), translators: get_translators(translations),
annotation_exists: book_annotation.unwrap().is_some(), annotation_exists: book_annotation.unwrap().is_some(),
position: book_sequences.unwrap().first().unwrap().position,
} }
} }
} }

View File

@@ -189,6 +189,9 @@ async fn get_sequence_books(
book::translations::fetch(vec![]) book::translations::fetch(vec![])
.with(translator::author::fetch().with(author::author_annotation::fetch())), .with(translator::author::fetch().with(author::author_annotation::fetch())),
) )
.with(book::book_sequences::fetch(vec![
book_sequence::sequence_id::equals(sequence.id),
]))
.order_by(book::id::order(prisma_client_rust::Direction::Asc)) .order_by(book::id::order(prisma_client_rust::Direction::Asc))
.skip((pagination.page - 1) * pagination.size) .skip((pagination.page - 1) * pagination.size)
.take(pagination.size) .take(pagination.size)