GenZHAW / FILMREEL

Apache License 2.0
0 stars 0 forks source link

Page: Watchlist 🎥 #3

Closed landrit closed 2 years ago

landrit commented 2 years ago

Baseline The Watchlist displays all movies that have received a right-swipe. We got this idea from popular dating apps. On the watchlist, details about these movies can be expanded and the people using them can mark whether they have already seen the movie.

Problem How do you handle the performance if there are dozens of movies? Do you list all the movies? What if the users are looking for a specific movie but can't remember the name exactly and there are more than 100 movies?

Requirement -[ ] List the movies and show the title, short description, year and the duration -[ ] Store all marked movies of the user -[ ] Mark watched movies

Possible way of implementation / solution

  1. Load the stored data from the data base
  2. Create a list where you can add a for each of the found data and show the data in the list
  3. Add Lazy Loading to handle Big Data

Hints Index the data base on a specific column to get faster results

ArmandoShala commented 2 years ago

You mentioning a good problem with the amount of marked movies. We should implement a searchable list

landrit commented 2 years ago

good to see that we have the same opinion 👍🏻