Files
2026-06-06 10:40:48 +08:00

36 lines
888 B
TypeScript

"use client";
import { useState, useEffect, useCallback } from "react";
// Generic data type for notices
type Notice = Record<string, unknown>;
/**
* Fetch and manage notices data.
*/
export function useNotices() {
const [data, setData] = useState<Notice[]>([]);
const [loading, setLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
const fetchData = useCallback(async () => {
try {
setLoading(true);
setError(null);
const res = await fetch(`/api/notices`);
const json = await res.json();
setData(Array.isArray(json) ? json : json?.data || []);
} catch (e) {
setError(e instanceof Error ? e.message : "Failed to load data");
} finally {
setLoading(false);
}
}, []);
useEffect(() => {
fetchData();
}, [fetchData]);
return { data, loading, error, refetch: fetchData };
}