Created
January 6, 2018 06:51
-
-
Save frankfaustino/87de7deabf3e3974c60e60f6317555ee to your computer and use it in GitHub Desktop.
Search Function (part 2) from bookvote Project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import axios from 'axios'; | |
import url from '../../config'; | |
import './SearchResult.css'; | |
class SearchResult extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
upVote: this.props.results.VOTES.UP, | |
downVote: this.props.results.VOTES.DOWN, | |
cover: 'https://onestopfiction.com/-res/img/book-placeholder.jpg' | |
}; | |
this.handleUpVote = this.handleUpVote.bind(this); | |
this.handleDownVote = this.handleDownVote.bind(this); | |
} | |
async handleUpVote() { | |
try { | |
let res = await axios.post(`${url}/API/Vote`, { BOOK_ID: this.props.results.BOOK_ID, VOTE: 'UP' }); | |
this.setState({ upVote: res.data.VOTES.UP }); | |
} catch (e) { | |
console.error(e); | |
} | |
} | |
async handleDownVote() { | |
try { | |
let res = await axios.post(`${url}/API/Vote`, { BOOK_ID: this.props.results.BOOK_ID, VOTE: 'DOWN' }); | |
this.setState({ downVote: res.data.VOTES.DOWN }); | |
} catch (e) { | |
console.error(e); | |
} | |
} | |
async componentDidMount() { | |
try { | |
let res = await axios.get(`https://www.googleapis.com/books/v1/volumes?q=isbn:${this.props.results.ISBN}`); | |
if (res.data.totalItems === 1) | |
this.setState({ cover: res.data.items[0].volumeInfo.imageLinks.thumbnail }); | |
} catch (e) { | |
console.error(e); | |
} | |
} | |
render() { | |
const book = this.props.results; | |
const bookID = book.BOOK_ID; | |
const bookTitle = book.TITLE; | |
const bookAuthor = book.AUTHOR; | |
const bookISBN = book.ISBN; | |
const upVote = this.state.upVote; | |
const downVote = this.state.downVote; | |
return ( | |
<div className="searchResultContainer" key={bookID}> | |
<div className="imageContainer"> | |
<img src={this.state.cover} alt="" className="cover" /> | |
</div> | |
<div className="bookDetails"> | |
<div className="votes"> | |
<button | |
onClick={this.handleUpVote} | |
name="upVote" | |
className="upVotes" | |
> | |
<span role="img" aria-label="UpVote"> | |
👍 | |
</span>{' '} | |
<span className="hover" aria-labelledby="UpVote"> | |
{upVote} | |
</span> | |
</button> | |
<button | |
onClick={this.handleDownVote} | |
name="downVote" | |
className="downVotes" | |
> | |
<span role="img" aria-label="DownVote"> | |
👎 | |
</span>{' '} | |
<span className="hover" aria-labelledby="DownVote"> | |
{downVote} | |
</span> | |
</button> | |
</div> | |
<span className="bookTitle">{bookTitle}</span> | |
<br /> | |
<span className="bookAuthor"> | |
<span style={{ fontWeight: 700 }}>Authors:</span> {bookAuthor} | |
</span> | |
<br /> | |
<span className="bookISBN"> | |
<span style={{ fontWeight: 700 }}>ISBN:</span> {bookISBN} | |
</span> | |
<br /> | |
</div> | |
</div> | |
); | |
} | |
} | |
export default SearchResult; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment