React Hooks Introduction ๐ŸŽฃ

Questions ๐Ÿค”
  1. Why hooks when there is a class
    Hooks are simple, robust and flexible. We can trim no of lines, can call and maintain lifecycle method execution using useEffect, Provide a flexibility of sharing logic that wasnโ€™t possible in React components before.

  2. What problems hooks can solve
    ๐Ÿ”ธ Wrapper Hell (Reusable Logic), As application grows maintainability will be very difficult we will be endup by adding to many element to the DOM tree which may led to performance
    ๐Ÿ”ธ Huge Components trouble of having multiple life cycle methods and complex components are hard to understand

    componentDidMount() {
    this.subscribeToStatus(id);
    }
    componentDidUpdate(prevProps) {
    prevProps != props ? true : false;
    }
    componentWillUnmount() {
    this.unsubscribeToStatus(id);
    }

    ๐Ÿ”ธ Confusing Classes, Classes confuse both people and machines

Introduction

Hooks are a new player in React 16.8. They let you to use stateful logic between the components. These are the special function which hooks into the the context and can let you to use it later

Hooks let you split one component into smaller functions based on what pieces are related (such as setting up a subscription or fetching data)

Hooks let us split the code based on what it is doing rather than a lifecycle method name. React will apply every effect used by the component, in the order they were specified.

List of built-in React Hooks

React provided many built-in hooks those are

  • ๐Ÿ“Œ useState()
  • โšก๏ธ useEffect()
  • ๐Ÿงต useContext()
  • ๐Ÿ’พ useMemo()
  • โœ‚๏ธ useReducer()

I recommend to watch Dan Abramov and Ryan Florence video on React Hooks it really awesome

Last updated on by krishnaUIDev