Skip to content

arjunyel/movie-trailers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

movie-trailers

Statically generate a site to view trailers for your favorite movies. Built with Web standards, Python 3.6, and The Movie Database API.

Getting started

This is project 1 of the Udacity Full Stack Nanodegree. Only tested in Chrome.

Prerequisites

Required Recommended Optional
Python 3.6.1 Typescript TSLint

Generating Files

  1. Make your list of your favorite 20 movies in source/movies.txt (Limited due to the API)

  2. Put your TMDb API key into source/key.py

tsc # If you have Typescript installed
cd source/
python3 fresh_tomatoes.py

Run with Python

# From base directory
cd generated/
python3 -m http.server

Go to http://localhost:8000

Run with Docker

# From base directory
cd generated/
docker build -t movies:latest .
docker run -d -P movies
docker ps

Get the port the container is listening on:

0.0.0.0:{$PORT}->8000/tcp

Then navigate to http://locahost:{$PORT}

Cool Technologies Used

Web Components

Web Components allow us to create our own custom, reusable, encapsulated HTML tags. In this case we created a movie-card element that go on any website and maintain visual and functional consistency.

<movie-card title="The Iron Giant" poster="IMAGE_URL" youtube="fq2FZdvQXXg"></movie-card>

Among other features our movie card has self-contained CSS through Shadow DOM, can be used by any framework that manipulates the DOM (such as Angular and React), and its properties can be accessed through Javascript like all other HTML tags.

const movies = document.querySelectorAll("movie-card");
    for (const m of movies) {
        console.log(m.title);
    }

Typescript

Typescript makes the lives of developers easier by adding type checking to Javascript. In the Typescript compiler I turned on the strict setting to make sure I handled cases of things being null. Another benefit it gave me was auto-completion in VS Code because it understood what properties different tags had.

const embed = document.getElementById("embed") as HTMLIFrameElement | null;
        if (embed) { // Check if iframe exits
            embed.src = youtubeID;
            // My text editor understands that this is an IFrame and therefore has a src property.
        }

CSS Grid

CSS Grid is a standards based way to layout HTML in a 2d grid. This allowed me to get rid of Bootstrap.

CSS Custom Properties

The header of the page, along with the background and text color of the movie cards, can be themed with CSS Custom Properties.

<style>
    :root {
        --text-color: peru;
        --card-color: #fff;
        --header-color: #ff6347;
    }
</style>

Default

<style>
    :root {
        --text-color: white;
        --card-color: black;
        --header-color: gray;
    }
</style>

Alt

Dialog HTML Element

This element is a standards based way to display a modal. Dialog is so new I had to add the definition to Typescript.

The Movie Database API

This product uses the TMDb API but is not endorsed or certified by TMDb.

About

Statically generate a movie trailers website with Python, Typescript, and Web Components

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published