File tree 2 files changed +17
-11
lines changed
2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1
1
import React , { Component } from 'react' ;
2
2
3
- //SearchBar is a class based component which has access to props, states.
4
- export default class SearchBar extends Component {
3
+ class SearchBar extends Component {
5
4
constructor ( props ) {
6
5
super ( props ) ;
7
6
8
- //initializing component state
9
- this . state = { searchTerm : '' } ;
7
+ this . state = { term : '' } ;
10
8
}
11
9
12
10
render ( ) {
13
11
return (
14
12
< div className = "search-bar" >
15
13
< input
16
- value = { this . state . searchTerm }
17
- placeholder = 'Search for a video!'
18
- onChange = { ( e ) => this . setState ( { searchTerm : e . target . value } ) } />
14
+ value = { this . state . term }
15
+ onChange = { event => this . handleInputChange ( event . target . value ) } />
19
16
</ div >
20
17
) ;
21
18
}
22
19
20
+ handleInputChange ( term ) {
21
+ this . setState ( { term} ) ;
22
+ this . props . handleSearchTermChange ( term ) ;
23
+ }
23
24
}
25
+
26
+ export default SearchBar ;
Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ class App extends Component {
17
17
selectedVideo : null
18
18
} ;
19
19
20
- //consuming the YT search api with a sample search
21
- YTSearch ( { key : API_KEY , term : 'surfboards' } , ( videos ) => {
20
+ this . videoSearch ( ) ;
21
+ }
22
+
23
+ videoSearch ( term = 'surfboards' ) {
24
+ YTSearch ( { key : API_KEY , term : term } , ( videos ) => {
22
25
//ES6 equivalent of videos: videos
23
26
this . setState ( {
24
27
videos : videos ,
@@ -30,10 +33,10 @@ class App extends Component {
30
33
render ( ) {
31
34
return (
32
35
< div >
33
- < SearchBar />
36
+ < SearchBar handleSearchTermChange = { term => this . videoSearch ( term ) } />
34
37
< VideoDetail video = { this . state . selectedVideo } />
35
38
< VideoList
36
- handleVideoSelect = { selectedVideo => this . setState ( { selectedVideo } ) }
39
+ handleVideoSelect = { selectedVideo => this . setState ( { selectedVideo } ) }
37
40
videos = { this . state . videos } />
38
41
</ div >
39
42
) ;
You can’t perform that action at this time.
0 commit comments