aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2025-04-07 01:03:26 +0100
committerMohamedBassem <me@mbassem.com>2025-04-08 03:48:12 -0700
commit3207264fc13c275d6dcfbd2628cc6b3974ceeaed (patch)
treed426ffe0fe6bc3b9e692d96af94aa8d5d2a51162
parent817eb58832a3e715e21892417b7624f4b1cf0d46 (diff)
downloadkarakeep-3207264fc13c275d6dcfbd2628cc6b3974ceeaed.tar.zst
feat: Allow editing bookmark details
-rw-r--r--apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx25
-rw-r--r--apps/web/components/dashboard/bookmarks/EditBookmarkDialog.tsx371
-rw-r--r--apps/web/components/dashboard/bookmarks/LinkCard.tsx3
-rw-r--r--apps/web/components/dashboard/preview/ActionBar.tsx25
-rw-r--r--apps/web/components/dashboard/preview/BookmarkPreview.tsx10
-rw-r--r--apps/web/components/dashboard/preview/EditableTitle.tsx60
-rw-r--r--apps/web/components/ui/calendar.tsx69
-rw-r--r--apps/web/lib/i18n/locales/en/translation.json14
-rw-r--r--apps/web/package.json2
-rw-r--r--packages/shared-react/utils/bookmarkUtils.ts17
-rw-r--r--packages/shared/types/bookmarks.ts10
-rw-r--r--packages/trpc/routers/bookmarks.test.ts63
-rw-r--r--packages/trpc/routers/bookmarks.ts141
-rw-r--r--pnpm-lock.yaml24
14 files changed, 732 insertions, 102 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx b/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx
index c37c6417..039904a0 100644
--- a/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx
+++ b/apps/web/components/dashboard/bookmarks/BookmarkOptions.tsx
@@ -19,7 +19,7 @@ import {
MoreHorizontal,
Pencil,
RotateCw,
- Tags,
+ SquarePen,
Trash2,
} from "lucide-react";
@@ -38,9 +38,9 @@ import { BookmarkTypes } from "@hoarder/shared/types/bookmarks";
import { BookmarkedTextEditor } from "./BookmarkedTextEditor";
import DeleteBookmarkConfirmationDialog from "./DeleteBookmarkConfirmationDialog";
+import { EditBookmarkDialog } from "./EditBookmarkDialog";
import { ArchivedActionIcon, FavouritedActionIcon } from "./icons";
import { useManageListsModal } from "./ManageListsModal";
-import { useTagModel } from "./TagModal";
export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
const { t } = useTranslation();
@@ -49,14 +49,13 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
const demoMode = !!useClientConfig().demoMode;
- const { setOpen: setTagModalIsOpen, content: tagModal } =
- useTagModel(bookmark);
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();
@@ -106,8 +105,12 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
return (
<>
- {tagModal}
{manageListsModal}
+ <EditBookmarkDialog
+ bookmark={bookmark}
+ open={isEditBookmarkDialogOpen}
+ setOpen={setEditBookmarkDialogOpen}
+ />
<DeleteBookmarkConfirmationDialog
bookmark={bookmark}
open={deleteBookmarkDialogOpen}
@@ -128,10 +131,14 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent className="w-fit">
+ <DropdownMenuItem onClick={() => setEditBookmarkDialogOpen(true)}>
+ <Pencil className="mr-2 size-4" />
+ <span>{t("actions.edit")}</span>
+ </DropdownMenuItem>
{bookmark.content.type === BookmarkTypes.TEXT && (
<DropdownMenuItem onClick={() => setTextEditorOpen(true)}>
- <Pencil className="mr-2 size-4" />
- <span>Edit</span>
+ <SquarePen className="mr-2 size-4" />
+ <span>{t("actions.open_editor")}</span>
</DropdownMenuItem>
)}
<DropdownMenuItem
@@ -202,10 +209,6 @@ export default function BookmarkOptions({ bookmark }: { bookmark: ZBookmark }) {
<span>{t("actions.copy_link")}</span>
</DropdownMenuItem>
)}
- <DropdownMenuItem onClick={() => setTagModalIsOpen(true)}>
- <Tags className="mr-2 size-4" />
- <span>{t("actions.edit_tags")}</span>
- </DropdownMenuItem>
<DropdownMenuItem onClick={() => setManageListsModalOpen(true)}>
<List className="mr-2 size-4" />
diff --git a/apps/web/components/dashboard/bookmarks/EditBookmarkDialog.tsx b/apps/web/components/dashboard/bookmarks/EditBookmarkDialog.tsx
new file mode 100644
index 00000000..2d47102b
--- /dev/null
+++ b/apps/web/components/dashboard/bookmarks/EditBookmarkDialog.tsx
@@ -0,0 +1,371 @@
+import * as React from "react";
+import { ActionButton } from "@/components/ui/action-button";
+import { Button } from "@/components/ui/button";
+import { Calendar } from "@/components/ui/calendar";
+import {
+ Dialog,
+ DialogContent,
+ DialogDescription,
+ DialogFooter,
+ DialogHeader,
+ DialogTitle,
+ DialogTrigger,
+} from "@/components/ui/dialog";
+import {
+ Form,
+ FormControl,
+ FormField,
+ FormItem,
+ FormLabel,
+ FormMessage,
+} from "@/components/ui/form";
+import { Input } from "@/components/ui/input";
+import {
+ Popover,
+ PopoverContent,
+ PopoverTrigger,
+} from "@/components/ui/popover";
+import { Textarea } from "@/components/ui/textarea";
+import { toast } from "@/components/ui/use-toast";
+import { useTranslation } from "@/lib/i18n/client";
+import { cn } from "@/lib/utils";
+import { zodResolver } from "@hookform/resolvers/zod";
+import { format } from "date-fns";
+import { CalendarIcon } from "lucide-react";
+import { useForm } from "react-hook-form";
+
+import { useUpdateBookmark } from "@hoarder/shared-react/hooks/bookmarks";
+import {
+ BookmarkTypes,
+ ZBookmark,
+ ZUpdateBookmarksRequest,
+ zUpdateBookmarksRequestSchema,
+} from "@hoarder/shared/types/bookmarks";
+
+import { BookmarkTagsEditor } from "./BookmarkTagsEditor";
+
+const formSchema = zUpdateBookmarksRequestSchema;
+
+export function EditBookmarkDialog({
+ open,
+ setOpen,
+ bookmark,
+ children,
+}: {
+ bookmark: ZBookmark;
+ children?: React.ReactNode;
+ open: boolean;
+ setOpen: (v: boolean) => void;
+}) {
+ const { t } = useTranslation();
+ const bookmarkToDefault = (bookmark: ZBookmark) => ({
+ bookmarkId: bookmark.id,
+ summary: bookmark.summary,
+ title: bookmark.title
+ ? bookmark.title
+ : bookmark.content.type === BookmarkTypes.LINK
+ ? bookmark.content.title
+ : undefined,
+ createdAt: bookmark.createdAt ?? new Date(),
+ // Link specific defaults (only if bookmark is a link)
+ url:
+ bookmark.content.type === BookmarkTypes.LINK
+ ? bookmark.content.url
+ : undefined,
+ description:
+ bookmark.content.type === BookmarkTypes.LINK
+ ? (bookmark.content.description ?? "")
+ : undefined,
+ author:
+ bookmark.content.type === BookmarkTypes.LINK
+ ? (bookmark.content.author ?? "")
+ : undefined,
+ publisher:
+ bookmark.content.type === BookmarkTypes.LINK
+ ? (bookmark.content.publisher ?? "")
+ : undefined,
+ datePublished:
+ bookmark.content.type === BookmarkTypes.LINK
+ ? bookmark.content.datePublished
+ : undefined,
+ });
+
+ const form = useForm<ZUpdateBookmarksRequest>({
+ resolver: zodResolver(formSchema),
+ defaultValues: bookmarkToDefault(bookmark),
+ });
+
+ const { mutate: updateBookmarkMutate, isPending: isUpdatingBookmark } =
+ useUpdateBookmark({
+ onSuccess: (updatedBookmark) => {
+ toast({ description: "Bookmark details updated successfully!" });
+ // Close the dialog after successful detail update
+ setOpen(false);
+ // Reset form with potentially updated data
+ form.reset(bookmarkToDefault(updatedBookmark));
+ },
+ onError: (error) => {
+ toast({
+ variant: "destructive",
+ title: "Failed to update bookmark",
+ description: error.message,
+ });
+ },
+ });
+
+ function onSubmit(values: ZUpdateBookmarksRequest) {
+ // Ensure optional fields that are empty strings are sent as null/undefined if appropriate
+ const payload = {
+ ...values,
+ title: values.title ?? null,
+ };
+ updateBookmarkMutate(payload);
+ }
+
+ // Reset form when bookmark data changes externally or dialog reopens
+ React.useEffect(() => {
+ if (open) {
+ form.reset(bookmarkToDefault(bookmark));
+ }
+ }, [bookmark, form, open]);
+
+ const isLink = bookmark.content.type === BookmarkTypes.LINK;
+
+ return (
+ <Dialog open={open} onOpenChange={setOpen}>
+ {children && <DialogTrigger asChild>{children}</DialogTrigger>}
+ <DialogContent className="max-h-[90vh] overflow-y-auto sm:max-w-xl">
+ <DialogHeader>
+ <DialogTitle>{t("bookmark_editor.title")}</DialogTitle>
+ <DialogDescription>{t("bookmark_editor.subtitle")}</DialogDescription>
+ </DialogHeader>
+ <Form {...form}>
+ <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
+ <FormField
+ control={form.control}
+ name="title"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("common.title")}</FormLabel>
+ <FormControl>
+ <Input
+ placeholder="Bookmark title"
+ {...field}
+ value={field.value ?? ""}
+ />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+
+ {isLink && (
+ <FormField
+ control={form.control}
+ name="url"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("common.url")}</FormLabel>
+ <FormControl>
+ <Input placeholder="https://example.com" {...field} />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ )}
+
+ {isLink && (
+ <FormField
+ control={form.control}
+ name="description"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("common.description")}</FormLabel>
+ <FormControl>
+ <Textarea
+ placeholder="Bookmark description"
+ {...field}
+ value={field.value ?? ""}
+ />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ )}
+
+ {isLink && (
+ <FormField
+ control={form.control}
+ name="summary"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("common.summary")}</FormLabel>
+ <FormControl>
+ <Textarea
+ placeholder="Bookmark summary"
+ {...field}
+ value={field.value ?? ""}
+ />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ )}
+
+ {isLink && (
+ <div className="grid grid-cols-1 gap-4 md:grid-cols-2">
+ <FormField
+ control={form.control}
+ name="author"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("bookmark_editor.author")}</FormLabel>
+ <FormControl>
+ <Input
+ placeholder="Author name"
+ {...field}
+ value={field.value ?? ""}
+ />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ <FormField
+ control={form.control}
+ name="publisher"
+ render={({ field }) => (
+ <FormItem>
+ <FormLabel>{t("bookmark_editor.publisher")}</FormLabel>
+ <FormControl>
+ <Input
+ placeholder="Publisher name"
+ {...field}
+ value={field.value ?? ""}
+ />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ </div>
+ )}
+
+ <div className="grid grid-cols-1 gap-4 md:grid-cols-2">
+ <FormField
+ control={form.control}
+ name="createdAt"
+ render={({ field }) => (
+ <FormItem className="flex flex-col">
+ <FormLabel>{t("common.created_at")}</FormLabel>
+ <Popover>
+ <PopoverTrigger asChild>
+ <FormControl>
+ <Button
+ variant={"outline"}
+ className={cn(
+ "pl-3 text-left font-normal",
+ !field.value && "text-muted-foreground",
+ )}
+ >
+ {field.value ? (
+ format(field.value, "PPP")
+ ) : (
+ <span>{t("bookmark_editor.pick_a_date")}</span>
+ )}
+ <CalendarIcon className="ml-auto h-4 w-4 opacity-50" />
+ </Button>
+ </FormControl>
+ </PopoverTrigger>
+ <PopoverContent className="w-auto p-0" align="start">
+ <Calendar
+ mode="single"
+ selected={field.value}
+ onSelect={field.onChange}
+ disabled={(date) =>
+ date > new Date() || date < new Date("1900-01-01")
+ }
+ />
+ </PopoverContent>
+ </Popover>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+
+ {isLink && (
+ <FormField
+ control={form.control}
+ name="datePublished"
+ render={({ field }) => (
+ <FormItem className="flex flex-col">
+ <FormLabel>
+ {t("bookmark_editor.date_published")}
+ </FormLabel>
+ <Popover>
+ <PopoverTrigger asChild>
+ <FormControl>
+ <Button
+ variant={"outline"}
+ className={cn(
+ "pl-3 text-left font-normal",
+ !field.value && "text-muted-foreground",
+ )}
+ >
+ {field.value ? (
+ format(field.value, "PPP")
+ ) : (
+ <span>{t("bookmark_editor.pick_a_date")}</span>
+ )}
+ <CalendarIcon className="ml-auto h-4 w-4 opacity-50" />
+ </Button>
+ </FormControl>
+ </PopoverTrigger>
+ <PopoverContent className="w-auto p-0" align="start">
+ <Calendar
+ mode="single"
+ selected={field.value ?? undefined} // Calendar expects Date | undefined
+ onSelect={(date) => field.onChange(date ?? null)} // Handle undefined -> null
+ disabled={(date) =>
+ date > new Date() || date < new Date("1900-01-01")
+ }
+ />
+ </PopoverContent>
+ </Popover>
+ <FormMessage />
+ </FormItem>
+ )}
+ />
+ )}
+ </div>
+
+ <FormItem>
+ <FormLabel>{t("common.tags")}</FormLabel>
+ <FormControl>
+ <BookmarkTagsEditor bookmark={bookmark} />
+ </FormControl>
+ <FormMessage />
+ </FormItem>
+
+ <DialogFooter>
+ <Button
+ type="button"
+ variant="outline"
+ onClick={() => setOpen(false)}
+ disabled={isUpdatingBookmark}
+ >
+ {t("actions.cancel")}
+ </Button>
+ <ActionButton type="submit" loading={isUpdatingBookmark}>
+ {t("bookmark_editor.save_changes")}
+ </ActionButton>
+ </DialogFooter>
+ </form>
+ </Form>
+ </DialogContent>
+ </Dialog>
+ );
+}
diff --git a/apps/web/components/dashboard/bookmarks/LinkCard.tsx b/apps/web/components/dashboard/bookmarks/LinkCard.tsx
index 86eed9e7..34044305 100644
--- a/apps/web/components/dashboard/bookmarks/LinkCard.tsx
+++ b/apps/web/components/dashboard/bookmarks/LinkCard.tsx
@@ -6,6 +6,7 @@ import Link from "next/link";
import type { ZBookmarkTypeLink } from "@hoarder/shared/types/bookmarks";
import {
getBookmarkLinkImageUrl,
+ getBookmarkTitle,
getSourceUrl,
isBookmarkStillCrawling,
} from "@hoarder/shared-react/utils/bookmarkUtils";
@@ -18,7 +19,7 @@ function LinkTitle({ bookmark }: { bookmark: ZBookmarkTypeLink }) {
const parsedUrl = new URL(link.url);
return (
<Link href={link.url} target="_blank" rel="noreferrer">
- {bookmark.title ?? link?.title ?? parsedUrl.host}
+ {getBookmarkTitle(bookmark) ?? parsedUrl.host}
</Link>
);
}
diff --git a/apps/web/components/dashboard/preview/ActionBar.tsx b/apps/web/components/dashboard/preview/ActionBar.tsx
index 86c86d5a..62d9c849 100644
--- a/apps/web/components/dashboard/preview/ActionBar.tsx
+++ b/apps/web/components/dashboard/preview/ActionBar.tsx
@@ -8,12 +8,13 @@ import {
} from "@/components/ui/tooltip";
import { toast } from "@/components/ui/use-toast";
import { useTranslation } from "@/lib/i18n/client";
-import { Trash2 } from "lucide-react";
+import { Pencil, Trash2 } from "lucide-react";
import type { ZBookmark } from "@hoarder/shared/types/bookmarks";
import { useUpdateBookmark } from "@hoarder/shared-react/hooks/bookmarks";
import DeleteBookmarkConfirmationDialog from "../bookmarks/DeleteBookmarkConfirmationDialog";
+import { EditBookmarkDialog } from "../bookmarks/EditBookmarkDialog";
import { ArchivedActionIcon, FavouritedActionIcon } from "../bookmarks/icons";
export default function ActionBar({ bookmark }: { bookmark: ZBookmark }) {
@@ -21,6 +22,8 @@ export default function ActionBar({ bookmark }: { bookmark: ZBookmark }) {
const [deleteBookmarkDialogOpen, setDeleteBookmarkDialogOpen] =
useState(false);
+ const [isEditBookmarkDialogOpen, setEditBookmarkDialogOpen] = useState(false);
+
const onError = () => {
toast({
variant: "destructive",
@@ -49,6 +52,26 @@ export default function ActionBar({ bookmark }: { bookmark: ZBookmark }) {
return (
<div className="flex items-center justify-center gap-3">
<Tooltip delayDuration={0}>
+ <EditBookmarkDialog
+ bookmark={bookmark}
+ open={isEditBookmarkDialogOpen}
+ setOpen={setEditBookmarkDialogOpen}
+ />
+
+ <TooltipTrigger asChild>
+ <Button
+ variant="none"
+ className="size-14 rounded-full bg-background"
+ onClick={() => {
+ setEditBookmarkDialogOpen(true);
+ }}
+ >
+ <Pencil />
+ </Button>
+ </TooltipTrigger>
+ <TooltipContent side="bottom">{t("actions.edit")}</TooltipContent>
+ </Tooltip>
+ <Tooltip delayDuration={0}>
<TooltipTrigger asChild>
<ActionButton
variant="none"
diff --git a/apps/web/components/dashboard/preview/BookmarkPreview.tsx b/apps/web/components/dashboard/preview/BookmarkPreview.tsx
index c78eab22..07ae0809 100644
--- a/apps/web/components/dashboard/preview/BookmarkPreview.tsx
+++ b/apps/web/components/dashboard/preview/BookmarkPreview.tsx
@@ -1,5 +1,6 @@
"use client";
+import React from "react";
import Link from "next/link";
import { BookmarkTagsEditor } from "@/components/dashboard/bookmarks/BookmarkTagsEditor";
import { FullPageSpinner } from "@/components/ui/full-page-spinner";
@@ -17,6 +18,7 @@ import { api } from "@/lib/trpc";
import { CalendarDays, ExternalLink } from "lucide-react";
import {
+ getBookmarkTitle,
getSourceUrl,
isBookmarkStillCrawling,
isBookmarkStillLoading,
@@ -27,7 +29,6 @@ import SummarizeBookmarkArea from "../bookmarks/SummarizeBookmarkArea";
import ActionBar from "./ActionBar";
import { AssetContentSection } from "./AssetContentSection";
import AttachmentBox from "./AttachmentBox";
-import { EditableTitle } from "./EditableTitle";
import HighlightsBox from "./HighlightsBox";
import LinkContentSection from "./LinkContentSection";
import { NoteEditor } from "./NoteEditor";
@@ -108,6 +109,7 @@ export default function BookmarkPreview({
}
const sourceUrl = getSourceUrl(bookmark);
+ const title = getBookmarkTitle(bookmark);
return (
<div className="grid h-full grid-rows-3 gap-2 overflow-hidden bg-background lg:grid-cols-3 lg:grid-rows-none">
@@ -116,7 +118,11 @@ export default function BookmarkPreview({
</div>
<div className="row-span-1 flex flex-col gap-4 overflow-auto bg-accent p-4 md:col-span-2 lg:col-span-1 lg:row-auto">
<div className="flex w-full flex-col items-center justify-center gap-y-2">
- <EditableTitle bookmark={bookmark} />
+ <div className="flex w-full items-center justify-center gap-2">
+ <p className="line-clamp-2 text-ellipsis break-words text-lg">
+ {title === undefined || title === "" ? "Untitled" : title}
+ </p>
+ </div>
{sourceUrl && (
<Link
href={sourceUrl}
diff --git a/apps/web/components/dashboard/preview/EditableTitle.tsx b/apps/web/components/dashboard/preview/EditableTitle.tsx
deleted file mode 100644
index 03b95e74..00000000
--- a/apps/web/components/dashboard/preview/EditableTitle.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-import { toast } from "@/components/ui/use-toast";
-
-import { useUpdateBookmark } from "@hoarder/shared-react/hooks/bookmarks";
-import { BookmarkTypes, ZBookmark } from "@hoarder/shared/types/bookmarks";
-
-import { EditableText } from "../EditableText";
-
-export function EditableTitle({ bookmark }: { bookmark: ZBookmark }) {
- const { mutate: updateBookmark, isPending } = useUpdateBookmark({
- onSuccess: () => {
- toast({
- description: "Title updated!",
- });
- },
- });
-
- let title: string | null = null;
- switch (bookmark.content.type) {
- case BookmarkTypes.LINK:
- title = bookmark.content.title ?? bookmark.content.url;
- break;
- case BookmarkTypes.TEXT:
- title = null;
- break;
- case BookmarkTypes.ASSET:
- title = bookmark.content.fileName ?? null;
- break;
- }
-
- title = bookmark.title ?? title;
- if (title == "") {
- title = null;
- }
-
- return (
- <EditableText
- originalText={title}
- editClassName="p-2 text-lg break-all"
- viewClassName="break-words line-clamp-2 text-lg text-ellipsis"
- untitledClassName="text-lg italic text-gray-600"
- onSave={(newTitle) => {
- updateBookmark(
- {
- bookmarkId: bookmark.id,
- title: newTitle,
- },
- {
- onError: () => {
- toast({
- description: "Something went wrong",
- variant: "destructive",
- });
- },
- },
- );
- }}
- isSaving={isPending}
- />
- );
-}
diff --git a/apps/web/components/ui/calendar.tsx b/apps/web/components/ui/calendar.tsx
new file mode 100644
index 00000000..99a082f6
--- /dev/null
+++ b/apps/web/components/ui/calendar.tsx
@@ -0,0 +1,69 @@
+"use client";
+
+import * as React from "react";
+import { buttonVariants } from "@/components/ui/button";
+import { cn } from "@/lib/utils";
+import { ChevronLeft, ChevronRight } from "lucide-react";
+import { DayPicker } from "react-day-picker";
+
+export type CalendarProps = React.ComponentProps<typeof DayPicker>;
+
+function Calendar({
+ className,
+ classNames,
+ showOutsideDays = true,
+ ...props
+}: CalendarProps) {
+ return (
+ <DayPicker
+ showOutsideDays={showOutsideDays}
+ className={cn("p-3", className)}
+ classNames={{
+ months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
+ month: "space-y-4",
+ caption: "flex justify-center pt-1 relative items-center",
+ caption_label: "text-sm font-medium",
+ nav: "space-x-1 flex items-center",
+ nav_button: cn(
+ buttonVariants({ variant: "outline" }),
+ "h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100",
+ ),
+ nav_button_previous: "absolute left-1",
+ nav_button_next: "absolute right-1",
+ table: "w-full border-collapse space-y-1",
+ head_row: "flex",
+ head_cell:
+ "text-muted-foreground rounded-md w-9 font-normal text-[0.8rem]",
+ row: "flex w-full mt-2",
+ cell: "h-9 w-9 text-center text-sm p-0 relative [&:has([aria-selected].day-range-end)]:rounded-r-md [&:has([aria-selected].day-outside)]:bg-accent/50 [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20",
+ day: cn(
+ buttonVariants({ variant: "ghost" }),
+ "h-9 w-9 p-0 font-normal aria-selected:opacity-100",
+ ),
+ day_range_end: "day-range-end",
+ day_selected:
+ "bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground",
+ day_today: "bg-accent text-accent-foreground",
+ day_outside:
+ "day-outside text-muted-foreground aria-selected:bg-accent/50 aria-selected:text-muted-foreground",
+ day_disabled: "text-muted-foreground opacity-50",
+ day_range_middle:
+ "aria-selected:bg-accent aria-selected:text-accent-foreground",
+ day_hidden: "invisible",
+ ...classNames,
+ }}
+ components={{
+ IconLeft: ({ className, ...props }) => (
+ <ChevronLeft className={cn("h-4 w-4", className)} {...props} />
+ ),
+ IconRight: ({ className, ...props }) => (
+ <ChevronRight className={cn("h-4 w-4", className)} {...props} />
+ ),
+ }}
+ {...props}
+ />
+ );
+}
+Calendar.displayName = "Calendar";
+
+export { Calendar };
diff --git a/apps/web/lib/i18n/locales/en/translation.json b/apps/web/lib/i18n/locales/en/translation.json
index d03ddfe7..536bea57 100644
--- a/apps/web/lib/i18n/locales/en/translation.json
+++ b/apps/web/lib/i18n/locales/en/translation.json
@@ -7,6 +7,7 @@
"action": "Action",
"actions": "Actions",
"created_at": "Created At",
+ "updated_at": "Updated At",
"key": "Key",
"role": "Role",
"type": "Type",
@@ -27,6 +28,9 @@
"video": "Video",
"archive": "Archive",
"home": "Home",
+ "title": "Title",
+ "description": "Description",
+ "summary": "Summary",
"bookmark_types": {
"title": "Bookmark Type",
"link": "Link",
@@ -62,6 +66,7 @@
"save": "Save",
"add": "Add",
"edit": "Edit",
+ "open_editor": "Open Editor",
"create": "Create",
"fetch_now": "Fetch Now",
"summarize_with_ai": "Summarize with AI",
@@ -360,5 +365,14 @@
"title": "Duplicate Tags",
"merge_all_suggestions": "Merge all suggestions?"
}
+ },
+ "bookmark_editor": {
+ "title": "Edit Bookmark",
+ "subtitle": "Make changes to the bookmark details. Click save when you're done.",
+ "author": "Author",
+ "publisher": "Publisher",
+ "date_published": "Date Published",
+ "pick_a_date": "Pick a date",
+ "save_changes": "Save changes"
}
}
diff --git a/apps/web/package.json b/apps/web/package.json
index 01906545..7a54fa2f 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -57,6 +57,7 @@
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"csv-parse": "^5.5.6",
+ "date-fns": "^4.1.0",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.38.3",
"fastest-levenshtein": "^1.0.16",
@@ -71,6 +72,7 @@
"next-themes": "^0.3.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
+ "react-day-picker": "8.10.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-dropzone": "^14.2.3",
diff --git a/packages/shared-react/utils/bookmarkUtils.ts b/packages/shared-react/utils/bookmarkUtils.ts
index 0a089f64..fc0fd97d 100644
--- a/packages/shared-react/utils/bookmarkUtils.ts
+++ b/packages/shared-react/utils/bookmarkUtils.ts
@@ -51,3 +51,20 @@ export function getSourceUrl(bookmark: ZBookmark) {
}
return null;
}
+
+export function getBookmarkTitle(bookmark: ZBookmark) {
+ let title: string | null = null;
+ switch (bookmark.content.type) {
+ case BookmarkTypes.LINK:
+ title = bookmark.content.title ?? bookmark.content.url;
+ break;
+ case BookmarkTypes.TEXT:
+ title = null;
+ break;
+ case BookmarkTypes.ASSET:
+ title = bookmark.content.fileName ?? null;
+ break;
+ }
+
+ return bookmark.title ? bookmark.title : title;
+}
diff --git a/packages/shared/types/bookmarks.ts b/packages/shared/types/bookmarks.ts
index af7474ad..883dda30 100644
--- a/packages/shared/types/bookmarks.ts
+++ b/packages/shared/types/bookmarks.ts
@@ -196,6 +196,16 @@ export const zUpdateBookmarksRequestSchema = z.object({
note: z.string().optional(),
title: z.string().max(MAX_TITLE_LENGTH).nullish(),
createdAt: z.coerce.date().optional(),
+ // Link specific fields (optional)
+ url: z.string().url().optional(),
+ description: z.string().nullish(),
+ author: z.string().nullish(),
+ publisher: z.string().nullish(),
+ datePublished: z.coerce.date().nullish(),
+ dateModified: z.coerce.date().nullish(),
+
+ // Text specific fields (optional)
+ text: z.string().nullish(),
});
export type ZUpdateBookmarksRequest = z.infer<
typeof zUpdateBookmarksRequestSchema
diff --git a/packages/trpc/routers/bookmarks.test.ts b/packages/trpc/routers/bookmarks.test.ts
index d89f80fd..c3469acc 100644
--- a/packages/trpc/routers/bookmarks.test.ts
+++ b/packages/trpc/routers/bookmarks.test.ts
@@ -60,9 +60,70 @@ describe("Bookmark Routes", () => {
favourited: true,
});
- const res = await api.getBookmark({ bookmarkId: bookmark.id });
+ let res = await api.getBookmark({ bookmarkId: bookmark.id });
expect(res.archived).toBeTruthy();
expect(res.favourited).toBeTruthy();
+
+ // Update other common fields
+ const newDate = new Date(Date.now() - 1000 * 60 * 60 * 24); // Yesterday
+ newDate.setMilliseconds(0);
+ await api.updateBookmark({
+ bookmarkId: bookmark.id,
+ title: "New Title",
+ note: "Test Note",
+ summary: "Test Summary",
+ createdAt: newDate,
+ });
+
+ res = await api.getBookmark({ bookmarkId: bookmark.id });
+ expect(res.title).toEqual("New Title");
+ expect(res.note).toEqual("Test Note");
+ expect(res.summary).toEqual("Test Summary");
+ expect(res.createdAt).toEqual(newDate);
+
+ // Update link-specific fields
+ const linkUpdateDate = new Date(Date.now() - 1000 * 60 * 60 * 48); // 2 days ago
+ linkUpdateDate.setMilliseconds(0);
+ await api.updateBookmark({
+ bookmarkId: bookmark.id,
+ url: "https://new-google.com",
+ description: "New Description",
+ author: "New Author",
+ publisher: "New Publisher",
+ datePublished: linkUpdateDate,
+ dateModified: linkUpdateDate,
+ });
+
+ res = await api.getBookmark({ bookmarkId: bookmark.id });
+ assert(res.content.type === BookmarkTypes.LINK);
+ expect(res.content.url).toEqual("https://new-google.com");
+ expect(res.content.description).toEqual("New Description");
+ expect(res.content.author).toEqual("New Author");
+ expect(res.content.publisher).toEqual("New Publisher");
+ expect(res.content.datePublished).toEqual(linkUpdateDate);
+ expect(res.content.dateModified).toEqual(linkUpdateDate);
+ });
+
+ test<CustomTestContext>("update bookmark - non-link type error", async ({
+ apiCallers,
+ }) => {
+ const api = apiCallers[0].bookmarks;
+
+ // Create a TEXT bookmark
+ const bookmark = await api.createBookmark({
+ text: "Initial text",
+ type: BookmarkTypes.TEXT,
+ });
+
+ // Attempt to update link-specific fields
+ await expect(() =>
+ api.updateBookmark({
+ bookmarkId: bookmark.id,
+ url: "https://should-fail.com", // Link-specific field
+ }),
+ ).rejects.toThrow(
+ /Attempting to set link attributes for non-link type bookmark/,
+ );
});
test<CustomTestContext>("list bookmarks", async ({ apiCallers }) => {
diff --git a/packages/trpc/routers/bookmarks.ts b/packages/trpc/routers/bookmarks.ts
index c97383cb..9219adc6 100644
--- a/packages/trpc/routers/bookmarks.ts
+++ b/packages/trpc/routers/bookmarks.ts
@@ -54,7 +54,6 @@ import { parseSearchQuery } from "@hoarder/shared/searchQueryParser";
import {
BookmarkTypes,
DEFAULT_NUM_BOOKMARKS_PER_PAGE,
- zBareBookmarkSchema,
zBookmarkSchema,
zGetBookmarksRequestSchema,
zGetBookmarksResponseSchema,
@@ -419,35 +418,125 @@ export const bookmarksAppRouter = router({
updateBookmark: authedProcedure
.input(zUpdateBookmarksRequestSchema)
- .output(zBareBookmarkSchema)
+ .output(zBookmarkSchema)
.use(ensureBookmarkOwnership)
.mutation(async ({ input, ctx }) => {
- const res = await ctx.db
- .update(bookmarks)
- .set({
- title: input.title,
- archived: input.archived,
- favourited: input.favourited,
- note: input.note,
- summary: input.summary,
- createdAt: input.createdAt,
- })
- .where(
- and(
- eq(bookmarks.userId, ctx.user.id),
- eq(bookmarks.id, input.bookmarkId),
- ),
- )
- .returning();
- if (res.length == 0) {
- throw new TRPCError({
- code: "NOT_FOUND",
- message: "Bookmark not found",
- });
- }
+ await ctx.db.transaction(async (tx) => {
+ let somethingChanged = false;
+
+ // Update link-specific fields if any are provided
+ const linkUpdateData: Partial<{
+ url: string;
+ description: string | null;
+ author: string | null;
+ publisher: string | null;
+ datePublished: Date | null;
+ dateModified: Date | null;
+ }> = {};
+ if (input.url) {
+ linkUpdateData.url = input.url.trim();
+ }
+ if (input.description !== undefined) {
+ linkUpdateData.description = input.description;
+ }
+ if (input.author !== undefined) {
+ linkUpdateData.author = input.author;
+ }
+ if (input.publisher !== undefined) {
+ linkUpdateData.publisher = input.publisher;
+ }
+ if (input.datePublished !== undefined) {
+ linkUpdateData.datePublished = input.datePublished;
+ }
+ if (input.dateModified !== undefined) {
+ linkUpdateData.dateModified = input.dateModified;
+ }
+
+ if (Object.keys(linkUpdateData).length > 0) {
+ const result = await tx
+ .update(bookmarkLinks)
+ .set(linkUpdateData)
+ .where(eq(bookmarkLinks.id, input.bookmarkId));
+ if (result.changes == 0) {
+ throw new TRPCError({
+ code: "BAD_REQUEST",
+ message:
+ "Attempting to set link attributes for non-link type bookmark",
+ });
+ }
+ somethingChanged = true;
+ }
+
+ if (input.text) {
+ const result = await tx
+ .update(bookmarkTexts)
+ .set({
+ text: input.text,
+ })
+ .where(eq(bookmarkLinks.id, input.bookmarkId));
+
+ if (result.changes == 0) {
+ throw new TRPCError({
+ code: "BAD_REQUEST",
+ message:
+ "Attempting to set link attributes for non-text type bookmark",
+ });
+ }
+ somethingChanged = true;
+ }
+
+ // Update common bookmark fields
+ const commonUpdateData: Partial<{
+ title: string | null;
+ archived: boolean;
+ favourited: boolean;
+ note: string | null;
+ summary: string | null;
+ createdAt: Date;
+ modifiedAt: Date; // Always update modifiedAt
+ }> = {
+ modifiedAt: new Date(),
+ };
+ if (input.title !== undefined) {
+ commonUpdateData.title = input.title;
+ }
+ if (input.archived !== undefined) {
+ commonUpdateData.archived = input.archived;
+ }
+ if (input.favourited !== undefined) {
+ commonUpdateData.favourited = input.favourited;
+ }
+ if (input.note !== undefined) {
+ commonUpdateData.note = input.note;
+ }
+ if (input.summary !== undefined) {
+ commonUpdateData.summary = input.summary;
+ }
+ if (input.createdAt !== undefined) {
+ commonUpdateData.createdAt = input.createdAt;
+ }
+
+ if (Object.keys(commonUpdateData).length > 1 || somethingChanged) {
+ await tx
+ .update(bookmarks)
+ .set(commonUpdateData)
+ .where(
+ and(
+ eq(bookmarks.userId, ctx.user.id),
+ eq(bookmarks.id, input.bookmarkId),
+ ),
+ );
+ }
+ });
+
+ // Refetch the updated bookmark data to return the full object
+ const updatedBookmark = await getBookmark(ctx, input.bookmarkId);
+
+ // Trigger re-indexing and webhooks
await triggerSearchReindex(input.bookmarkId);
await triggerWebhook(input.bookmarkId, "edited");
- return res[0];
+
+ return updatedBookmark;
}),
updateBookmarkText: authedProcedure
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8dfdffac..5c0c3ee3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -583,6 +583,9 @@ importers:
csv-parse:
specifier: ^5.5.6
version: 5.5.6
+ date-fns:
+ specifier: ^4.1.0
+ version: 4.1.0
dayjs:
specifier: ^1.11.10
version: 1.11.10
@@ -625,6 +628,9 @@ importers:
react:
specifier: ^18.3.1
version: 18.3.1
+ react-day-picker:
+ specifier: 8.10.1
+ version: 8.10.1(date-fns@4.1.0)(react@18.3.1)
react-dom:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
@@ -6815,6 +6821,9 @@ packages:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
@@ -11664,6 +11673,12 @@ packages:
resolution: {integrity: sha512-6skrNl6GMGXF/H91T/bz1aznkLDd+y5ApwpqCE8h3OdJ9pQgzfK1j2wh4MFtRvfLq5TH69+oXLq5CsiHL+zN1g==}
engines: {node: '>=8'}
+ react-day-picker@8.10.1:
+ resolution: {integrity: sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==}
+ peerDependencies:
+ date-fns: ^2.28.0 || ^3.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+
react-dev-utils@12.0.1:
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
@@ -21997,6 +22012,9 @@ snapshots:
whatwg-url: 14.0.0
dev: false
+ date-fns@4.1.0:
+ dev: false
+
dayjs@1.11.10:
dev: false
@@ -28770,6 +28788,12 @@ snapshots:
p-reflect: 2.1.0
dev: false
+ react-day-picker@8.10.1(date-fns@4.1.0)(react@18.3.1):
+ dependencies:
+ date-fns: 4.1.0
+ react: 18.3.1
+ dev: false
+
react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.7.3)(webpack@5.90.3):
dependencies:
'@babel/code-frame': 7.26.2