Files
KVideo/lib/hooks/useSecretHomePage.ts
T

84 lines
2.7 KiB
TypeScript

import { useState, useRef, useEffect } from 'react';
import { useRouter, useSearchParams } from 'next/navigation';
import { useSearchCache } from '@/lib/hooks/useSearchCache';
import { useParallelSearch } from '@/lib/hooks/useParallelSearch';
import { ADULT_SOURCES } from '@/lib/api/adult-sources';
export function useSecretHomePage() {
const router = useRouter();
const searchParams = useSearchParams();
const { loadFromCache, saveToCache } = useSearchCache();
const hasLoadedCache = useRef(false);
const [query, setQuery] = useState('');
const [hasSearched, setHasSearched] = useState(false);
const [currentSortBy, setCurrentSortBy] = useState('default');
// Search stream hook
const {
loading,
results,
availableSources,
completedSources,
totalSources,
performSearch,
resetSearch,
loadCachedResults,
applySorting,
} = useParallelSearch(
saveToCache,
(q: string) => router.replace(`/secret?q=${encodeURIComponent(q)}`, { scroll: false })
);
// Re-sort results when sort preference changes
useEffect(() => {
if (hasSearched && results.length > 0) {
applySorting(currentSortBy as any);
}
}, [currentSortBy, applySorting, hasSearched, results.length]);
// Load cached results on mount
useEffect(() => {
if (hasLoadedCache.current) return;
hasLoadedCache.current = true;
const urlQuery = searchParams.get('q');
// Note: We might want to separate cache for secret mode, but for now sharing or not using cache might be safer.
// However, useSearchCache uses localStorage which is shared.
// If we want to avoid leaking secret searches to normal history, we might want to disable cache or use a different key.
// For simplicity and "hidden" nature, maybe we don't load cache from normal mode?
// But the user asked for "same as original page".
if (urlQuery) {
setQuery(urlQuery);
handleSearch(urlQuery);
}
}, [searchParams]);
const handleSearch = (searchQuery: string) => {
setQuery(searchQuery);
setHasSearched(true);
// Always use ADULT_SOURCES
performSearch(searchQuery, ADULT_SOURCES, currentSortBy as any);
};
const handleReset = () => {
setHasSearched(false);
setQuery('');
resetSearch();
router.replace('/secret', { scroll: false });
};
return {
query,
hasSearched,
loading,
results,
availableSources,
completedSources,
totalSources,
handleSearch,
handleReset,
};
}