mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
70 lines
2.4 KiB
TypeScript
70 lines
2.4 KiB
TypeScript
import Link from 'next/link';
|
|
import { FC, useContext } from 'react';
|
|
import Image from 'next/image';
|
|
import BeerPostQueryResult from '@/services/BeerPost/schema/BeerPostQueryResult';
|
|
import { z } from 'zod';
|
|
import UserContext from '@/contexts/UserContext';
|
|
import useGetBeerPostLikeCount from '@/hooks/data-fetching/beer-likes/useBeerPostLikeCount';
|
|
import BeerPostLikeButton from '../BeerById/BeerPostLikeButton';
|
|
|
|
const BeerCard: FC<{ post: z.infer<typeof BeerPostQueryResult> }> = ({ post }) => {
|
|
const { user } = useContext(UserContext);
|
|
const { mutate, likeCount, isLoading } = useGetBeerPostLikeCount(post.id);
|
|
|
|
return (
|
|
<div className="card card-compact bg-base-300" key={post.id}>
|
|
<figure className="h-96">
|
|
{post.beerImages.length > 0 && (
|
|
<Image
|
|
src={post.beerImages[0].path}
|
|
alt={post.name}
|
|
width="1029"
|
|
height="110"
|
|
/>
|
|
)}
|
|
</figure>
|
|
|
|
<div className="card-body justify-between">
|
|
<div className="space-y-1">
|
|
<Link href={`/beers/${post.id}`}>
|
|
<h3 className="link-hover link overflow-hidden whitespace-normal text-2xl font-bold lg:truncate lg:text-3xl">
|
|
{post.name}
|
|
</h3>
|
|
</Link>
|
|
<Link href={`/breweries/${post.brewery.id}`}>
|
|
<h4 className="text-md link-hover link whitespace-normal lg:truncate lg:text-xl">
|
|
{post.brewery.name}
|
|
</h4>
|
|
</Link>
|
|
</div>
|
|
<div className="flex items-end justify-between">
|
|
<div>
|
|
<Link
|
|
className="text-md lg:text-xl hover:underline"
|
|
href={`/beers/styles/${post.style.id}`}
|
|
>
|
|
{post.style.name}
|
|
</Link>
|
|
<div className="space-x-3">
|
|
<span className="text-sm lg:text-lg">{post.abv.toFixed(1)}% ABV</span>
|
|
<span className="text-sm lg:text-lg">{post.ibu.toFixed(1)} IBU</span>
|
|
</div>
|
|
{!isLoading && (
|
|
<span>
|
|
liked by {likeCount} user{likeCount === 1 ? '' : 's'}
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div>
|
|
{!!user && !isLoading && (
|
|
<BeerPostLikeButton beerPostId={post.id} mutateCount={mutate} />
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default BeerCard;
|