diff options
| author | Mohamed Bassem <me@mbassem.com> | 2024-12-28 12:30:24 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2024-12-28 12:30:24 +0000 |
| commit | 7956e9fa6772ab57a0794fb7cba7e9d9c0bd7878 (patch) | |
| tree | 10d6e47afed8be007361cd40ec8b05fc52d6d4d9 /apps/web/components/dashboard/preview/BookmarkPreview.tsx | |
| parent | 7dd5b2bc8751911f86448e6c4619b2583d9a4b53 (diff) | |
| download | karakeep-7956e9fa6772ab57a0794fb7cba7e9d9c0bd7878.tar.zst | |
feat: Implement the all highlights page. Fixes #620
Diffstat (limited to 'apps/web/components/dashboard/preview/BookmarkPreview.tsx')
| -rw-r--r-- | apps/web/components/dashboard/preview/BookmarkPreview.tsx | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/apps/web/components/dashboard/preview/BookmarkPreview.tsx b/apps/web/components/dashboard/preview/BookmarkPreview.tsx index b854146c..c257d902 100644 --- a/apps/web/components/dashboard/preview/BookmarkPreview.tsx +++ b/apps/web/components/dashboard/preview/BookmarkPreview.tsx @@ -1,6 +1,5 @@ "use client"; -import { useEffect, useState } from "react"; import Link from "next/link"; import { BookmarkTagsEditor } from "@/components/dashboard/bookmarks/BookmarkTagsEditor"; import { FullPageSpinner } from "@/components/ui/full-page-spinner"; @@ -12,10 +11,9 @@ import { TooltipPortal, TooltipTrigger, } from "@/components/ui/tooltip"; +import useRelativeTime from "@/lib/hooks/relative-time"; import { useTranslation } from "@/lib/i18n/client"; import { api } from "@/lib/trpc"; -import dayjs from "dayjs"; -import relativeTime from "dayjs/plugin/relativeTime"; import { CalendarDays, ExternalLink } from "lucide-react"; import { @@ -35,8 +33,6 @@ import LinkContentSection from "./LinkContentSection"; import { NoteEditor } from "./NoteEditor"; import { TextContentSection } from "./TextContentSection"; -dayjs.extend(relativeTime); - function ContentLoading() { return ( <div className="flex w-full flex-col gap-2"> @@ -48,14 +44,7 @@ function ContentLoading() { } function CreationTime({ createdAt }: { createdAt: Date }) { - const [fromNow, setFromNow] = useState(""); - const [localCreatedAt, setLocalCreatedAt] = useState(""); - - // This is to avoid hydration errors when server and clients are in different timezones - useEffect(() => { - setFromNow(dayjs(createdAt).fromNow()); - setLocalCreatedAt(createdAt.toLocaleString()); - }, [createdAt]); + const { fromNow, localCreatedAt } = useRelativeTime(createdAt); return ( <Tooltip delayDuration={0}> <TooltipTrigger asChild> |
