@@ -159,35 +159,58 @@ def results_view(session, current_user, query, count):
159
159
# ASC or DESC (ascending or descending)
160
160
# it should alter the "query" variable in the scope
161
161
# of THIS function
162
- order_by = "title "
162
+ order_by = "na "
163
163
descending = False
164
164
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
+
180
196
print ("Would you like to sort in ascending or descending order?" )
181
197
print ("1:\t Ascending" )
182
198
print ("2:\t Descending" )
183
199
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
191
214
query , count = Book .search (session , query = query , order_by = order_by , descending = descending )
192
215
193
216
# also sets the current page back to 0 >:]
0 commit comments