furina.id/src/pages/artworks/viewSheet.tsx

76 lines
2.5 KiB
TypeScript
Raw Normal View History

2024-01-10 22:24:12 +07:00
import Sheet from "@/components/ui/Sheet";
import useModal from "@/hooks/useModal";
import pb from "@/utility/api";
import { useQuery } from "react-query";
import loadingIllust from "@/assets/images/l9fsdoa2j7vb1.gif";
import Badge from "@/components/ui/Badge";
import Button from "@/components/ui/Button";
import { ChevronLeft } from "lucide-react";
type Props = {
modal: ReturnType<typeof useModal<string>>;
};
const ViewSheet = ({ modal }: Props) => {
const id = modal.data;
const { data, isLoading, isError } = useQuery({
queryKey: ["artwork", id],
queryFn: () => pb.collection("artworks").getOne(id || ""),
enabled: !!id,
});
return (
<Sheet {...modal} title="View Item" position="bottom">
{isLoading ? (
<div className="min-h-[320px] flex flex-col items-center justify-center text-center">
<img src={loadingIllust} className="h-40 animate-bounce" />
<p className="mt-2">Please wait a moment...</p>
</div>
) : isError || !data ? (
<div className="min-h-[320px] flex flex-col items-center justify-center text-center">
<h1 className="text-2xl">An error occured.</h1>
<p className="mt-2">Cannot load item</p>
</div>
) : (
<div className="flex flex-col md:flex-row">
<div className="flex-1 bg-gray-50">
<a href={data.srcUrl} target="_blank">
<img
src={pb.files.getUrl(data, data.image)}
className="w-full max-h-[80vh] object-contain"
/>
</a>
</div>
<div className="md:w-1/3 border-t md:border-l md:border-t-0 py-4 md:pt-0 pl-4 lg:pl-8 overflow-y-auto overflow-x-hidden truncate">
<Button
className="hidden md:flex pl-2 md:mb-6"
onClick={modal.onClose}
>
<ChevronLeft /> Back
</Button>
<Badge>Artist Name</Badge>
<p className="mt-1 truncate">{data.artistName}</p>
<Badge className="mt-4">Source</Badge>
<a
href={data.srcUrl}
target="_blank"
className="block mt-1 text-primary-500 font-medium hover:underline truncate"
>
{cleanUrl(data.srcUrl)}
</a>
</div>
</div>
)}
</Sheet>
);
};
const cleanUrl = (url: string) => {
return url.replace("https://", "").replace("http://", "").replace("www.", "");
};
export default ViewSheet;