feat: view artwork full screen
This commit is contained in:
parent
2fa435a9ba
commit
05904267c5
@ -128,6 +128,7 @@ type SheetProps = React.ComponentProps<typeof SheetRoot> & {
|
||||
title?: string;
|
||||
description?: string;
|
||||
position?: SheetContentProps["side"];
|
||||
className?: string;
|
||||
};
|
||||
|
||||
const Sheet = ({
|
||||
@ -136,18 +137,19 @@ const Sheet = ({
|
||||
description,
|
||||
children,
|
||||
position,
|
||||
className,
|
||||
...props
|
||||
}: SheetProps) => {
|
||||
return (
|
||||
<SheetRoot open={isOpen} {...props}>
|
||||
<SheetContent side={position} className="rounded-t-2xl">
|
||||
<SheetContent side={position} className={cn("rounded-t-2xl", className)}>
|
||||
<SheetHeader>
|
||||
{title ? <SheetTitle>{title}</SheetTitle> : null}
|
||||
{description ? (
|
||||
<SheetDescription>{description}</SheetDescription>
|
||||
) : null}
|
||||
</SheetHeader>
|
||||
<div className="max-h-[90vh] overflow-y-auto">{children}</div>
|
||||
<div className="h-[calc(100vh-60px)] overflow-y-auto">{children}</div>
|
||||
</SheetContent>
|
||||
</SheetRoot>
|
||||
);
|
||||
|
@ -20,7 +20,12 @@ const ViewSheet = ({ modal }: Props) => {
|
||||
});
|
||||
|
||||
return (
|
||||
<Sheet {...modal} title="View Item" position="bottom">
|
||||
<Sheet
|
||||
{...modal}
|
||||
title="View Item"
|
||||
position="bottom"
|
||||
className="rounded-t-none max-h-auto h-screen"
|
||||
>
|
||||
{isLoading ? (
|
||||
<div className="min-h-[320px] flex flex-col items-center justify-center text-center">
|
||||
<img src={loadingIllust} className="h-40 animate-bounce" />
|
||||
@ -32,12 +37,12 @@ const ViewSheet = ({ modal }: Props) => {
|
||||
<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">
|
||||
<div className="flex flex-col md:flex-row md:h-full">
|
||||
<div className="flex-1 bg-gray-50 flex items-center justify-center">
|
||||
<a href={data.srcUrl} target="_blank" className="w-full h-full">
|
||||
<img
|
||||
src={pb.files.getUrl(data, data.image)}
|
||||
className="w-full max-h-[80vh] object-contain"
|
||||
className="w-full h-full object-contain"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user