Skip to content
William Silva edited this page Aug 8, 2017 · 4 revisions

Proof of Concept

Data Models for Domain Object

Update (8/8/17): In response to https://piazza.com/class/j2963bd8jpz51j?cid=901, I will say that my original design at https://github.com/wmvsilva/silva-william-webdev/wiki/Design contains all my domain objects along with their attributes.

Search Page

https://silva-william-webdev.herokuapp.com/project_poc/index.html#!/

A user can enter in a movie title and press search. The TMDb API is called which fetches a list of movies. Below the search button, the first page of found movies is displayed along with their movie posters. A user can click on the movie title to go to the details page for that movie.

Details Page

https://silva-william-webdev.herokuapp.com/project_poc/index.html#!/details/120

An example of a details page is above. The URL is for "The Lord of the Rings: The Fellowship of the Ring" movie details page. The movie title, tagline, poster, overview, cast, and YouTube trailer are shown. The details page requires 3 API calls: a call for details, a call to get the cast, and a call to get the associated videos.

Clone this wiki locally