mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-05 02:20:26 +02:00
only show kind 0 events in media
This commit is contained in:
parent
305f5e2922
commit
65bd2e93aa
5
.changeset/dirty-parrots-act.md
Normal file
5
.changeset/dirty-parrots-act.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"nostrudel": patch
|
||||
---
|
||||
|
||||
Only show kind 0 events in media tab
|
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user