SurfSense/surfsense_web/hooks/use-search-space.ts
Claude f536b13d13
Replace Chinese with Latvian translations and address PR review feedback
Translations:
- Add complete Latvian translations (lv.json)
- Remove Chinese translations (zh.json)
- Update i18n routing to support en/lv locales
- Update LanguageSwitcher component for Latvian
- Update LocaleContext to use Latvian messages

PR Review Improvements:
- Create shared handleSessionExpired() utility in auth-utils.ts
- Refactor use-user.ts, use-chats.ts, use-search-space.ts to use shared utility
- Add session_expired error message to auth-errors.ts
- Consistent redirect to /login?error=session_expired
2025-11-18 21:42:34 +00:00

67 lines
1.6 KiB
TypeScript

"use client";
import { useCallback, useEffect, useState } from "react";
import { toast } from "sonner";
import { handleSessionExpired } from "@/lib/auth-utils";
interface SearchSpace {
created_at: string;
id: number;
name: string;
description: string;
user_id: string;
}
interface UseSearchSpaceOptions {
searchSpaceId: string | number;
autoFetch?: boolean;
}
export function useSearchSpace({ searchSpaceId, autoFetch = true }: UseSearchSpaceOptions) {
const [searchSpace, setSearchSpace] = useState<SearchSpace | null>(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const fetchSearchSpace = useCallback(async () => {
try {
// Only run on client-side
if (typeof window === "undefined") return;
setLoading(true);
const response = await fetch(
`${process.env.NEXT_PUBLIC_FASTAPI_BACKEND_URL}/api/v1/searchspaces/${searchSpaceId}`,
{
headers: {
Authorization: `Bearer ${localStorage.getItem("surfsense_bearer_token")}`,
},
method: "GET",
}
);
if (response.status === 401) {
handleSessionExpired();
}
if (!response.ok) {
throw new Error(`Failed to fetch search space: ${response.status}`);
}
const data = await response.json();
setSearchSpace(data);
setError(null);
} catch (err: any) {
setError(err.message || "Failed to fetch search space");
console.error("Error fetching search space:", err);
} finally {
setLoading(false);
}
}, [searchSpaceId]);
useEffect(() => {
if (autoFetch) {
fetchSearchSpace();
}
}, [autoFetch, fetchSearchSpace]);
return { searchSpace, loading, error, fetchSearchSpace };
}