use direct references on root events

references to root should be treated slightly differently, otherwise the
entire thread will be shown when you select the root event.

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-04-18 12:32:55 -07:00
parent c53b9d2ce6
commit 8cc3edf195
2 changed files with 53 additions and 7 deletions

View File

@@ -208,9 +208,14 @@ func make_reply_map(active: NostrEvent, events: [NostrEvent]) -> [String: ()]
if events.count == 0 {
return is_reply
}
let is_root = active.is_root_event()
for ev in events {
if ev.references(id: active.id, key: "e") {
if is_root && ev.directly_references(active.id) {
is_reply[ev.id] = ()
start = i
} else if !is_root && ev.references(id: active.id, key: "e") {
is_reply[ev.id] = ()
start = i
} else if active.references(id: ev.id, key: "e") {
@@ -257,11 +262,20 @@ func determine_highlight(current: NostrEvent, active: NostrEvent) -> Highlight
if current.id == active.id {
return .main
}
if active.references(id: current.id, key: "e") {
return .reply
} else if current.references(id: active.id, key: "e") {
return .reply
if active.is_root_event() {
if active.directly_references(current.id) {
return .reply
} else if current.directly_references(active.id) {
return .reply
}
} else {
if active.references(id: current.id, key: "e") {
return .reply
} else if current.references(id: active.id, key: "e") {
return .reply
}
}
return .none
}