aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2024-12-28 12:39:31 +0000
committerMohamed Bassem <me@mbassem.com>2024-12-28 12:39:31 +0000
commit052ae9b4c5ec88a001f7377eab0e4e49fcb943fc (patch)
tree67ed73ad7b330feaed285c870259c7d6b6368fb8 /apps/web/components/dashboard
parent7956e9fa6772ab57a0794fb7cba7e9d9c0bd7878 (diff)
downloadkarakeep-052ae9b4c5ec88a001f7377eab0e4e49fcb943fc.tar.zst
fix: Better handling for when there's no highlights in the all highlights page
Diffstat (limited to 'apps/web/components/dashboard')
-rw-r--r--apps/web/components/dashboard/highlights/AllHighlights.tsx14
1 files changed, 11 insertions, 3 deletions
diff --git a/apps/web/components/dashboard/highlights/AllHighlights.tsx b/apps/web/components/dashboard/highlights/AllHighlights.tsx
index 27dda6ff..98e17e2b 100644
--- a/apps/web/components/dashboard/highlights/AllHighlights.tsx
+++ b/apps/web/components/dashboard/highlights/AllHighlights.tsx
@@ -47,6 +47,7 @@ export default function AllHighlights({
}: {
highlights: ZGetAllHighlightsResponse;
}) {
+ const { t } = useTranslation();
const { data, fetchNextPage, hasNextPage, isFetchingNextPage } =
api.highlights.getAll.useInfiniteQuery(
{},
@@ -67,11 +68,13 @@ export default function AllHighlights({
}
}, [loadMoreButtonInView]);
+ const allHighlights = data?.pages.flatMap((p) => p.highlights);
+
return (
<div className="flex flex-col gap-2">
- {data?.pages
- .flatMap((p) => p.highlights)
- .map((h) => (
+ {allHighlights &&
+ allHighlights.length > 0 &&
+ allHighlights.map((h) => (
<>
<Highlight key={h.id} highlight={h} />
<Separator
@@ -80,6 +83,11 @@ export default function AllHighlights({
/>
</>
))}
+ {allHighlights && allHighlights.length == 0 && (
+ <p className="rounded-md bg-muted p-2 text-sm text-muted-foreground">
+ {t("highlights.no_highlights")}
+ </p>
+ )}
{hasNextPage && (
<div className="flex justify-center">
<ActionButton