Split multi-hook frontend modules into single-hook files
This commit is contained in:
63
frontend/src/hooks/useImportLog.ts
Normal file
63
frontend/src/hooks/useImportLog.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
/**
|
||||
* React hook for loading paginated blocklist import log entries.
|
||||
*/
|
||||
|
||||
import { useCallback, useEffect, useRef, useState } from "react";
|
||||
import { fetchImportLog } from "../api/blocklist";
|
||||
import { handleFetchError } from "../utils/fetchError";
|
||||
import type { ImportLogListResponse } from "../types/blocklist";
|
||||
|
||||
export interface UseImportLogReturn {
|
||||
data: ImportLogListResponse | null;
|
||||
loading: boolean;
|
||||
error: string | null;
|
||||
page: number;
|
||||
setPage: (n: number) => void;
|
||||
refresh: () => void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the paginated import log with optional source filter.
|
||||
*/
|
||||
export function useImportLog(
|
||||
sourceId?: number,
|
||||
pageSize = 50,
|
||||
): UseImportLogReturn {
|
||||
const [data, setData] = useState<ImportLogListResponse | null>(null);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [page, setPage] = useState(1);
|
||||
const abortRef = useRef<AbortController | null>(null);
|
||||
|
||||
const load = useCallback((): void => {
|
||||
abortRef.current?.abort();
|
||||
const ctrl = new AbortController();
|
||||
abortRef.current = ctrl;
|
||||
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
|
||||
fetchImportLog(page, pageSize, sourceId)
|
||||
.then((result) => {
|
||||
if (!ctrl.signal.aborted) {
|
||||
setData(result);
|
||||
setLoading(false);
|
||||
}
|
||||
})
|
||||
.catch((err: unknown) => {
|
||||
if (!ctrl.signal.aborted) {
|
||||
handleFetchError(err, setError, "Failed to load import log");
|
||||
setLoading(false);
|
||||
}
|
||||
});
|
||||
}, [page, pageSize, sourceId]);
|
||||
|
||||
useEffect(() => {
|
||||
load();
|
||||
return (): void => {
|
||||
abortRef.current?.abort();
|
||||
};
|
||||
}, [load]);
|
||||
|
||||
return { data, loading, error, page, setPage, refresh: load };
|
||||
}
|
||||
Reference in New Issue
Block a user