aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/lib/hooks
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-10 20:27:59 +0000
committerMohamedBassem <me@mbassem.com>2024-03-10 20:27:59 +0000
commit364e82c7f2f10759b437c0282021d5dfef98c922 (patch)
tree3760491f24b4c25d8d5c826fba9d796d48172550 /packages/web/lib/hooks
parentd6dd76021226802adf5295b3243d6f2ae4fa5cc2 (diff)
downloadkarakeep-364e82c7f2f10759b437c0282021d5dfef98c922.tar.zst
feature: Change top nav to include search and move add link to a modal
Diffstat (limited to 'packages/web/lib/hooks')
-rw-r--r--packages/web/lib/hooks/bookmark-search.ts73
1 files changed, 73 insertions, 0 deletions
diff --git a/packages/web/lib/hooks/bookmark-search.ts b/packages/web/lib/hooks/bookmark-search.ts
new file mode 100644
index 00000000..738e1bd8
--- /dev/null
+++ b/packages/web/lib/hooks/bookmark-search.ts
@@ -0,0 +1,73 @@
+import { useEffect, useState } from "react";
+import { api } from "@/lib/trpc";
+import { useRouter, useSearchParams } from "next/navigation";
+import { keepPreviousData } from "@tanstack/react-query";
+
+function useSearchQuery() {
+ const searchParams = useSearchParams();
+ const searchQuery = searchParams.get("q") || "";
+ return { searchQuery };
+}
+
+export function useDoBookmarkSearch() {
+ const router = useRouter();
+ const { searchQuery } = useSearchQuery();
+ const [timeoutId, setTimeoutId] = useState<NodeJS.Timeout | undefined>();
+
+ useEffect(() => {
+ return () => {
+ if (!timeoutId) {
+ return;
+ }
+ clearTimeout(timeoutId);
+ };
+ }, [timeoutId]);
+
+ const doSearch = (val: string) => {
+ setTimeoutId(undefined);
+ router.replace(`/dashboard/search?q=${val}`);
+ };
+
+ const debounceSearch = (val: string) => {
+ if (timeoutId) {
+ clearTimeout(timeoutId);
+ }
+ const id = setTimeout(() => {
+ doSearch(val);
+ }, 200);
+ setTimeoutId(id);
+ };
+
+ return {
+ doSearch,
+ debounceSearch,
+ searchQuery,
+ };
+}
+
+export function useBookmarkSearch() {
+ const { searchQuery } = useSearchQuery();
+
+ const { data, isPending, isPlaceholderData, error } =
+ api.bookmarks.searchBookmarks.useQuery(
+ {
+ text: searchQuery,
+ },
+ {
+ placeholderData: keepPreviousData,
+ gcTime: 0,
+ },
+ );
+
+ if (error) {
+ throw error;
+ }
+
+ return {
+ searchQuery,
+ error,
+ data,
+ isPending,
+ isPlaceholderData,
+ };
+}