Skip to content

Meeting notes 7 12 2021

KristinJJ edited this page Jul 13, 2021 · 4 revisions

What was done

  • API call with Wiki page
  • Drag and Drap component with Custom Preview

Discussion

  • Branching conventions
  • Branch naming conventions? (initials-issueNumber)
  • Retrospective

Next Steps

  • Create PRs to merge branches (new-api-testing and movie-ranking) into Main branch
  • Create Cypress testing
  • Research what can be used to test database calls?
  • Make fake user pages (User A, User B, User C) that can be used to test multi-user ranking ability (skip authentication for now)
    • Have a place for String input to identify each user's list of ranked movies?
  • Two steps for algorithm :
    • Events are held in the database with lists of movie that are ranked
    • Recommendations can be generated off of top movie(s)
  • Three main steps :
    • Getting the list of movies
    • Getting people to rank them (submit button)
    • Displaying the result
    • (stretch goal) saving the list in a database
    • (stretch goal) displaying a more dynamic list of movies

Proposed Data Model

[
	{ eventId: "asdfasdf",
	  movies: [ movieIds, ... ],
	  //invitees: [ userId, ... ],
	  rank: [
	  	{ userId: "", rankedMovies: [ movieIds, ... ] },
	  ]	
	}
]