snort/packages/app/src/Feed/MuteList.ts

42 lines
1.2 KiB
TypeScript
Raw Normal View History

2023-01-26 11:34:18 +00:00
import { useMemo } from "react";
import { getNewest } from "Util";
2023-02-11 20:05:46 +00:00
import { HexKey, TaggedRawEvent, Lists } from "@snort/nostr";
import { EventKind, Subscriptions } from "@snort/nostr";
2023-01-26 11:34:18 +00:00
import useSubscription, { NoteStore } from "Feed/Subscription";
export default function useMutedFeed(pubkey: HexKey) {
const sub = useMemo(() => {
2023-02-07 19:47:57 +00:00
const sub = new Subscriptions();
sub.Id = `muted:${pubkey.slice(0, 12)}`;
sub.Kinds = new Set([EventKind.PubkeyLists]);
sub.Authors = new Set([pubkey]);
sub.DTags = new Set([Lists.Muted]);
sub.Limit = 1;
return sub;
}, [pubkey]);
2023-01-26 11:34:18 +00:00
return useSubscription(sub);
2023-01-26 11:34:18 +00:00
}
export function getMutedKeys(rawNotes: TaggedRawEvent[]): {
createdAt: number;
keys: HexKey[];
} {
const newest = getNewest(rawNotes);
if (newest) {
const { created_at, tags } = newest;
2023-02-09 12:26:54 +00:00
const keys = tags.filter(t => t[0] === "p").map(t => t[1]);
return {
keys,
createdAt: created_at,
};
}
return { createdAt: 0, keys: [] };
2023-01-26 11:34:18 +00:00
}
export function getMuted(feed: NoteStore, pubkey: HexKey): HexKey[] {
const lists = feed?.notes.filter(a => a.kind === EventKind.PubkeyLists && a.pubkey === pubkey);
return getMutedKeys(lists).keys;
2023-01-26 11:34:18 +00:00
}