From 8b69cddfb92b3b7548d3f90dbec1038c728ea5d9 Mon Sep 17 00:00:00 2001 From: kamtschatka Date: Mon, 30 Sep 2024 02:02:48 +0200 Subject: feature(web): Add ability to manually trigger full page archives. Fixes #398 (#418) * [Feature Request] Ability to select what to "crawl full page archive" #398 Added the ability to start a full page crawl for links and also in bulk operations added the ability to refresh links as a bulk operation as well * minor icon and wording changes --------- Co-authored-by: MohamedBassem --- .../dashboard/bookmarks/BookmarkOptions.tsx | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx') diff --git a/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx b/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx index 4007090e..c09d2e50 100644 --- a/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx +++ b/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx @@ -11,6 +11,7 @@ import { import { useToast } from "@/components/ui/use-toast"; import { useClientConfig } from "@/lib/clientConfig"; import { + FileDown, Link, List, ListX, @@ -88,6 +89,15 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) { onError, }); + const fullPageArchiveBookmarkMutator = useRecrawlBookmark({ + onSuccess: () => { + toast({ + description: "Full Page Archive creation has been triggered", + }); + }, + onError, + }); + const removeFromListMutator = useRemoveBookmarkFromList({ onSuccess: () => { toast({ @@ -152,6 +162,21 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) { /> {bookmark.archived ? "Un-archive" : "Archive"} + + {bookmark.content.type === BookmarkTypes.LINK && ( + { + fullPageArchiveBookmarkMutator.mutate({ + bookmarkId: bookmark.id, + archiveFullPage: true, + }); + }} + > + + Download Full Page Archive + + )} + {bookmark.content.type === BookmarkTypes.LINK && ( { -- cgit v1.2.3-70-g09d2