Our goal is to implement a lazy loading feature on the main logged in page with some suggest recipes the user can look at/browse without explicitly searching for a recipe.
The following tasks outline what we need to work through to achieve our goal:
[] Have a concrete way of displaying a recipe to a user (like in a search results page)
[] Using the JSON file + CSV file of the recipes (gotten from the API), display a couple recipes
[] Implement the lazy loading feature in a way that only 4-5 recipes are shown, unless the user requests more (potentially with a 'more' button or scrollbar)
The goal is changed to show 20 recipes at a time. This was successfully completed. There is one more bug that remains, but overall, the lazy loading feature has been implemented.
Our goal is to implement a lazy loading feature on the main logged in page with some suggest recipes the user can look at/browse without explicitly searching for a recipe.
The following tasks outline what we need to work through to achieve our goal: