mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-23 16:05:24 +00:00
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import { useState, useEffect } from 'react';
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { useNDKContext } from '@/context/NDKContext';
|
|
import axios from 'axios';
|
|
import appConfig from '@/config/appConfig';
|
|
|
|
export function useCoursesQuery() {
|
|
const [isClient, setIsClient] = useState(false);
|
|
const { ndk, addSigner } = useNDKContext();
|
|
|
|
useEffect(() => {
|
|
setIsClient(true);
|
|
}, []);
|
|
|
|
const hasRequiredProperties = (event, contentIds) => {
|
|
const hasId = event.tags.some(([tag, value]) => tag === 'd' && contentIds.includes(value));
|
|
return hasId;
|
|
};
|
|
|
|
const fetchCoursesFromNDK = async () => {
|
|
try {
|
|
const response = await axios.get(`/api/content/all`);
|
|
const contentIds = response.data;
|
|
|
|
if (!contentIds || contentIds.length === 0) {
|
|
return []; // Return early if no content IDs are found
|
|
}
|
|
|
|
await ndk.connect();
|
|
|
|
const filter = { kinds: [30004], authors: appConfig.authorPubkeys };
|
|
const events = await ndk.fetchEvents(filter);
|
|
|
|
if (events && events.size > 0) {
|
|
const eventsArray = Array.from(events);
|
|
const courses = eventsArray.filter(event => hasRequiredProperties(event, contentIds));
|
|
return courses;
|
|
}
|
|
return [];
|
|
} catch (error) {
|
|
console.error('Error fetching courses from NDK:', error);
|
|
return [];
|
|
}
|
|
};
|
|
|
|
const {
|
|
data: courses,
|
|
isLoading: coursesLoading,
|
|
error: coursesError,
|
|
refetch: refetchCourses,
|
|
} = useQuery({
|
|
queryKey: ['courses', isClient],
|
|
queryFn: fetchCoursesFromNDK,
|
|
// staleTime: 1000 * 60 * 30, // 30 minutes
|
|
// refetchInterval: 1000 * 60 * 30, // 30 minutes
|
|
enabled: isClient,
|
|
});
|
|
|
|
return { courses, coursesLoading, coursesError, refetchCourses };
|
|
}
|