React Component API

 

ReactJS component is a top-level API. It makes the code completely individual and reusable in the application. It includes various methods for:

  • Creating elements
  • Transforming elements
  • Fragments

Here, we are going to explain the three most important methods available in the React component API.

  1. setState()
  2. forceUpdate()
  3. findDOMNode()

setState()

This method is used to update the state of the component. This method does not always replace the state immediately. Instead, it only adds changes to the original state. It is a primary method that is used to update the user interface(UI) in response to event handlers and server responses.

Note: In the ES6 classes, this.method.bind(this) is used to manually bind the setState() method.

Syntax

 
  1. this.stateState(object newState[, function callback]);  

In the above syntax, there is an optional callback function which is executed once setState() is completed and the component is re-rendered.

forceUpdate()

This method allows us to update the component manually.

Syntax

 
  1. Component.forceUpdate(callback);  
  2. findDOMNode()

    For DOM manipulation, you need to use ReactDOM.findDOMNode() method. This method allows us to find or access the underlying DOM node.

    Syntax

     
    1. ReactDOM.findDOMNode(component);