Show "Follow Back" on follow button

This commit is contained in:
hzrd149 2023-04-17 11:41:48 -05:00
parent 80eda9145a
commit 3ae7fe675c
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"nostrudel": minor
---
Show "Follow Back" on follow button is user is following you

View File

@ -2,6 +2,10 @@ import { Button, ButtonProps } from "@chakra-ui/react";
import { useCurrentAccount } from "../hooks/use-current-account";
import useSubject from "../hooks/use-subject";
import clientFollowingService from "../services/client-following";
import { useAsync } from "react-use";
import { NostrRequest } from "../classes/nostr-request";
import clientRelaysService from "../services/client-relays";
import { useUserContacts } from "../hooks/use-user-contacts";
export const UserFollowButton = ({
pubkey,
@ -13,6 +17,8 @@ export const UserFollowButton = ({
const isFollowing = following.some((t) => t[1] === pubkey);
const userContacts = useUserContacts(pubkey, clientRelaysService.getReadUrls());
const toggleFollow = async () => {
if (isFollowing) {
clientFollowingService.removeContact(pubkey);
@ -25,7 +31,7 @@ export const UserFollowButton = ({
return (
<Button colorScheme="brand" {...props} isLoading={savingDraft} onClick={toggleFollow} isDisabled={account.readonly}>
{isFollowing ? "Unfollow" : "Follow"}
{isFollowing ? "Unfollow" : userContacts?.contacts.includes(account.pubkey) ? "Follow Back" : "Follow"}
</Button>
);
};