CMPUT301F23T01 / Sigma-Blue

Introduction to Software engineering project repository
BSD 2-Clause "Simplified" License
0 stars 1 forks source link

Design the sorting system #35

Closed waridh closed 10 months ago

waridh commented 12 months ago

Design the sorting system

The sorting system has to be able to accommodate sorting items by:

Filter

We need to be able to filter the items by:

Development

waridh commented 12 months ago

These are all methods that could be done via database query, but we'd have to do a reading if that is faster than adjusting the local copy. Maybe there is a benefit in doing the query directory on the database? (Better synchronization).

Yunyang-Lu commented 11 months ago

From the CRC card design aspect, I am assuming the sorting and filtering is done in one fragment, which pops out from the main viewListActivity, according to the user interface design. Will name it as ItemSortFilterFragment. The implementation details are not decided, I'm just trying to suggest/figure out how these modules work.