Add AuthContext to FormReview and adjust image detail

This commit is contained in:
Ray 2023-11-21 09:44:56 +00:00 committed by GitHub
parent b7e62e580a
commit 642aad60af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 30 deletions

View File

@ -1,10 +1,16 @@
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) {
const auth = useContext(AuthContext)
if (auth) {
return (
<Form>
<h3>Rewiew this movie</h3>
<h3>Review this movie</h3>
<Form.Group>
<Form.Label>Star</Form.Label>
<Form.Select>
@ -27,3 +33,7 @@ export function ReviewForm(props) {
</Form>
)
}
else {
return null
}
}

View File

@ -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>