wot: show friend icons is some views

easier to detect if someone is trying to fake us out

Changelog-Added: Friend icons next to names on some views. Check is friend. Arrows are friend-of-friends
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-08-09 16:48:47 -07:00
parent a59cb04ce0
commit 22cad4b072
13 changed files with 61 additions and 25 deletions

View File

@@ -15,6 +15,7 @@ enum TimelineAction {
struct InnerTimelineView: View {
@Binding var events: [NostrEvent]
let damus: DamusState
let show_friend_icon: Bool
var body: some View {
LazyVStack {
@@ -22,7 +23,7 @@ struct InnerTimelineView: View {
let tv = ThreadView(thread: ThreadModel(event: ev, pool: damus.pool, privkey: damus.keypair.privkey), damus: damus, is_chatroom: has_hashtag(ev.tags, hashtag: "chat"))
NavigationLink(destination: tv) {
EventView(event: ev, highlight: .none, has_action_bar: true, damus: damus)
EventView(event: ev, highlight: .none, has_action_bar: true, damus: damus, show_friend_icon: show_friend_icon)
}
.isDetailLink(true)
.buttonStyle(PlainButtonStyle())
@@ -36,6 +37,7 @@ struct TimelineView: View {
@Binding var loading: Bool
let damus: DamusState
let show_friend_icon: Bool
var body: some View {
MainContent
@@ -48,7 +50,7 @@ struct TimelineView: View {
ProgressView()
.progressViewStyle(.circular)
}
InnerTimelineView(events: $events, damus: damus)
InnerTimelineView(events: $events, damus: damus, show_friend_icon: show_friend_icon)
}
.onReceive(NotificationCenter.default.publisher(for: .scroll_to_top)) { _ in
guard let event = events.first else {