Giter VIP home page Giter VIP logo

recast.ly's Introduction

recast.ly

This is a project I completed as a student at hackreactor. This project was worked on with a pair.

Recast.ly

Your task is to build a YouTube Video Player app using React.

Typical Real-Life Scenario: Your company's CTO is undecided about the most appropriate front-end framework to use and wants to explore building a website using multiple technologies before ultimately choosing the best one.

React is Interesting in a Few Key Ways

  • React uses JSX, which is a syntax extension to JS that is used to describe what the UI should look like.
  • React uses props and state to store the "model" data, rather than an explicit model, like in Backbone.
  • React offers two types of view components, a simple functional-style component, and a feature rich class-based component.
  • When using React, developers don't have to listen to changes to the model and manually trigger a re-render - instead, React will re-render the necessary components upon state change.

High Level Goals of this Sprint

  • Learn React and how to think about web apps as components in React
  • Learn how to transpile code with Babel's command line tool
  • Practice using ES6 features
  • Continue practicing interactions with a REST API (in this case, the YouTube Data API)

Thinking in Components

When designing and building front-end applications, a good approach is to break the functionality of the application apart into small, easily understandable and reusable pieces, often called components. React components are like JavaScript functions - they accept inputs (called props) and return React elements describing what should appear on the screen.

App Oranization

Here's how the app is organized: app organization

  • App - The top level container for the entire application. This is the component that will be rendered to the DOM
  • Search - Responsible for knowing and communicating information about the search input field
  • VideoPlayer - Responsible for playing a single video and displaying information about it
  • VideoList - A container component responsible for populating video list entry components
  • VideoListEntry - A component that shows a thumbnail view for a single video. When the title of this video is clicked, that video will be played in the VideoPlayer component

Project set up

npm install

Babel In order to take advantage of React's declarative JSX syntax, we need to use a tool called a transpiler. A transpiler converts source code written with non-standard syntax, into to a version of JavaScript that will work in all major environments. Babel is a generic transpiler for JavaScript that can convert both JSX and ES6 syntax.

We're going to use Babel's command line interface to transpile the source code in this sprint. To install it globally, run:

  • npm install -g babel-cli The following command will transpile all of the JSX/ES6 files in this sprint into parallel ES5 files in the compiled/ directory.

  • babel . --out-dir compiled --presets=es2015,react --ignore=node_modules,compiled --source-maps inline This command might seem intimidating, but is similar to passing multiple arguments to a function. Let's break it down:

  • . tells Babel to transpile all javascript files in the current working directory

  • --out-dir tells Babel to put the transpiled files into the compiled/ folder

  • --presets tells Babel what kind of transformations to make. es2015 transpiles ES6 syntax, and react transpiles JSX. Each preset is installed as it's own package, with the naming convention babel-preset-*.

  • --ignore tells Babel to not transpile any files in the the node_modules and compiled directories

  • --source-maps tells Babel to include source maps with our transpiled code, making debugging much easier. The --presets option tells Babel what kind of transformations to make. es2015 transpiles ES6 syntax, and react transpiles JSX. Each preset is installed as its own package, with the naming convention babel-preset-*.

Inside of index.html and SpecRunner.html, the compiled files are loaded in the script tags. After making any changes to the files in the src/ directory, you must transpile them to see the changes reflected when you refresh your html files.

  • Transpile all the source files into the compiled directory This is arduous to do manually after every change. Luckily, Babel has an option that makes this much easier.
  • Find a way to make babel compile files as they are changed

Live reloading server In order to boost productivity when developing rich client side applications, this sprint uses a live development server to automatically refresh the browser page as you make changes to your source code.

Install Live Server from npm:

  • npm install -g live-server

Try it out:

  • In a new Terminal tab, start the Recast.ly app by running live-server
  • Make a change in one of the JavaScript files in the src/ directory
  • Be amazed as your browser should magically refresh with the compiled changes We'll be covering servers later in extensive detail. For now you can just run this command and ignore the complexity of what it means or how it works.

npm scripts npm comes with a handy scripting feature that lets you define shell commands inside of package.json. If you want to improve your application's build process, consider completing the following optional task:

  • Write an npm start script that combines the previous two build steps together

React Dev Tools Install the React Dev Tools extension for Chrome to make debugging this sprint easier.

Try the Problem

During the "Try the Problem" phase, you should:

  • Work through the React Components primer solo
  • Read this guide about thinking in React components.

Bare Minimum Requirements

  • Inside of src/index.js, render the App component to the DOM and explore the codebase to get an understanding of each component's responsibility
  • Use ES6. There are a few new features that play very nicely with React. Insist on using them throughout this sprint:
    • Classes
    • Arrow function expressions, especially to exploit its quality of binding this to the lexical scope
    • Shorthand object property and method syntax
    • Template strings
    • Default parameters
    • Destructuring

Create a dynamic Video List component When building out front-end applications, it can be productive to temporarily ignore the complexity of working with real data, and mock out "fake" data instead. Stateless functional components make this easy because they render the same with "real" data from a live API or "fake" data from a file.

You're going to use the sample data in src/data/exampleVideoData.js to build out the stateless functional VideoList and VideoListEntry components.

  • Include src/data/exampleVideoData.js in index.html so it can be used by your React components
  • Pass exampleVideoData into the VideoList component
  • Refactor the VideoList component to dynamically render one VideoListEntry component for each video object in exampleVideoData
  • Refactor the VideoListEntry component to dynamically render based on the video object it receives
  • Make sure the tests for VideoList and VideoListEntry are passing. You can open the tests with npm test When it's all set up, you should see the titles, thumbnails, and descriptions of some React Tutorials on the page. If you notice a Warning in the console about a "unique 'key' prop", know that this has to do with React's performance, but you can ignore it if you wish.

Create a dynamic Video Player component Videos are played by passing a source url to the iframe tag inside the VideoPlayer component. The video associated with the id included after https://www.youtube.com/embed/ will get played. Because this is also a stateless functional component, we can build it out with our example data.

  • Pass a single video from exampleVideoData into VideoPlayer
  • Update VideoPlayer to play the video it is passed and display its title and descriptions
  • Make sure the tests for VideoPlayer are passing. You can open the tests with npm test

Hook together the Video List and Video Player components Now it's time to make the stateless functional components interact. In React, sibling components can not directly access each other, so they need the help of a parent component to manage communication between them. In this case, App is the parent component for the sibling components VideoList and VideoPlayer.

  • If you haven't already, complete [Course] 6ees6ees6ees.
  • Refactor App into a class component using ES6 classes
  • Initialize the state of App to keep track of all the videos in the video list and the current video in the player. Pass this state down as props to its children components. Continue to use the example data.
  • Make it so that when the title of a VideoListEntry is clicked, that video is displayed in the player. Do not add state to any of the functional components.
  • Make sure all the active tests for App are passing. You can open the tests with npm test

Set up interactions with the YouTube API You'll need a developer key in order to access videos from the YouTube Data API. This is common practice with third party APIs because they want to keep track of who is accessing their data, enforce rate limits, and even sometimes make money. Access to the YouTube API is free, all you need is a Google Account.

  • Go to Google's YouTube API
  • If prompted, select a project or create a new one. It doesn't matter what you name a new project
  • Click Enable and then Go to Credentials
  • Select Web browser from the drop-down and the Public data radio button
  • Give your key any name, leave the optional field blank, and click Create.
  • Make your key available to the rest of your application from a new file, src/config/youtube.js

Create a reusable API helper To search for YouTube videos, you'll use the API's Search:list endpoint. To help keep your code organized, write a helper function that is solely responsible for interacting with this endpoint. In lib/searchYouTube.js fill out the searchYouTube function. It should:

  • Use jQuery to send a GET request to the search endpoint. This is the only time you should use jQuery in this sprint
  • Accept a callback function that is invoked with the videos array that is returned from hitting the endpoint
  • Accept an options object with the following properties:
    • query - the string to search for
    • max - the maximum number of videos to get, which should default to 5
    • key - an authorized YouTube Browser API key
    • Only GET embeddable videos
    • Make sure all the tests for searchYouTube are passing. You can open the tests with npm test

Initialize the app with live data Before integrating live data, you should take a minute to appreciate how far you got with the exampleVideoData. Now you can tackle the complexity of starting to use actual data in isolation, and assuming the shape of the live data is the same as the data you mocked out, everything will continue working. If you made your helper correctly, this following section should be simple.

  • As you've done with other modules, make searchYouTube available for consumption and pass it as a prop to your app
  • Replace exampleVideoData from the initial state of App with empty initial values, appropriate to the type of values it is expecting
  • Utilize the componentDidMount lifecycle hook to render your app with live videos returned from searchYouTube
  • Remove the x from the pending tests in AppSpec.jsx, and make sure all the App tests are passing. You can open the tests with npm test

Implement live-search Build out Search and update other components:

  • As a user types into the input box, the VideoList and VideoPlayer components are updated with videos from the YouTube data API that match the value of the input
  • Debounce ajax requests triggered by the Search component to occur at most once every 500ms. (Imagine if YouTube's API wasn't free :O)
  • Make sure all the tests for Search are passing. You can open the tests with npm test

Advanced Content

  • Create a VideoDetails component that makes another request to the YouTube API and renders more complete video information to the page
  • Create an auto-play toggle button that will automatically start playing the video selected from VideoList
  • Refactor searchYouTube to use the fetch function to make HTTP requests, instead of $.ajax

Resources

recast.ly's People

Contributors

arsimr16 avatar

Watchers

James Cloos avatar

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.