Add AuthContext to FormReview and adjust image detail
This commit is contained in:
parent
b7e62e580a
commit
642aad60af
|
@ -1,29 +1,39 @@
|
|||
import Form from "react-bootstrap/Form"
|
||||
import Button from "react-bootstrap/Button"
|
||||
|
||||
import { AuthContext } from "../contexts/AuthContext"
|
||||
import { useContext } from "react"
|
||||
|
||||
|
||||
export function ReviewForm(props) {
|
||||
return (
|
||||
<Form>
|
||||
<h3>Rewiew this movie</h3>
|
||||
<Form.Group>
|
||||
<Form.Label>Star</Form.Label>
|
||||
<Form.Select>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
</Form.Select>
|
||||
</Form.Group>
|
||||
<Form.Group>
|
||||
<Form.Label>Title</Form.Label>
|
||||
<Form.Control type="text" placeholder="I love this movie" />
|
||||
</Form.Group>
|
||||
<Form.Group>
|
||||
<Form.Label>Review</Form.Label>
|
||||
<Form.Control as="textarea" rows={4} cols={30} placeholder="I could not stop watching!" />
|
||||
</Form.Group>
|
||||
<Button type="submit" variant="primary">Submit</Button>
|
||||
</Form>
|
||||
)
|
||||
const auth = useContext(AuthContext)
|
||||
if (auth) {
|
||||
return (
|
||||
<Form>
|
||||
<h3>Review this movie</h3>
|
||||
<Form.Group>
|
||||
<Form.Label>Star</Form.Label>
|
||||
<Form.Select>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<option value="4">4</option>
|
||||
<option value="5">5</option>
|
||||
</Form.Select>
|
||||
</Form.Group>
|
||||
<Form.Group>
|
||||
<Form.Label>Title</Form.Label>
|
||||
<Form.Control type="text" placeholder="I love this movie" />
|
||||
</Form.Group>
|
||||
<Form.Group>
|
||||
<Form.Label>Review</Form.Label>
|
||||
<Form.Control as="textarea" rows={4} cols={30} placeholder="I could not stop watching!" />
|
||||
</Form.Group>
|
||||
<Button type="submit" variant="primary">Submit</Button>
|
||||
</Form>
|
||||
)
|
||||
}
|
||||
else {
|
||||
return null
|
||||
}
|
||||
}
|
|
@ -27,10 +27,10 @@ export function Detail(props) {
|
|||
</Col>
|
||||
</Row>
|
||||
<Row>
|
||||
<Col md={6}>
|
||||
<Col md={4}>
|
||||
<ItemImage source={movieData.cover_image} />
|
||||
</Col>
|
||||
<Col md={6}>
|
||||
<Col md={8}>
|
||||
<h2>More Information</h2>
|
||||
<h3>Synopsis</h3>
|
||||
<p>{movieData.synopsis}</p>
|
||||
|
@ -56,5 +56,5 @@ export function Detail(props) {
|
|||
else {
|
||||
return null;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue