-
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(web): Show attachments and allow users to manipulate them.
- Loading branch information
1 parent
55f5c7f
commit a770e55
Showing
9 changed files
with
544 additions
and
12 deletions.
There are no files selected for viewing
209 changes: 209 additions & 0 deletions
209
apps/web/components/dashboard/preview/AttachmentBox.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,209 @@ | ||
import Link from "next/link"; | ||
import { ActionButton } from "@/components/ui/action-button"; | ||
import ActionConfirmingDialog from "@/components/ui/action-confirming-dialog"; | ||
import { Button } from "@/components/ui/button"; | ||
import { | ||
Collapsible, | ||
CollapsibleContent, | ||
CollapsibleTrigger, | ||
} from "@/components/ui/collapsible"; | ||
import FilePickerButton from "@/components/ui/file-picker-button"; | ||
import { toast } from "@/components/ui/use-toast"; | ||
import useUpload from "@/lib/hooks/upload-file"; | ||
import { | ||
Archive, | ||
Camera, | ||
ChevronsDownUp, | ||
Download, | ||
Image, | ||
Pencil, | ||
Plus, | ||
Trash2, | ||
} from "lucide-react"; | ||
|
||
import { | ||
useAttachBookmarkAsset, | ||
useDetachBookmarkAsset, | ||
useReplaceBookmarkAsset, | ||
} from "@hoarder/shared-react/hooks/bookmarks"; | ||
import { getAssetUrl } from "@hoarder/shared-react/utils/assetUtils"; | ||
import { ZAssetType, ZBookmark } from "@hoarder/shared/types/bookmarks"; | ||
import { | ||
humanFriendlyNameForAssertType, | ||
isAllowedToAttachAsset, | ||
} from "@hoarder/trpc/lib/attachments"; | ||
|
||
export default function AttachmentBox({ bookmark }: { bookmark: ZBookmark }) { | ||
const typeToIcon: Record<ZAssetType, React.ReactNode> = { | ||
screenshot: <Camera className="size-4" />, | ||
fullPageArchive: <Archive className="size-4" />, | ||
bannerImage: <Image className="size-4" />, | ||
}; | ||
|
||
const { mutate: attachAsset, isPending: isAttaching } = | ||
useAttachBookmarkAsset({ | ||
onSuccess: () => { | ||
toast({ | ||
description: "Attachment has been attached!", | ||
}); | ||
}, | ||
onError: (e) => { | ||
toast({ | ||
description: e.message, | ||
variant: "destructive", | ||
}); | ||
}, | ||
}); | ||
|
||
const { mutate: replaceAsset, isPending: isReplacing } = | ||
useReplaceBookmarkAsset({ | ||
onSuccess: () => { | ||
toast({ | ||
description: "Attachment has been replaced!", | ||
}); | ||
}, | ||
onError: (e) => { | ||
toast({ | ||
description: e.message, | ||
variant: "destructive", | ||
}); | ||
}, | ||
}); | ||
|
||
const { mutate: detachAsset, isPending: isDetaching } = | ||
useDetachBookmarkAsset({ | ||
onSuccess: () => { | ||
toast({ | ||
description: "Attachment has been detached!", | ||
}); | ||
}, | ||
onError: (e) => { | ||
toast({ | ||
description: e.message, | ||
variant: "destructive", | ||
}); | ||
}, | ||
}); | ||
|
||
const { mutate: uploadAsset } = useUpload({ | ||
onError: (e) => { | ||
toast({ | ||
description: e.error, | ||
variant: "destructive", | ||
}); | ||
}, | ||
}); | ||
|
||
if (!bookmark.assets.length) { | ||
return null; | ||
} | ||
bookmark.assets.sort((a, b) => a.assetType.localeCompare(b.assetType)); | ||
|
||
return ( | ||
<Collapsible> | ||
<CollapsibleTrigger className="flex w-full items-center justify-between gap-2 text-sm text-gray-400"> | ||
Attachments | ||
<ChevronsDownUp className="size-4" /> | ||
</CollapsibleTrigger> | ||
<CollapsibleContent className="flex flex-col gap-1 py-2 text-sm"> | ||
{bookmark.assets.map((asset) => ( | ||
<div key={asset.id} className="flex items-center justify-between"> | ||
<Link | ||
target="_blank" | ||
href={getAssetUrl(asset.id)} | ||
className="flex items-center gap-1" | ||
> | ||
{typeToIcon[asset.assetType]} | ||
<p>{humanFriendlyNameForAssertType(asset.assetType)}</p> | ||
</Link> | ||
<div className="flex gap-2"> | ||
<Link | ||
title="Download" | ||
target="_blank" | ||
href={getAssetUrl(asset.id)} | ||
className="flex items-center gap-1" | ||
download={humanFriendlyNameForAssertType(asset.assetType)} | ||
> | ||
<Download className="size-4" /> | ||
</Link> | ||
{isAllowedToAttachAsset(asset.assetType) && ( | ||
<FilePickerButton | ||
title="Replace" | ||
loading={isReplacing} | ||
accept=".jgp,.JPG,.jpeg,.png,.webp" | ||
multiple={false} | ||
variant="none" | ||
size="none" | ||
className="flex items-center gap-2" | ||
onFileSelect={(file) => | ||
uploadAsset(file, { | ||
onSuccess: (resp) => { | ||
replaceAsset({ | ||
bookmarkId: bookmark.id, | ||
oldAssetId: asset.id, | ||
newAssetId: resp.assetId, | ||
}); | ||
}, | ||
}) | ||
} | ||
> | ||
<Pencil className="size-4" /> | ||
</FilePickerButton> | ||
)} | ||
<ActionConfirmingDialog | ||
title="Delete Attachment?" | ||
description={`Are you sure you want to delete the attachment of the bookmark?`} | ||
actionButton={(setDialogOpen) => ( | ||
<ActionButton | ||
loading={isDetaching} | ||
variant="destructive" | ||
onClick={() => | ||
detachAsset( | ||
{ bookmarkId: bookmark.id, assetId: asset.id }, | ||
{ onSettled: () => setDialogOpen(false) }, | ||
) | ||
} | ||
> | ||
<Trash2 className="mr-2 size-4" /> | ||
Delete | ||
</ActionButton> | ||
)} | ||
> | ||
<Button variant="none" size="none" title="Delete"> | ||
<Trash2 className="size-4" /> | ||
</Button> | ||
</ActionConfirmingDialog> | ||
</div> | ||
</div> | ||
))} | ||
{!bookmark.assets.some((asset) => asset.assetType == "bannerImage") && ( | ||
<FilePickerButton | ||
title="Attach a Banner" | ||
loading={isAttaching} | ||
accept=".jgp,.JPG,.jpeg,.png,.webp" | ||
multiple={false} | ||
variant="ghost" | ||
size="none" | ||
className="flex w-full items-center justify-center gap-2" | ||
onFileSelect={(file) => | ||
uploadAsset(file, { | ||
onSuccess: (resp) => { | ||
attachAsset({ | ||
bookmarkId: bookmark.id, | ||
asset: { | ||
id: resp.assetId, | ||
assetType: "bannerImage", | ||
}, | ||
}); | ||
}, | ||
}) | ||
} | ||
> | ||
<Plus className="size-4" /> | ||
Attach a Banner | ||
</FilePickerButton> | ||
)} | ||
</CollapsibleContent> | ||
</Collapsible> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.