-
Notifications
You must be signed in to change notification settings - Fork 0
/
leave-community-channel.ts
77 lines (72 loc) · 2.5 KB
/
leave-community-channel.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import {
Channel,
useKeysQuery,
useNostrGetUserProfileQuery,
useNostrPublishMutation,
} from "../nostr";
import { ChatQueries } from "../queries";
import { useMutation, useQueryClient } from "@tanstack/react-query";
import { Kind } from "nostr-tools";
import { useContext } from "react";
import { ChatContext } from "../chat-context-provider";
export function useLeaveCommunityChannel(channel?: Channel) {
const { activeUsername } = useContext(ChatContext);
const queryClient = useQueryClient();
const { publicKey } = useKeysQuery();
const { data: activeUserNostrProfiles } =
useNostrGetUserProfileQuery(publicKey);
const { mutateAsync: updateProfile } = useNostrPublishMutation(
["chats/update-nostr-profile"],
Kind.Metadata,
() => {},
);
return useMutation({
mutationKey: ["chats/leave-community-channel"],
mutationFn: async () => {
console.debug("[ns-query] Attempting to leave channel", channel);
if (channel && activeUserNostrProfiles) {
const activeUserNostrProfile = activeUserNostrProfiles[0];
const lastSeenRecords =
activeUserNostrProfile.channelsLastSeenDate ?? {};
const lastSeenTags = Object.entries(lastSeenRecords).map(
([channelId, lastSeenTime]) => [
"lastSeenDate",
channelId,
lastSeenTime.getTime().toString(),
],
);
await updateProfile({
tags: [["p", publicKey!!], ...lastSeenTags],
eventMetadata: {
...activeUserNostrProfile,
joinedChannels: (
activeUserNostrProfile.joinedChannels ?? []
).filter((c) => c !== channel.id),
},
});
console.debug("[ns-query] Joined channels list updated. Channel left.");
await queryClient.invalidateQueries({
queryKey: ["chats/nostr-get-user-profile", publicKey],
});
queryClient.setQueryData(
[ChatQueries.ORIGINAL_JOINED_CHANNELS, activeUsername],
(
queryClient.getQueryData<Channel[]>([
ChatQueries.ORIGINAL_JOINED_CHANNELS,
activeUsername,
]) ?? []
).filter((c) => c.id !== channel.id),
);
queryClient.setQueryData(
[ChatQueries.JOINED_CHANNELS, activeUsername],
(
queryClient.getQueryData<Channel[]>([
ChatQueries.JOINED_CHANNELS,
activeUsername,
]) ?? []
).filter((c) => c.id !== channel.id),
);
}
},
});
}