1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
"use client";
import { useEffect, useState } from "react";
import { Button } from "@/components/ui/button";
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import { useToast } from "@/components/ui/use-toast";
import { useClientConfig } from "@/lib/clientConfig";
import { useTranslation } from "@/lib/i18n/client";
import {
FileDown,
Link,
List,
ListX,
MoreHorizontal,
Pencil,
RotateCw,
SquarePen,
Trash2,
} from "lucide-react";
import { useSession } from "next-auth/react";
import type {
ZBookmark,
ZBookmarkedLink,
} from "@karakeep/shared/types/bookmarks";
import {
useRecrawlBookmark,
useUpdateBookmark,
} from "@karakeep/shared-react/hooks//bookmarks";
import { useRemoveBookmarkFromList } from "@karakeep/shared-react/hooks//lists";
import { useBookmarkGridContext } from "@karakeep/shared-react/hooks/bookmark-grid-context";
import { useBookmarkListContext } from "@karakeep/shared-react/hooks/bookmark-list-context";
import { BookmarkTypes } from "@karakeep/shared/types/bookmarks";
import { BookmarkedTextEditor } from "./BookmarkedTextEditor";
import DeleteBookmarkConfirmationDialog from "./DeleteBookmarkConfirmationDialog";
import { EditBookmarkDialog } from "./EditBookmarkDialog";
import { ArchivedActionIcon, FavouritedActionIcon } from "./icons";
import { useManageListsModal } from "./ManageListsModal";
export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
const { t } = useTranslation();
const { toast } = useToast();
const linkId = bookmark.id;
const { data: session } = useSession();
const demoMode = !!useClientConfig().demoMode;
// Check if the current user owns this bookmark
const isOwner = session?.user?.id === bookmark.userId;
const [isClipboardAvailable, setIsClipboardAvailable] = useState(false);
useEffect(() => {
// This code only runs in the browser
setIsClipboardAvailable(
typeof window !== "undefined" &&
window.navigator &&
!!window.navigator.clipboard,
);
}, []);
const { setOpen: setManageListsModalOpen, content: manageListsModal } =
useManageListsModal(bookmark.id);
const [deleteBookmarkDialogOpen, setDeleteBookmarkDialogOpen] =
useState(false);
const [isTextEditorOpen, setTextEditorOpen] = useState(false);
const [isEditBookmarkDialogOpen, setEditBookmarkDialogOpen] = useState(false);
const { listId } = useBookmarkGridContext() ?? {};
const withinListContext = useBookmarkListContext();
const onError = () => {
toast({
variant: "destructive",
title: t("common.something_went_wrong"),
});
};
const updateBookmarkMutator = useUpdateBookmark({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.updated"),
});
},
onError,
});
const crawlBookmarkMutator = useRecrawlBookmark({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.refetch"),
});
},
onError,
});
const fullPageArchiveBookmarkMutator = useRecrawlBookmark({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.full_page_archive"),
});
},
onError,
});
const removeFromListMutator = useRemoveBookmarkFromList({
onSuccess: () => {
toast({
description: t("toasts.bookmarks.delete_from_list"),
});
},
onError,
});
// Define action items array
const actionItems = [
{
id: "edit",
title: t("actions.edit"),
icon: <Pencil className="mr-2 size-4" />,
visible: isOwner,
disabled: false,
onClick: () => setEditBookmarkDialogOpen(true),
},
{
id: "open-editor",
title: t("actions.open_editor"),
icon: <SquarePen className="mr-2 size-4" />,
visible: isOwner && bookmark.content.type === BookmarkTypes.TEXT,
disabled: false,
onClick: () => setTextEditorOpen(true),
},
{
id: "favorite",
title: bookmark.favourited
? t("actions.unfavorite")
: t("actions.favorite"),
icon: (
<FavouritedActionIcon
className="mr-2 size-4"
favourited={bookmark.favourited}
/>
),
visible: isOwner,
disabled: demoMode,
onClick: () =>
updateBookmarkMutator.mutate({
bookmarkId: linkId,
favourited: !bookmark.favourited,
}),
},
{
id: "archive",
title: bookmark.archived ? t("actions.unarchive") : t("actions.archive"),
icon: (
<ArchivedActionIcon
className="mr-2 size-4"
archived={bookmark.archived}
/>
),
visible: isOwner,
disabled: demoMode,
onClick: () =>
updateBookmarkMutator.mutate({
bookmarkId: linkId,
archived: !bookmark.archived,
}),
},
{
id: "download-full-page",
title: t("actions.download_full_page_archive"),
icon: <FileDown className="mr-2 size-4" />,
visible: isOwner && bookmark.content.type === BookmarkTypes.LINK,
disabled: false,
onClick: () => {
fullPageArchiveBookmarkMutator.mutate({
bookmarkId: bookmark.id,
archiveFullPage: true,
});
},
},
{
id: "copy-link",
title: t("actions.copy_link"),
icon: <Link className="mr-2 size-4" />,
visible: bookmark.content.type === BookmarkTypes.LINK,
disabled: !isClipboardAvailable,
onClick: () => {
navigator.clipboard.writeText(
(bookmark.content as ZBookmarkedLink).url,
);
toast({
description: t("toasts.bookmarks.clipboard_copied"),
});
},
},
{
id: "manage-lists",
title: t("actions.manage_lists"),
icon: <List className="mr-2 size-4" />,
visible: isOwner,
disabled: false,
onClick: () => setManageListsModalOpen(true),
},
{
id: "remove-from-list",
title: t("actions.remove_from_list"),
icon: <ListX className="mr-2 size-4" />,
visible:
(isOwner ||
(withinListContext &&
(withinListContext.userRole === "editor" ||
withinListContext.userRole === "owner"))) &&
!!listId &&
!!withinListContext &&
withinListContext.type === "manual",
disabled: demoMode,
onClick: () =>
removeFromListMutator.mutate({
listId: listId!,
bookmarkId: bookmark.id,
}),
},
{
id: "refresh",
title: t("actions.refresh"),
icon: <RotateCw className="mr-2 size-4" />,
visible: isOwner && bookmark.content.type === BookmarkTypes.LINK,
disabled: demoMode,
onClick: () => crawlBookmarkMutator.mutate({ bookmarkId: bookmark.id }),
},
{
id: "delete",
title: t("actions.delete"),
icon: <Trash2 className="mr-2 size-4" />,
visible: isOwner,
disabled: demoMode,
className: "text-destructive",
onClick: () => setDeleteBookmarkDialogOpen(true),
},
];
// Filter visible items
const visibleItems = actionItems.filter((item) => item.visible);
// If no items are visible, don't render the dropdown
if (visibleItems.length === 0) {
return null;
}
return (
<>
{manageListsModal}
<EditBookmarkDialog
bookmark={bookmark}
open={isEditBookmarkDialogOpen}
setOpen={setEditBookmarkDialogOpen}
/>
<DeleteBookmarkConfirmationDialog
bookmark={bookmark}
open={deleteBookmarkDialogOpen}
setOpen={setDeleteBookmarkDialogOpen}
/>
<BookmarkedTextEditor
bookmark={bookmark}
open={isTextEditorOpen}
setOpen={setTextEditorOpen}
/>
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
variant="ghost"
className="px-1 focus-visible:ring-0 focus-visible:ring-offset-0"
>
<MoreHorizontal />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent className="w-fit">
{visibleItems.map((item) => (
<DropdownMenuItem
key={item.id}
disabled={item.disabled}
className={item.className}
onClick={item.onClick}
>
{item.icon}
<span>{item.title}</span>
</DropdownMenuItem>
))}
</DropdownMenuContent>
</DropdownMenu>
</>
);
}
|