aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/bookmarks
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2025-08-23 17:18:12 +0300
committerMohamedBassem <me@mbassem.com>2025-08-23 17:18:12 +0300
commit8c205249941bbd503ee452b0dd857f173bf74363 (patch)
tree300c994c87f795c0bae44858e65378b966d19cf6 /apps/web/components/dashboard/bookmarks
parenta4b2fc7ca89c7916a32a3e279ab3880ebaa7a734 (diff)
downloadkarakeep-8c205249941bbd503ee452b0dd857f173bf74363.tar.zst
fix: Hide bookmark global actions when there's no bookmark grid shown
Diffstat (limited to 'apps/web/components/dashboard/bookmarks')
-rw-r--r--apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx
index 954a7751..f726c703 100644
--- a/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx
+++ b/apps/web/components/dashboard/bookmarks/BookmarksGrid.tsx
@@ -2,6 +2,7 @@ import { useEffect, useMemo } from "react";
import NoBookmarksBanner from "@/components/dashboard/bookmarks/NoBookmarksBanner";
import { ActionButton } from "@/components/ui/action-button";
import useBulkActionsStore from "@/lib/bulkActions";
+import { useInBookmarkGridStore } from "@/lib/store/useInBookmarkGridStore";
import {
bookmarkLayoutSwitch,
useBookmarkLayout,
@@ -62,6 +63,7 @@ export default function BookmarksGrid({
const layout = useBookmarkLayout();
const gridColumns = useGridColumns();
const bulkActionsStore = useBulkActionsStore();
+ const inBookmarkGrid = useInBookmarkGridStore();
const breakpointConfig = useMemo(
() => getBreakpointConfig(gridColumns),
[gridColumns],
@@ -76,6 +78,13 @@ export default function BookmarksGrid({
}, [bookmarks]);
useEffect(() => {
+ inBookmarkGrid.setInBookmarkGrid(true);
+ return () => {
+ inBookmarkGrid.setInBookmarkGrid(false);
+ };
+ }, []);
+
+ useEffect(() => {
if (loadMoreButtonInView && hasNextPage && !isFetchingNextPage) {
fetchNextPage();
}