Created
August 15, 2018 15:47
-
-
Save HavishNetla/f5b04c1462a81ff1e14909dc8a0f6c29 to your computer and use it in GitHub Desktop.
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
/* eslint-disable class-methods-use-this */ | |
/* eslint-disable no-return-assign */ | |
import React, { Component } from 'react' | |
import request from 'superagent' | |
import Grid from '@material-ui/core/Grid' | |
import Card from '@material-ui/core/Card' | |
import CardContent from '@material-ui/core/CardContent' | |
import Typography from '@material-ui/core/Typography' | |
import Button from '@material-ui/core/Button' | |
import DeleteIcon from '@material-ui/icons/Delete' | |
import Chip from '@material-ui/core/Chip' | |
import SvgIcon from '@material-ui/core/SvgIcon' | |
import Layout from '../components/Layout' | |
class FoodList extends Component { | |
constructor(props) { | |
super(props) | |
this.state = { | |
foods: [], | |
} | |
this.TakeButton.bind(this) | |
} | |
componentDidMount() { | |
request.get('https://cac-2018-api.now.sh/api/foods/').end((err, res) => { | |
if (err) throw err | |
this.setState({ foods: res.body }) | |
}) | |
} | |
onWatchClick(props) { | |
request | |
.put(`https://cac-2018-api.now.sh/api/foods/${props.id}`) | |
.send({ | |
name: props.name, | |
food: props.food, | |
number: props.number, | |
address1: props.address1, | |
address2: props.address2, | |
city: props.city, | |
state: props.state, | |
zip: props.zip, | |
avalible: 'false', | |
watchCount: (props.watchCount += 1), | |
}) | |
.end((err, res) => { | |
if (err) throw err | |
console.log(res.body) | |
}) | |
} | |
delete(e, props) { | |
e.preventDefault() | |
request | |
.delete(`https://cac-2018-api.now.sh/api/foods/${props}`) | |
.end((err, res) => { | |
if (err) throw err | |
console.log('deleted') | |
}) | |
} | |
TakeButton(props) { | |
if (props.avalible === 'true') { | |
return ( | |
<Button | |
variant="contained" | |
color="primary" | |
onClick={() => | |
request | |
.put(`https://cac-2018-api.now.sh/api/foods/${props.id}`) | |
.send({ | |
name: props.name, | |
food: props.food, | |
number: props.number, | |
address1: props.address1, | |
address2: props.address2, | |
city: props.city, | |
state: props.state, | |
zip: props.zip, | |
avalible: 'false', | |
watchCount: props.watchCount, | |
}) | |
.end((err, res) => { | |
if (err) throw err | |
console.log(res.body) | |
}) | |
} | |
> | |
Claim Food | |
</Button> | |
) | |
} | |
return ( | |
<Button variant="contained" color="primary" disabled> | |
Claim Food | |
</Button> | |
) | |
} | |
WatchButton(props) { | |
return ( | |
<div> | |
<Button | |
variant="fab" | |
color="primary" | |
aria-label="Watch" | |
mini="true" | |
style={{ marginLeft: 10 }} | |
onClick={() => | |
request | |
.put(`https://cac-2018-api.now.sh/api/foods/${props.id}`) | |
.send({ | |
name: props.name, | |
food: props.food, | |
number: props.number, | |
address1: props.address1, | |
address2: props.address2, | |
city: props.city, | |
state: props.state, | |
zip: props.zip, | |
avalible: 'false', | |
watchCount: (props.watchCount += 1), | |
}) | |
.end((err, res) => { | |
if (err) throw err | |
console.log(res.body) | |
}) | |
} | |
> | |
<SvgIcon> | |
<path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" /> | |
</SvgIcon> | |
</Button> | |
<p style={{ display: 'inline', marginLeft: 10 }}>{props.watchCount}</p> | |
</div> | |
) | |
} | |
render() { | |
const ChipStyle = { | |
marginTop: 5, | |
marginLeft: 5, | |
marginRight: 5, | |
} | |
return ( | |
<Layout> | |
<div | |
style={{ | |
flexGrow: 1, | |
}} | |
> | |
<Grid container spacing={16}> | |
{this.state.foods.map( | |
({ | |
_id, | |
name, | |
food, | |
address1, | |
address2, | |
city, | |
state, | |
zip, | |
number, | |
avalible, | |
keywords, | |
watchCount, | |
}) => ( | |
<Grid item key={_id}> | |
<Card | |
style={{ | |
margin: 20, | |
width: 300, | |
maxWidth: 300, | |
}} | |
> | |
<CardContent> | |
<Typography | |
style={{ | |
marginBottom: 16, | |
fontSize: 14, | |
}} | |
color="textSecondary" | |
> | |
{name}, {number} | |
</Typography> | |
<Typography variant="headline" component="h2"> | |
{food} | |
</Typography> | |
<Typography component="p"> | |
{`${address1}, ${address2}`} | |
<br /> | |
{`${city}, ${state}, ${zip}`} | |
</Typography> | |
{keywords.map(keyword => ( | |
<Chip key={keyword} style={ChipStyle} label={keyword} /> | |
))} | |
<div style={{ paddingTop: '10px' }}> | |
<Button | |
aria-label="Delete" | |
onClick={e => this.delete(e, _id)} | |
> | |
<DeleteIcon /> | |
</Button> | |
<this.TakeButton | |
id={_id} | |
name={name} | |
food={food} | |
number={number} | |
address1={address1} | |
address2={address2} | |
city={city} | |
state={state} | |
zip={zip} | |
avalible={avalible} | |
watchCount={watchCount} | |
/> | |
<Button | |
variant="fab" | |
color="primary" | |
aria-label="Watch" | |
mini="true" | |
style={{ marginLeft: 10 }} | |
onClick={this.onWatchClick()} | |
> | |
<SvgIcon> | |
<path d="M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" /> | |
</SvgIcon> | |
</Button> | |
<p style={{ display: 'inline', marginLeft: 10 }}> | |
{watchCount} | |
</p> | |
</div> | |
</CardContent> | |
</Card> | |
</Grid> | |
), | |
)} | |
</Grid> | |
</div> | |
</Layout> | |
) | |
} | |
} | |
export default FoodList |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment