Remove the confusing extra useNostr hook

This commit is contained in:
Alex Gleason 2025-04-17 11:53:56 -05:00
parent 8e99236dbd
commit 455a27893b
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -1,32 +0,0 @@
import { useNostr } from '@nostrify/react';
import { useQuery } from '@tanstack/react-query';
import { NostrEvent, NostrFilter } from '@nostrify/nostrify';
// Hook for fetching Nostr events based on filters
export function useNostrQuery(filters: NostrFilter[], options = {}) {
const { nostr } = useNostr();
return useQuery<NostrEvent[]>({
queryKey: ['nostr', JSON.stringify(filters)],
queryFn: async () => {
if (!nostr) return [];
return await nostr.query(filters);
},
...options,
});
}
// Hook for publishing Nostr events
export function useNostrPublish() {
const { nostr } = useNostr();
const publish = async (event: NostrEvent) => {
if (!nostr) throw new Error('Nostr context not available');
return await nostr.event(event);
};
return { publish };
}
// Export the useNostr hook as well for direct access to the pool
export { useNostr };