only show kind 0 events in media

This commit is contained in:
hzrd149 2023-06-07 10:00:38 -04:00
parent 305f5e2922
commit 65bd2e93aa
2 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
"nostrudel": patch
---
Only show kind 0 events in media tab

View File

@ -23,6 +23,8 @@ const UserMediaTab = () => {
const events = useSubject(timeline.events);
const loading = useSubject(timeline.loading);
const filteredEvents = useMemo(() => events.filter((e) => e.kind === 1), [events]);
useEffect(() => {
timeline.setRelays(contextRelays);
}, [timeline, contextRelays.join("|")]);
@ -33,7 +35,7 @@ const UserMediaTab = () => {
const images = useMemo(() => {
var images: { eventId: string; src: string; index: number }[] = [];
for (const event of events) {
for (const event of filteredEvents) {
const urls = event.content.matchAll(matchAllImages);
let i = 0;
@ -43,7 +45,7 @@ const UserMediaTab = () => {
}
return images;
}, [events]);
}, [filteredEvents]);
return (
<Flex direction="column" gap="2" pr="2" pl="2">