Skip to content
react

How To Call Child Function From Parent Component In React

Apr 1, 2023Abhishek EH3 Min Read
How To Call Child Function From Parent Component In React

When you need to call a function declared in the parent component from a child component, it is as easy as passing it as a prop to the child component and calling it from the child component. However, when you want to call the other way around, things can be a bit tricky. In this article, we will see how to the call child component function from the parent component.

Consider the following example:

App.js
1const ChildComp = () => {
2 function showAlert() {
3 alert("Hello from Child Component")
4 }
5 return <div></div>
6}
7
8function App() {
9 return (
10 <div>
11 <button>Click Me</button>
12 <ChildComp />
13 </div>
14 )
15}
16
17export default App

Here we have a parent component with a button and a child component with a function to show an alert. If you want to call the showAlert function when the button is clicked, there is no direct way to access it.

Let's add a reference to the child component in the parent component using useRef hook.

App.js
1import { useRef } from "react"
2
3const ChildComp = () => {
4 function showAlert() {
5 alert("Hello from Child Component")
6 }
7 return <div></div>
8}
9
10function App() {
11 const childCompRef = useRef()
12 return (
13 <div>
14 <button>Click Me</button>
15 <ChildComp ref={childCompRef} />
16 </div>
17 )
18}
19
20export default App

Now if you run the application and see, you will get the following warning in the console:

Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?

forwardRef warning

How to fix this? As the warning itself suggests, we need to use forwardRef to enclose the child component.

App.js
1import { forwardRef, useRef } from "react"
2
3const ChildComp = forwardRef((props, ref) => {
4 function showAlert() {
5 alert("Hello from Child Component")
6 }
7 return <div></div>
8})
9
10function App() {
11 const childCompRef = useRef()
12 return (
13 <div>
14 <button>Click Me</button>
15 <ChildComp ref={childCompRef} />
16 </div>
17 )
18}
19
20export default App

When we enclose the child component with forwardRef, it receives a second parameter apart from props, which is the ref passed from the parent component.

Now with the help of this ref, we can specify which functions can be accessed by the parent component. This can be done using useImperativeHandle hook, as shown below:

App.js
1import { forwardRef, useRef, useImperativeHandle } from "react"
2
3const ChildComp = forwardRef((props, ref) => {
4 useImperativeHandle(ref, () => ({
5 showAlert() {
6 alert("Hello from Child Component")
7 },
8 }))
9 return <div></div>
10})
11
12function App() {
13 const childCompRef = useRef()
14 return (
15 <div>
16 <button>Click Me</button>
17 <ChildComp ref={childCompRef} />
18 </div>
19 )
20}
21
22export default App

useImperativeHandle hook accepts 2 mandatory parameters, the first is the reference and the second is the initialization function, to which we can pass our showAlert declaration.

Finally, let's bind the click event of the button with the showAlert function:

App.js
1import { forwardRef, useRef, useImperativeHandle } from "react"
2
3const ChildComp = forwardRef((props, ref) => {
4 useImperativeHandle(ref, () => ({
5 showAlert() {
6 alert("Hello from Child Component")
7 },
8 }))
9 return <div></div>
10})
11
12function App() {
13 const childCompRef = useRef()
14 return (
15 <div>
16 <button onClick={() => childCompRef.current.showAlert()}>Click Me</button>
17 <ChildComp ref={childCompRef} />
18 </div>
19 )
20}
21
22export default App

Now if you run the application and click on the button, you should be able to see the alert:

alert

You can view the source code here.

If you have liked article, do follow me on twitter to get more real time updates!

Leave a Comment

© 2023 CodingDeft.Com