Skip to content

Latest commit

 

History

History
113 lines (69 loc) · 7.51 KB

react-basics.md

File metadata and controls

113 lines (69 loc) · 7.51 KB

React Basics

React is a JavaScript library for building user interfaces. Created by Facebook, Instagram, and the community, React is the V is View in the MVC architecture. React uses a component-based architecture to implement and manage the View of a web applciation.

React makes it (relatively) easy to start building an application by extending HTML so that the markup can describe not only the static webpage but also dynamic behavior.

Note: Besides the pure React library itself, there are 3 distinct versions of React: React-devtools, ReactJS.Net, React Native. Other than React itself, React Native is pretty popular as well for creating Native mobile apps. However, we will be using React.js.

JSX

React uses its own flavor of Javascript called JSX. JSX allows us to describe our User Interfaces (UIs) in a syntax very close to the HTML that we are used to. It is, however, optional. React can be used without JSX. In fact, React just compiles JSX to pure JavaScript. Then it works with compiled JavaScript in the browser.

To get a basic introduction to JSX see the docs here and find a more in-depth tutorial on JSX here. In most cases, we will use JSX instead of Javascript to develop our application.

React Components

React Components are the basic building blocks of a React Application. As you think about the UI of your web application, identify aspects of your UI that are used several times (Button, Panel, Avatar), or are complex enough on its own (App, FeedStory, Comment). These are good candidates for reusable components you should develop.

React components are small, reusable pieces of code that return a React element to be rendered to the page. A component can be broken down into distinct pieces of functionality and used within other components. Components can return other components, arrays, strings and numbers.

A React component can be one of two types: (1) a function (or functional) component or (2) a class component. Sometimes you will hear different terms to describe these two types, like stateless and stateful. Function components are stateless and are often associated with the presentational concept. Class components are stateful.

The simplest version of React component is a plain JavaScript function that returns a React element:

function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}

Function components take in props (i.e., data), and output to the DOM. It returns what looks like HTML, but is really a special JavaScript syntax called JSX.

Components can also be ES6 classes

class Hello extends React.Component {
    render() {
        return <h1> Hello, {this.props.name}</h1>;
      }
} 
ReactDOM.render(<Hello />, mountNode);

This code creates a simple Hello Component and renders a modified <h1> tag and the name of the person passed in from another component.

Managing State and Lifecycle Events

Function and class components manage state. State is a JavaScript object that stores a component's dynamic data and determines the component's behavior. State is private and fully controlled by the component. It is not accessible to any component other than the one that owns and sets it. State can be passed to child components as props, but it is not accessible to parent components. This private internal state is what gives React its reactive nature. When the state changes, React will re-render that component in the browser.

Function components use functions called hooks that let you “hook into” React state and lifecycle features from function components. Hooks don’t work inside classes — in fact, they let you use React without classes. React provides a few built-in Hooks like useState, useEffect, useRef, etc. You can also create your own Hooks to reuse stateful behavior between different components.

While function components use hooks, class components use lifecycle methods.

Since 2019, function components have become the more popular way to define a React component. Function components are simpler to write, easier to test, and help maintain best practices.

Anatomy of a React Component

React Components
Component names should also always start with a capital letter (<Wrapper/> not <wrapper/>). See documentation for more information on using components.

Component Communication - State vs Props

In a React component, props carry data around your application. Props are variables passed to it by its parent component. State on the other hand are also variables, but directly initialized and managed by the component. The state can be initialized by props.

The State and Props objects have one important difference. Inside a class component, the State object can be changed while the Props object represents fixed values.

For example, a parent component might include a child component by calling

<ChildComponent />

The parent can pass a prop by using this syntax:

<ChildComponent color=green/>

Inside the ChildComponent constructor, we could access the color prop:

function ChildComponent(props) {
  console.log(props.color) // prints green
}

or

function ChildComponent({ color }) {
  console.log(color) // prints green
}

And any other method in this class can reference the props using the exampled syntax.

However, props should never be changed in a child component, so if there’s something going on that alters some variable, that variable should belong to the component state.

Props are also used to allow child components to access methods defined in the parent component. This is a good way to centralize managing the state in the parent component, and avoid children to have the need to have their own state.

Most of your components will just display some kind of information based on the props they received, and stay stateless.

Getting Started with React

React certainly has a learning curve, and you should take some time going through tutorials to understand the basics. Below is a list of concepts and resources that may be helpful.

  • React Vocabulary - This is a must-read as you are working though the assignment and tutorials.

  • Thinking in React - This gives you an overview and philosophy for developing in React.

  • React Developer Tools - Download the React Developer Tools Chrome Plug-in to help you debug your application or use the Chrome Developer Tools

  • Baby Names React Tutorial (Optional) - Beginner friendly lessons that cover some useful things for the bootcamp