Skip to content

Commit 0daf6a1

Browse files
committedNov 9, 2016
added search bar functionality. ES6 default parameters
1 parent aca9eee commit 0daf6a1

File tree

2 files changed

+17
-11
lines changed

2 files changed

+17
-11
lines changed
 

‎src/components/search_bar.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
11
import React, { Component } from 'react';
22

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 {
54
constructor(props) {
65
super(props);
76

8-
//initializing component state
9-
this.state = { searchTerm: '' };
7+
this.state = { term: '' };
108
}
119

1210
render() {
1311
return (
1412
<div className="search-bar">
1513
<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)} />
1916
</div>
2017
);
2118
}
2219

20+
handleInputChange(term) {
21+
this.setState({term});
22+
this.props.handleSearchTermChange(term);
23+
}
2324
}
25+
26+
export default SearchBar;

‎src/index.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ class App extends Component {
1717
selectedVideo: null
1818
};
1919

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) => {
2225
//ES6 equivalent of videos: videos
2326
this.setState({
2427
videos: videos,
@@ -30,10 +33,10 @@ class App extends Component {
3033
render() {
3134
return (
3235
<div>
33-
<SearchBar />
36+
<SearchBar handleSearchTermChange={ term => this.videoSearch(term)} />
3437
<VideoDetail video={ this.state.selectedVideo }/>
3538
<VideoList
36-
handleVideoSelect={ selectedVideo => this.setState({ selectedVideo }) }
39+
handleVideoSelect={ selectedVideo => this.setState({ selectedVideo }) }
3740
videos= { this.state.videos }/>
3841
</div>
3942
);

0 commit comments

Comments
 (0)
Please sign in to comment.