mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
101 lines
3.1 KiB
TypeScript
101 lines
3.1 KiB
TypeScript
import sendCreateBeerCommentRequest from '@/requests/sendCreateBeerCommentRequest';
|
|
import BeerCommentValidationSchema from '@/services/BeerComment/schema/CreateBeerCommentValidationSchema';
|
|
import beerPostQueryResult from '@/services/BeerPost/schema/BeerPostQueryResult';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
|
|
import { FunctionComponent, useState, useEffect } from 'react';
|
|
import { Rating } from 'react-daisyui';
|
|
import { useForm, SubmitHandler } from 'react-hook-form';
|
|
import { z } from 'zod';
|
|
|
|
import { KeyedMutator } from 'swr';
|
|
import BeerCommentQueryResult from '@/services/BeerComment/schema/BeerCommentQueryResult';
|
|
import Button from '../ui/forms/Button';
|
|
import FormError from '../ui/forms/FormError';
|
|
import FormInfo from '../ui/forms/FormInfo';
|
|
import FormLabel from '../ui/forms/FormLabel';
|
|
import FormSegment from '../ui/forms/FormSegment';
|
|
import FormTextArea from '../ui/forms/FormTextArea';
|
|
|
|
interface BeerCommentFormProps {
|
|
beerPost: z.infer<typeof beerPostQueryResult>;
|
|
mutate: KeyedMutator<{
|
|
comments: z.infer<typeof BeerCommentQueryResult>[];
|
|
pageCount: number;
|
|
}>;
|
|
}
|
|
|
|
const BeerCommentForm: FunctionComponent<BeerCommentFormProps> = ({
|
|
beerPost,
|
|
mutate,
|
|
}) => {
|
|
const { register, handleSubmit, formState, reset, setValue } = useForm<
|
|
z.infer<typeof BeerCommentValidationSchema>
|
|
>({
|
|
defaultValues: {
|
|
rating: 0,
|
|
},
|
|
resolver: zodResolver(BeerCommentValidationSchema),
|
|
});
|
|
|
|
const [rating, setRating] = useState(0);
|
|
useEffect(() => {
|
|
setRating(0);
|
|
reset({ rating: 0, content: '' });
|
|
}, [reset]);
|
|
|
|
const onSubmit: SubmitHandler<z.infer<typeof BeerCommentValidationSchema>> = async (
|
|
data,
|
|
) => {
|
|
setValue('rating', 0);
|
|
setRating(0);
|
|
await sendCreateBeerCommentRequest({
|
|
content: data.content,
|
|
rating: data.rating,
|
|
beerPostId: beerPost.id,
|
|
});
|
|
reset();
|
|
await mutate();
|
|
};
|
|
|
|
const { errors } = formState;
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<FormInfo>
|
|
<FormLabel htmlFor="content">Leave a comment</FormLabel>
|
|
<FormError>{errors.content?.message}</FormError>
|
|
</FormInfo>
|
|
<FormSegment>
|
|
<FormTextArea
|
|
id="content"
|
|
formValidationSchema={register('content')}
|
|
placeholder="Comment"
|
|
rows={5}
|
|
error={!!errors.content?.message}
|
|
/>
|
|
</FormSegment>
|
|
<FormInfo>
|
|
<FormLabel htmlFor="rating">Rating</FormLabel>
|
|
<FormError>{errors.rating?.message}</FormError>
|
|
</FormInfo>
|
|
<Rating
|
|
value={rating}
|
|
onChange={(value) => {
|
|
setRating(value);
|
|
setValue('rating', value);
|
|
}}
|
|
>
|
|
<Rating.Item name="rating-1" className="mask mask-star" />
|
|
<Rating.Item name="rating-1" className="mask mask-star" />
|
|
<Rating.Item name="rating-1" className="mask mask-star" />
|
|
<Rating.Item name="rating-1" className="mask mask-star" />
|
|
<Rating.Item name="rating-1" className="mask mask-star" />
|
|
</Rating>
|
|
<Button type="submit">Submit</Button>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default BeerCommentForm;
|