unfollow not working

This commit is contained in:
2025-04-01 21:50:03 +02:00
parent 3389b4a243
commit 276d1a943b

View File

@@ -1,93 +1,123 @@
import React, { useEffect, useState } from 'react';
import { Button } from './ui/button';
import { useNostr, useNostrEvents } from 'nostr-react';
import { finalizeEvent, NostrEvent } from 'nostr-tools';
import { sign } from 'crypto';
import { SignalMedium } from 'lucide-react';
import { ReloadIcon } from '@radix-ui/react-icons';
import { signEvent } from '@/utils/utils';
"use client"
import type React from "react"
import { useEffect, useState } from "react"
import { Button } from "./ui/button"
import { useNostr, useNostrEvents } from "nostr-react"
import type { NostrEvent } from "nostr-tools"
import { ReloadIcon } from "@radix-ui/react-icons"
import { signEvent } from "@/utils/utils"
import { AlignVerticalJustifyCenter } from "lucide-react"
interface FollowButtonProps {
pubkey: string;
userPubkey: string;
pubkey: string
userPubkey: string
}
const FollowButton: React.FC<FollowButtonProps> = ({ pubkey, userPubkey }) => {
const { publish } = useNostr()
const { publish } = useNostr()
const [isFollowing, setIsFollowing] = useState(false)
const [isUpdating, setIsUpdating] = useState(false)
const loginType = typeof window !== "undefined" ? window.localStorage.getItem("loginType") : null
const [isFollowing, setIsFollowing] = useState(false);
const loginType = typeof window !== "undefined" ? window.localStorage.getItem("loginType") : null
const { events, isLoading } = useNostrEvents({
filter: {
kinds: [3],
authors: [userPubkey],
limit: 1,
},
})
const { events, isLoading } = useNostrEvents({
filter: {
kinds: [3],
authors: [userPubkey],
limit: 1,
},
});
// Extract following pubkeys from events (tag with p)
// let followingPubkeys = events.flatMap((event) => event.tags.map((tag) => tag[1])).filter(Boolean) // Filter out null or undefined
let followingPubkeys = events.flatMap((event) => event.tags.filter((tag) => tag[0] === "p").map((tag) => tag[1])) // Filter out null or undefined
let followingPubkeys = events.flatMap((event) => event.tags.map(tag => tag[1]));
// filter out all null or undefined
followingPubkeys = followingPubkeys.filter((tag) => tag);
// Only update the following state from server data when not in the middle of an update
// and when the component first loads or receives new server data
useEffect(() => {
if (!isUpdating) {
setIsFollowing(followingPubkeys.includes(pubkey))
}
}, [followingPubkeys, pubkey, isUpdating])
const handleFollow = async () => {
if (!userPubkey || isUpdating) return
useEffect(() => {
// Reset the following state when receiving new data
setIsFollowing(followingPubkeys.includes(pubkey));
}, [followingPubkeys, pubkey]);
// Set updating state to prevent useEffect from overriding our optimistic update
setIsUpdating(true)
const handleFollow = async () => {
if (userPubkey) {
// Get a unique set of pubkeys to follow
let uniqueFollows = new Set(followingPubkeys);
// Add or remove the target pubkey
if (isFollowing) {
uniqueFollows.delete(pubkey);
} else {
uniqueFollows.add(pubkey);
}
// Convert to array and create properly formatted p tags
const formattedTags = Array.from(uniqueFollows).map(pk => ["p", pk]);
// Optimistically update UI immediately
const newFollowingState = !isFollowing
setIsFollowing(newFollowingState)
let eventTemplate = {
kind: 3,
created_at: Math.floor(Date.now() / 1000),
tags: formattedTags,
content: '',
pubkey: '', // Placeholder
id: '', // Placeholder
sig: '', // Placeholder
}
try {
// Get a unique set of pubkeys to follow
const uniqueFollows = new Set(followingPubkeys)
console.log('Sending event template:', eventTemplate);
// Add or remove the target pubkey based on the new state
if (newFollowingState) {
uniqueFollows.add(pubkey)
} else {
uniqueFollows.delete(pubkey)
}
let signedEvent = null;
signedEvent = await signEvent(loginType, eventTemplate) as NostrEvent;
// Convert to array and create properly formatted p tags
const formattedTags = Array.from(uniqueFollows).map((pk) => ["p", pk])
if (signedEvent !== null) {
console.log('Publishing signed event:', signedEvent);
publish(signedEvent);
// Update UI state immediately
setIsFollowing(!isFollowing);
// Optionally, store this change in a local state if needed
// This could help with rapid UI interactions before the relay responds
}
}
};
const eventTemplate = {
kind: 3,
created_at: Math.floor(Date.now() / 1000),
tags: formattedTags,
content: "",
pubkey: "", // Placeholder
id: "", // Placeholder
sig: "", // Placeholder
}
return (
<Button className='w-full' onClick={handleFollow} disabled={isLoading || !userPubkey}>
{isLoading ? (
<ReloadIcon className='animate-spin' />
) : (
isFollowing ? 'Unfollow' : 'Follow'
)}
</Button>
);
};
// Sign and publish the event
const signedEvent = (await signEvent(loginType, eventTemplate)) as NostrEvent
if (signedEvent) {
publish(signedEvent)
} else {
// If signing fails, revert the optimistic update
setIsFollowing(!newFollowingState)
}
} catch (error) {
console.error("Error updating follow status:", error)
// Revert optimistic update on error
setIsFollowing(!newFollowingState)
} finally {
// Allow server updates to affect state again after a short delay
// This ensures our optimistic update isn't immediately overridden
setTimeout(() => {
setIsUpdating(false)
}, 1000)
}
}
return (
<Button
className="w-full"
onClick={handleFollow}
disabled={isLoading || !userPubkey || isUpdating}
variant={isFollowing ? "outline" : "default"}
>
{isLoading ? (
<ReloadIcon className="mr-2 h-4 w-4 animate-spin" />
) : isUpdating ? (
<>
<ReloadIcon className="mr-2 h-4 w-4 animate-spin" />
{isFollowing ? "Unfollow" : "Follow"}
</>
) : isFollowing ? (
"Unfollow"
) : (
"Follow"
)}
</Button>
)
}
export default FollowButton
export default FollowButton;