I have this parent App.jsx
, with two components <Child1/>
and <Child2/>
imported.
JavaScript
x
27
27
1
export default function App() {
2
const [isFlipped, setIsFlipped] = React.useState(false);
3
4
const handleSelectPlayers = () => {
5
setIsFlipped(true);
6
}
7
8
const handleDeselectPlayers = () => {
9
setIsFlipped(false);
10
}
11
12
return (
13
<Flippy
14
isFlipped={isFlipped}
15
flipDirection="horizontal" // horizontal or vertical
16
style={{ width: "400px", height: "600px" }} /// these are optional style, it is not necessary
17
>
18
<FrontSide>
19
<Child1 onSelectPlayers={handleSelectPlayers} /> // <-----
20
</FrontSide>
21
<BackSide>
22
<Child2 onDeselectPlayers={handleDeselectPlayers} /> // <-----
23
</BackSide>
24
</Flippy>
25
);
26
}
27
This is Child1.jsx
, where I have ‘players’ set locally by this.setState()
:
JavaScript
1
30
30
1
class Child1 extends Component {
2
constructor(props) {
3
super(props);
4
5
this.state = {
6
players:[]
7
};
8
}
9
10
async getPlayers() {
11
const res = await fetch("/json/players.json");
12
const data = await res.json();
13
const players = Object.values(data.Players)
14
15
this.setState({
16
players: players
17
},() => console.log(this.state.players));
18
}
19
20
handlePlayers = () => {
21
this.props.onSelectPlayers();
22
};
23
24
render() {
25
return (
26
27
<Button handleClick={() => this.handlePlayers()}></Button>
28
29
);
30
And here Child2.jsx
, which needs ‘players’ as props
, given the fact they are fetched at Child1.jsx
.
JavaScript
1
27
27
1
class Child2 extends Component {
2
constructor(props) {
3
super(props);
4
5
this.state = {
6
players:[]
7
};
8
}
9
10
11
handlePlayers = () => {
12
// do something with players here
13
};
14
15
handleChangePlayers = () => {
16
this.props.onDeselectPlayers();
17
};
18
19
render() {
20
return (
21
22
<Button handleClick={() => this.handlePlayers()}>
23
<Button handleClick={() => this.handleChangePlayers()}>
24
25
);
26
}
27
I know I can achieve this by having a callback to App.jsx
at Child1.jsx
, so I can pass players as props to Child2.jsx
, but how so?
Advertisement
Answer
You can keep the players
state on the Parent of both Child components. This way, you can pass it down as props to the relevant components. Refer to my comments on the code for insight
JavaScript
1
38
38
1
function App(){
2
const [players, setPlayers] = React.useState(); // single source of truth for players
3
4
return (
5
<React.Fragment>
6
<Child1 setPlayers={setPlayers}/> // pass state setter to Child1 where you perform the xhr to fetch players
7
<Child2 players={players}/> // pass players down as props to Child2
8
</React.Fragment>
9
)
10
}
11
12
class Child1 extends React.Component{
13
14
componentDidMount(){
15
this.getPlayers(); // sample fetching of players
16
}
17
18
getPlayers() {
19
this.props.setPlayers([ // set players state which resides on the parent component "App"
20
"foo",
21
"bar"
22
]);
23
}
24
25
render() {return "Child1"}
26
}
27
28
class Child2 extends React.Component{
29
30
componentDidUpdate(){
31
// this.props.players contains updated players
32
console.log(`Child2 players`, this.props.players);
33
}
34
35
render() {return "Child2"}
36
}
37
38
ReactDOM.render(<App/>, document.getElementById("root"));
JavaScript
1
4
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.8.3/umd/react.production.min.js"></script>
2
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.8.3/umd/react-dom.production.min.js"></script>
3
4
<div id="root"></div>