issues2 Min Read

How to Update Child Component State from Parent Component

Gorav Singal

May 08, 2021

TL;DR

Maintain state in the parent component and pass it as props to the child; when parent state changes, React automatically re-renders the child with updated data.

How to Update Child Component State from Parent Component

Problem Statement

I have a parent component which loads some list categories. Based on the selection of this category, I want to show some data in a table. And, I have a table component which displays that data.

So, based on selectio, data on child component must change.

Solution

The solution is to maintain state in parent component, and pass the props to child component. And the child component, will read data from props.

Parent Component Example

import apiClient from '../../components/api/api_client'
import SimpleLayout from '../../components/layout/simple'
import React, { Component } from 'react'
import { Form } from 'react-bootstrap';
import EmailTable from '../../components/emailView/emailTable'

export default class Users extends Component {
  constructor(props) {
    super(props);
    this.state = {
      emails: []
    };
  }

  handleSelection = async (event) => {
    this.setState({
      emails: await apiClient.getEmailsForList(event.target.value)
    });
  }

  render() {
    const emaillist = this.props.emaillist;
    return (
      <SimpleLayout>
        <div className="row">
          <Form>
            <Form.Group controlId="exampleForm.SelectCustomSizeLg">
              <Form.Label>Email Lists</Form.Label>
              <Form.Control as="select" custom
                onChange={this.handleSelection}>
                {emaillist && emaillist.map((each, index) => {
                  return(
                    <option key={index} value={each.name}>{each.name}</option>
                  )
                })}
              </Form.Control>
            </Form.Group>
            <Form.Group>
              <EmailTable emails={this.state.emails} />
            </Form.Group>
          </Form>
        </div>
      </SimpleLayout>
    )
  }
}

Child Component (EmailTable)

Now the child component will just render data from its props.

import React, { Component } from 'react'
import { Table } from 'react-bootstrap';

export default class EmailTable extends Component {
  render() {
    return (
      <Table striped bordered hover variant="dark">
        <thead>
          <tr>
            <th>#</th>
            <th>Name</th>
            <th>Email</th>
            <th>Status</th>
          </tr>
        </thead>
        <tbody>
          {this.props.emails.map((each, index) => {
            return(
              <tr key={index}>
                <td>#</td>
                <td>{each.email}</td>
                <td>{each.email}</td>
                <td>{each.status}</td>
              </tr>
            )
          })}
        </tbody>
      </Table>
  )
}
}

Screenshots

Parent page

Child Component table

Hope it helps.

Share

Related Posts

Python SMTP Email Code - Sender Address Rejected - Not Owned By User

Python SMTP Email Code - Sender Address Rejected - Not Owned By User

Introduction In a normal email sending code from python, I’m getting following…

Authenticating Strapi backend with Next.js and next-auth using credentials and jwt

Authenticating Strapi backend with Next.js and next-auth using credentials and jwt

Introduction Strapi is a backend system provides basic crud operations with…

ReactJS - Understanding SetState Asynchronous Behavior and How to correctly use it

ReactJS - Understanding SetState Asynchronous Behavior and How to correctly use it

ReactJS setState is Asynchronous setState() method in ReactJS class components…

ReactJS - How to restrict data type for different kind of data

ReactJS - How to restrict data type for different kind of data

Introduction Javascript is not a strict type language. We can use a variable to…

ReactJS - Basic Form Handling and Form submission

ReactJS - Basic Form Handling and Form submission

Introduction Lets take a look at how forms are being handled in ReactJS. We will…

ReactJS - How to create ReactJS components

ReactJS - How to create ReactJS components

Introduction In this post, we will talk about basic of how to create components…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…