Skip to content

Commit 9086ff7

Browse files
author
Audrey Fuller
committed
book sorting still not functional.... :(
1 parent e8af8d8 commit 9086ff7

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

application/book.py

+16-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from sqlalchemy.orm import relationship
66
from sqlalchemy import and_
77
from sqlalchemy import desc
8+
from sqlalchemy.sql import text
89
from users import Base as UserBase, Users
910

1011
class Book(UserBase):
@@ -95,13 +96,22 @@ def search(cls, session, query=None, bid=None, title=None, release_date=None, au
9596
# Join the HasGenre and Genre tables to filter by genre
9697
query = query.join(HasGenre).join(Genre).filter(Genre.genre_name.ilike(f"%{genre}%"))
9798

99+
if order_by and order_by in ["title", "publisher", "genre", "release_year"]:
100+
# Determine the column to order by
101+
column = getattr(cls, order_by)
102+
print("Sorting by:", order_by)
103+
print("Descending order:", descending)
104+
if descending:
105+
print("Applying descending order")
106+
query = query.order_by(column.desc())
107+
else:
108+
print("Applying ascending order")
109+
query = query.order_by(column)
110+
111+
98112
total_count = query.count()
99-
if order_by:
100-
if hasattr(Book, order_by):
101-
if descending:
102-
query = query.order_by(getattr(Book, order_by).desc())
103-
else:
104-
query = query.order_by(getattr(Book, order_by))
113+
114+
105115
if limit:
106116
query = query.limit(limit)
107117

application/main.py

-3
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,6 @@ def results_view(session, current_user, query, count):
190190
print(f"Please select a value in the range [1, 2].")
191191
query, count = Book.search(session, query = query, order_by=order_by, descending=descending)
192192

193-
# Ensure distinct results
194-
# query = query.distinct()
195-
196193
# also sets the current page back to 0 >:]
197194
cur_page = 0
198195
print_search_flag = True

0 commit comments

Comments
 (0)