Git Product home page Git Product logo

u2_lab_react_lotr's Introduction

React Lord of the Rings

lord of the rings

Overview

Let's build something small to reinforce what you've learned so far. We're going to practice creating components and passing information into them through props. We'll be building a simple website that displays titles, movie posters, and runtime for the original Lord of the Rings Trilogy.

Objectives

  • Pass data through React props into child components
  • Create a reusable component to display data from props

What You'll Be Building

You'll be building a website in this lab with a header and 3 movies. Here is an example site:

Lord of the Rings movie info

Getting Started

  • Fork and clone this repository and cd into the new directory.
  • You've been given starter code. Run npm i to install dependencies.
  • You'll be working in the src directory of this app.

Instructions

Create A Simple Movie Component

The components directory is typically where you'll add components in a React project to organize your files.

Inside of the components folder, create a new React Component file called Movie.js.

We'll write our Movie component as a functional component:

import React from 'react';

const Movie = () => {

  return (
    <div>
      
    </div>
  )
};

export default Movie;

Add some JSX inside the return so this component will be visible in our application.

Let's keep the JSX simple for now, and we'll make it more complex once we're sure it works. Remember, our goal is to display the movie poster, title, and runtime information.

  • Let's add one <h1> for the movie title, one <img> for the poster, and a <p> for the runtime.
  • In the <h1> and <p> tags add this text to start:
<h1>Lord of the Rings: </h1>
<p>Runtime: </p>

Viewing the Component

Open src/App.js and add the <Movie /> inside of <main>.

Now open the app in your browser with npm start if you haven't already to see if it is rendering.

Uh oh. There's an error.

Failed to compile
./src/App.js
  Line 11:  'Movie' is not defined  react/jsx-no-undef

'Movie' is not defined? Ah.

simply

One does not simply refer to components in React. In our src/App.js, we're saying "Display what's returned from the Movie component." However - we haven't told src/Apps.js where to find the Movie component!

  • Add an import statement at the top of the src/App.js file.
  • You can use VS Code's IntelliSense to see if your path is correct as you type your import statement string.

Now you should see the page without the error message, and it should have the JSX from the Movie component.


Passing Information via Properties (props)

We need to make the Movie component accept information so we can use it to display different titles and runtimes.

  • In the src/App.js file, add title, hours, minutes, and poster props to the <Movie /> tag.
  • Remember, when adding props to a component, we need to first give the prop a name, then pass data into it. Example:
<Component propName={propData} />

Here is some starter data for you to add in for your <Movie /> props.

title hours minutes poster
The Fellowship of the Ring 2 58 https://image.tmdb.org/t/p/original/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg

We'll be able to read the value of these props from inside the component. You can name props pretty much anything you want - but it's good practice to be descriptive!

  • Update the JSX in src/components/Movie.js to access and display the value of each prop we created.

Refresh the page and make sure everything works correctly.


Reusing the Component

one ring

One component to rule them all

Once you've got props working for one component, then write two more!

In src/App.js, call the <Movie /> component again with different values for the title, hours, minutes, and poster. properties. Display information for the complete trilogy! (If you don't know everything about Lord of the Rings off the top of your head, here it is).

title hours minutes poster
The Fellowship of the Ring 2 58 https://image.tmdb.org/t/p/original/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg
The Two Towers 2 59 https://image.tmdb.org/t/p/original/rrGlNlzFTrXFNGXsD7NNlxq4BPb.jpg
The Return of the King 3 21 https://image.tmdb.org/t/p/original/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg

In case you want to nerd out and add even more details, here are handy links to the IMDB page for each movie:

When you're finished, add style to create a Lord of the Rings themed page.

Recap

Components are great because they allow us to compartmentalize code and easily reuse parts we create. We simply set the value of props and the component defines how everything should be displayed.

In this instance, we factored out some redundancy of the movie titles.

  • All these movies start with "Lord of the Rings:", so only the unique part is the prop.
  • Similarly, we don't have to rewrite the format of the runtime information.

Building and reusing components becomes especially powerful the more complex the components become.

  • Imagine building a component for video search results inside YouTube.
    • The props list is huge:
      • tons of links
      • time information
      • preview images
      • options to add the result to a playlist
      • and all sorts of other things.

Building one component to rule them all would save you a lot of time and headaches!

frodo

Resources

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.