Skip to content

Commit 87339b5

Browse files
committed
Sorting by title completed
1 parent 9086ff7 commit 87339b5

File tree

2 files changed

+50
-29
lines changed

2 files changed

+50
-29
lines changed

application/book.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -98,20 +98,18 @@ def search(cls, session, query=None, bid=None, title=None, release_date=None, au
9898

9999
if order_by and order_by in ["title", "publisher", "genre", "release_year"]:
100100
# Determine the column to order by
101-
column = getattr(cls, order_by)
101+
column = getattr(Book, order_by)
102102
print("Sorting by:", order_by)
103103
print("Descending order:", descending)
104104
if descending:
105105
print("Applying descending order")
106-
query = query.order_by(column.desc())
106+
query = query.order_by(None).order_by(column.desc())
107107
else:
108108
print("Applying ascending order")
109-
query = query.order_by(column)
110-
109+
query = query.order_by(None).order_by(column)
111110

112111
total_count = query.count()
113112

114-
115113
if limit:
116114
query = query.limit(limit)
117115

@@ -305,7 +303,7 @@ def get_average_rating(session, bid):
305303
average_rating += entry.rating
306304
rating_count += 1
307305
average_rating /= rating_count
308-
return str(average_rating)
306+
return str(round(average_rating, 1))
309307

310308

311309
def rating_view(session, uid):

application/main.py

+46-23
Original file line numberDiff line numberDiff line change
@@ -159,35 +159,58 @@ def results_view(session, current_user, query, count):
159159
# ASC or DESC (ascending or descending)
160160
# it should alter the "query" variable in the scope
161161
# of THIS function
162-
order_by = "title"
162+
order_by = "na"
163163
descending = False
164164
attributes = ("Title", "Publisher", "Genre", "Released Year")
165-
print("What would you like to sort by?")
166-
for i, attribute in enumerate(attributes):
167-
print(f"{i+1}:\t{attribute}")
168-
sort_attribute = utils.get_input_int("-> ")
169-
match sort_attribute:
170-
case "1":
171-
order_by = "title"
172-
case "2":
173-
order_by = "publisher"
174-
case "3":
175-
order_by = "genre"
176-
case "4":
177-
order_by = "release_year"
178-
case _:
179-
print(f"Please select a value in the range [1, {len(attributes)}].")
165+
166+
while True:
167+
print("What would you like to sort by? [q to quit]")
168+
169+
for i, attribute in enumerate(attributes):
170+
print(f"{i+1}:\t{attribute}")
171+
172+
sort_attribute = utils.get_input_int("-> ")
173+
174+
match sort_attribute:
175+
case "1":
176+
order_by = "title"
177+
case "2":
178+
order_by = "publisher"
179+
case "3":
180+
order_by = "genre"
181+
case "4":
182+
order_by = "release_year"
183+
case "q":
184+
break
185+
case _:
186+
print(f"Please select a value in the range [1, {len(attributes)}].")
187+
continue
188+
189+
break
190+
191+
if (order_by == "na"):
192+
# exit the warrior
193+
# todays tom sawyer
194+
continue
195+
180196
print("Would you like to sort in ascending or descending order?")
181197
print("1:\tAscending")
182198
print("2:\tDescending")
183199
sort_order = utils.get_input_int("-> ")
184-
match sort_order:
185-
case "1":
186-
descending = False
187-
case "2":
188-
descending = True
189-
case _:
190-
print(f"Please select a value in the range [1, 2].")
200+
201+
while True:
202+
match sort_order:
203+
case "1":
204+
descending = False
205+
case "2":
206+
descending = True
207+
case _:
208+
print(f"Please select a value in the range [1, 2].")
209+
continue
210+
break
211+
212+
# order_by has attribute,
213+
# descending has sort order
191214
query, count = Book.search(session, query = query, order_by=order_by, descending=descending)
192215

193216
# also sets the current page back to 0 >:]

0 commit comments

Comments
 (0)