mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-22 23:31:12 +02:00
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
67 lines
1.6 KiB
TypeScript
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 };
|
|
}
|