292 lines
9.5 KiB
Swift
292 lines
9.5 KiB
Swift
//
|
|
// EventView.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-04-11.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
enum Highlight {
|
|
case none
|
|
case main
|
|
case reply
|
|
case custom(Color, Float)
|
|
|
|
var is_main: Bool {
|
|
if case .main = self {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
var is_none: Bool {
|
|
if case .none = self {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
var is_replied_to: Bool {
|
|
switch self {
|
|
case .reply: return true
|
|
default: return false
|
|
}
|
|
}
|
|
}
|
|
|
|
struct EventView: View {
|
|
let event: NostrEvent
|
|
let highlight: Highlight
|
|
let has_action_bar: Bool
|
|
let damus: DamusState
|
|
let pubkey: String
|
|
let show_friend_icon: Bool
|
|
|
|
@EnvironmentObject var action_bar: ActionBarModel
|
|
|
|
init(event: NostrEvent, highlight: Highlight, has_action_bar: Bool, damus: DamusState, show_friend_icon: Bool) {
|
|
self.event = event
|
|
self.highlight = highlight
|
|
self.has_action_bar = has_action_bar
|
|
self.damus = damus
|
|
self.pubkey = event.pubkey
|
|
self.show_friend_icon = show_friend_icon
|
|
}
|
|
|
|
init(damus: DamusState, event: NostrEvent, show_friend_icon: Bool) {
|
|
self.event = event
|
|
self.highlight = .none
|
|
self.has_action_bar = false
|
|
self.damus = damus
|
|
self.pubkey = event.pubkey
|
|
self.show_friend_icon = show_friend_icon
|
|
}
|
|
|
|
init(damus: DamusState, event: NostrEvent, pubkey: String, show_friend_icon: Bool) {
|
|
self.event = event
|
|
self.highlight = .none
|
|
self.has_action_bar = false
|
|
self.damus = damus
|
|
self.pubkey = pubkey
|
|
self.show_friend_icon = show_friend_icon
|
|
}
|
|
|
|
var body: some View {
|
|
return Group {
|
|
if event.known_kind == .boost, let inner_ev = event.inner_event {
|
|
VStack(alignment: .leading) {
|
|
let prof_model = ProfileModel(pubkey: event.pubkey, damus: damus)
|
|
let follow_model = FollowersModel(damus_state: damus, target: event.pubkey)
|
|
let booster_profile = ProfileView(damus_state: damus, profile: prof_model, followers: follow_model)
|
|
|
|
NavigationLink(destination: booster_profile) {
|
|
HStack {
|
|
Image(systemName: "arrow.2.squarepath")
|
|
.font(.footnote.weight(.bold))
|
|
.foregroundColor(Color.gray)
|
|
if let prof = damus.profiles.lookup(id: event.pubkey) {
|
|
Text(Profile.displayName(profile: prof, pubkey: event.pubkey))
|
|
.font(.footnote.weight(.bold))
|
|
.foregroundColor(Color.gray)
|
|
}
|
|
Text("Boosted")
|
|
.font(.footnote.weight(.bold))
|
|
.foregroundColor(Color.gray)
|
|
}
|
|
}
|
|
.buttonStyle(PlainButtonStyle())
|
|
TextEvent(inner_ev, pubkey: inner_ev.pubkey)
|
|
.padding([.top], 1)
|
|
}
|
|
} else {
|
|
TextEvent(event, pubkey: pubkey)
|
|
.padding([.top], 6)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TextEvent(_ event: NostrEvent, pubkey: String) -> some View {
|
|
let content = event.get_content(damus.keypair.privkey)
|
|
return HStack(alignment: .top) {
|
|
let profile = damus.profiles.lookup(id: pubkey)
|
|
VStack {
|
|
let pmodel = ProfileModel(pubkey: pubkey, damus: damus)
|
|
let pv = ProfileView(damus_state: damus, profile: pmodel, followers: FollowersModel(damus_state: damus, target: pubkey))
|
|
|
|
NavigationLink(destination: pv) {
|
|
ProfilePicView(pubkey: pubkey, size: PFP_SIZE, highlight: highlight, profiles: damus.profiles)
|
|
}
|
|
|
|
Spacer()
|
|
}
|
|
|
|
VStack(alignment: .leading) {
|
|
HStack(alignment: .center) {
|
|
EventProfileName(pubkey: pubkey, profile: profile, contacts: damus.contacts, show_friend_confirmed: show_friend_icon)
|
|
Text("\(format_relative_time(event.created_at))")
|
|
.font(.body)
|
|
.foregroundColor(.gray)
|
|
}
|
|
|
|
if event.is_reply(damus.keypair.privkey) {
|
|
Text("\(reply_desc(profiles: damus.profiles, event: event))")
|
|
.font(.footnote)
|
|
.foregroundColor(.gray)
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
}
|
|
|
|
NoteContentView(privkey: damus.keypair.privkey, event: event, profiles: damus.profiles, show_images: should_show_images(contacts: damus.contacts, ev: event), artifacts: .just_content(content))
|
|
.frame(maxWidth: .infinity, alignment: .leading)
|
|
|
|
if has_action_bar {
|
|
let bar = make_actionbar_model(ev: event, damus: damus)
|
|
EventActionBar(damus_state: damus, event: event, bar: bar)
|
|
}
|
|
|
|
Divider()
|
|
.padding([.top], 4)
|
|
}
|
|
.padding([.leading], 2)
|
|
}
|
|
.contentShape(Rectangle())
|
|
.background(event_validity_color(event.validity))
|
|
.id(event.id)
|
|
.frame(maxWidth: .infinity, minHeight: PFP_SIZE)
|
|
.padding([.bottom], 2)
|
|
.event_context_menu(event, privkey: damus.keypair.privkey)
|
|
}
|
|
}
|
|
|
|
// blame the porn bots for this code
|
|
func should_show_images(contacts: Contacts, ev: NostrEvent) -> Bool {
|
|
if contacts.is_friend(ev.pubkey) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func event_validity_color(_ validation: ValidationResult) -> some View {
|
|
Group {
|
|
switch validation {
|
|
case .ok:
|
|
EmptyView()
|
|
case .bad_id:
|
|
Color.orange.opacity(0.4)
|
|
case .bad_sig:
|
|
Color.red.opacity(0.4)
|
|
}
|
|
}
|
|
}
|
|
|
|
extension View {
|
|
func pubkey_context_menu(bech32_pubkey: String) -> some View {
|
|
return self.contextMenu {
|
|
Button {
|
|
UIPasteboard.general.string = bech32_pubkey
|
|
} label: {
|
|
Label("Copy Account ID", systemImage: "doc.on.doc")
|
|
}
|
|
}
|
|
}
|
|
|
|
func event_context_menu(_ event: NostrEvent, privkey: String?) -> some View {
|
|
return self.contextMenu {
|
|
Button {
|
|
UIPasteboard.general.string = event.get_content(privkey)
|
|
} label: {
|
|
Label("Copy Text", systemImage: "doc.on.doc")
|
|
}
|
|
|
|
Button {
|
|
UIPasteboard.general.string = bech32_pubkey(event.pubkey) ?? event.pubkey
|
|
} label: {
|
|
Label("Copy User ID", systemImage: "tag")
|
|
}
|
|
|
|
Button {
|
|
UIPasteboard.general.string = bech32_note_id(event.id) ?? event.id
|
|
} label: {
|
|
Label("Copy Note ID", systemImage: "tag")
|
|
}
|
|
|
|
Button {
|
|
UIPasteboard.general.string = event_to_json(ev: event)
|
|
} label: {
|
|
Label("Copy Note", systemImage: "note")
|
|
}
|
|
|
|
Button {
|
|
NotificationCenter.default.post(name: .broadcast_event, object: event)
|
|
} label: {
|
|
Label("Broadcast", systemImage: "globe")
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
func format_relative_time(_ created_at: Int64) -> String
|
|
{
|
|
return time_ago_since(Date(timeIntervalSince1970: Double(created_at)))
|
|
}
|
|
|
|
func reply_desc(profiles: Profiles, event: NostrEvent) -> String {
|
|
let desc = make_reply_description(event.tags)
|
|
let pubkeys = desc.pubkeys
|
|
let n = desc.others
|
|
|
|
if desc.pubkeys.count == 0 {
|
|
return "Reply to self"
|
|
}
|
|
|
|
let names: [String] = pubkeys.map {
|
|
let prof = profiles.lookup(id: $0)
|
|
return Profile.displayName(profile: prof, pubkey: $0)
|
|
}
|
|
|
|
if names.count == 2 {
|
|
if n > 2 {
|
|
let and_other = reply_others_desc(n: n, n_pubkeys: pubkeys.count)
|
|
return "Replying to \(names[0]), \(names[1])\(and_other)"
|
|
}
|
|
return "Replying to \(names[0]) & \(names[1])"
|
|
}
|
|
|
|
let and_other = reply_others_desc(n: n, n_pubkeys: pubkeys.count)
|
|
return "Replying to \(names[0])\(and_other)"
|
|
}
|
|
|
|
func reply_others_desc(n: Int, n_pubkeys: Int) -> String {
|
|
let other = n - n_pubkeys
|
|
let plural = other == 1 ? "" : "s"
|
|
return n > 1 ? " & \(other) other\(plural)" : ""
|
|
}
|
|
|
|
|
|
|
|
func make_actionbar_model(ev: NostrEvent, damus: DamusState) -> ActionBarModel {
|
|
let likes = damus.likes.counts[ev.id]
|
|
let boosts = damus.boosts.counts[ev.id]
|
|
let tips = damus.tips.tips[ev.id]
|
|
let our_like = damus.likes.our_events[ev.id]
|
|
let our_boost = damus.boosts.our_events[ev.id]
|
|
let our_tip = damus.tips.our_tips[ev.id]
|
|
|
|
return ActionBarModel(likes: likes ?? 0,
|
|
boosts: boosts ?? 0,
|
|
tips: tips ?? 0,
|
|
our_like: our_like,
|
|
our_boost: our_boost,
|
|
our_tip: our_tip
|
|
)
|
|
}
|
|
|
|
|
|
struct EventView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
EventView(damus: test_damus_state(), event: NostrEvent(content: "hello there https://jb55.com/s/Oct12-150217.png https://jb55.com/red-me.jb55 cool", pubkey: "pk"), show_friend_icon: true)
|
|
}
|
|
}
|