-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathApp.js
More file actions
55 lines (47 loc) · 1.11 KB
/
App.js
File metadata and controls
55 lines (47 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import React from "react";
import Search from "./components/Search";
import MovieResults from "./components/MovieResults";
import Info from "./components/Info";
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
movies: [],
moreInfo: []
};
this.getMovies = this.getMovies.bind(this);
this.getMoreInfo = this.getMoreInfo.bind(this);
this.hideInfo = this.hideInfo.bind(this);
}
getMovies(result) {
this.setState({
movies: result
});
}
getMoreInfo(result) {
this.setState({
moreInfo: result
});
}
hideInfo() {
this.setState({
moreInfo: ""
});
}
render() {
return (
<div className="background">
<Search getMovies={this.getMovies} hideInfo={this.hideInfo} />
<MovieResults
movies={this.state.movies}
getMoreInfo={this.getMoreInfo}
/>
{this.state.moreInfo === "" ? null : (
<Info moreInfo={this.state.moreInfo} />
)}
{/* <Info moreInfo={this.state.moreInfo} /> */}
</div>
);
}
}
export default App;