forked from nostr/nostrweb
refactor: use evt as variable name if possible
This was we can use evt.id consistently instead of mental overhead of textNoteEvent.id
parent
06686ba9a7
commit
7d9f31f7c6
|
@ -132,18 +132,18 @@ const sortByCreatedAt = (evt1, evt2) => {
|
||||||
|
|
||||||
function renderFeed() {
|
function renderFeed() {
|
||||||
const sortedFeeds = textNoteList.sort(sortByCreatedAt).reverse();
|
const sortedFeeds = textNoteList.sort(sortByCreatedAt).reverse();
|
||||||
sortedFeeds.forEach((textNoteEvent, i) => {
|
sortedFeeds.forEach((evt, i) => {
|
||||||
if (feedDomMap[textNoteEvent.id]) {
|
if (feedDomMap[evt.id]) {
|
||||||
// TODO check eventRelayMap if event was published to different relays
|
// TODO check eventRelayMap if event was published to different relays
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const article = createTextNote(textNoteEvent, eventRelayMap[textNoteEvent.id]);
|
const article = createTextNote(evt, eventRelayMap[evt.id]);
|
||||||
if (i === 0) {
|
if (i === 0) {
|
||||||
feedContainer.append(article);
|
feedContainer.append(article);
|
||||||
} else {
|
} else {
|
||||||
feedDomMap[sortedFeeds[i - 1].id].before(article);
|
feedDomMap[sortedFeeds[i - 1].id].before(article);
|
||||||
}
|
}
|
||||||
feedDomMap[textNoteEvent.id] = article;
|
feedDomMap[evt.id] = article;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue