* ios: block members (WIP) * CIBlocked, blocking api * show item as blocked * show blocked and merge multiple deleted items * update block icons * split sent and received deleted to two categories * merge chat feature items, refactor CIMergedRange * merge feature items, two profile images and names on merged items * ensure range is withing chat items range * merge group events * fix/refactor * make group member changes observable * exclude some group events from merging * fix states not updating and other fixes * load list of members when tapping profile * refactor * fix incorrect merging of sent/received marked deleted * fix incorrect expand/hide on single moderated items without content * load members list when opening member via item * comments * fix member counting in case of name collision
172 lines
6.4 KiB
Swift
172 lines
6.4 KiB
Swift
//
|
|
// ContactConnectionInfo.swift
|
|
// SimpleX (iOS)
|
|
//
|
|
// Created by Evgeny on 06/10/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
import SimpleXChat
|
|
|
|
struct ContactConnectionInfo: View {
|
|
@EnvironmentObject var m: ChatModel
|
|
@Environment(\.dismiss) var dismiss: DismissAction
|
|
@State var contactConnection: PendingContactConnection
|
|
@State private var alert: CCInfoAlert?
|
|
@State private var localAlias = ""
|
|
@State private var showIncognitoSheet = false
|
|
@FocusState private var aliasTextFieldFocused: Bool
|
|
|
|
enum CCInfoAlert: Identifiable {
|
|
case deleteInvitationAlert
|
|
case error(title: LocalizedStringKey, error: LocalizedStringKey)
|
|
|
|
var id: String {
|
|
switch self {
|
|
case .deleteInvitationAlert: return "deleteInvitationAlert"
|
|
case let .error(title, _): return "error \(title)"
|
|
}
|
|
}
|
|
}
|
|
|
|
var body: some View {
|
|
NavigationView {
|
|
let v = List {
|
|
Group {
|
|
Text(contactConnection.initiated ? "You invited a contact" : "You accepted connection")
|
|
.font(.largeTitle)
|
|
.bold()
|
|
.padding(.bottom)
|
|
|
|
Text(contactConnectionText(contactConnection))
|
|
}
|
|
.listRowBackground(Color.clear)
|
|
.listRowSeparator(.hidden)
|
|
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 0))
|
|
.onTapGesture { aliasTextFieldFocused = false }
|
|
|
|
Section {
|
|
if contactConnection.groupLinkId == nil {
|
|
settingsRow("pencil") {
|
|
TextField("Set contact name…", text: $localAlias)
|
|
.autocapitalization(.none)
|
|
.autocorrectionDisabled(true)
|
|
.focused($aliasTextFieldFocused)
|
|
.submitLabel(.done)
|
|
.onSubmit(setConnectionAlias)
|
|
}
|
|
.onTapGesture { aliasTextFieldFocused = true }
|
|
}
|
|
|
|
if contactConnection.initiated,
|
|
let connReqInv = contactConnection.connReqInv {
|
|
SimpleXLinkQRCode(uri: simplexChatLink(connReqInv))
|
|
incognitoEnabled()
|
|
shareLinkButton(connReqInv)
|
|
oneTimeLinkLearnMoreButton()
|
|
} else {
|
|
incognitoEnabled()
|
|
oneTimeLinkLearnMoreButton()
|
|
}
|
|
} footer: {
|
|
sharedProfileInfo(contactConnection.incognito)
|
|
}
|
|
|
|
Section {
|
|
Button(role: .destructive) {
|
|
alert = .deleteInvitationAlert
|
|
} label: {
|
|
Label("Delete connection", systemImage: "trash")
|
|
.foregroundColor(Color.red)
|
|
}
|
|
}
|
|
}
|
|
if #available(iOS 16, *) {
|
|
v
|
|
} else {
|
|
// navigationBarHidden is added conditionally,
|
|
// because the view jumps in iOS 17 if this is added,
|
|
// and on iOS 16+ it is hidden without it.
|
|
v.navigationBarHidden(true)
|
|
}
|
|
}
|
|
.alert(item: $alert) { _alert in
|
|
switch _alert {
|
|
case .deleteInvitationAlert:
|
|
return deleteContactConnectionAlert(contactConnection) { a in
|
|
alert = .error(title: a.title, error: a.message)
|
|
} success: {
|
|
dismiss()
|
|
}
|
|
case let .error(title, error): return Alert(title: Text(title), message: Text(error))
|
|
}
|
|
}
|
|
.onAppear {
|
|
localAlias = contactConnection.localAlias
|
|
}
|
|
}
|
|
|
|
private func setConnectionAlias() {
|
|
if localAlias == contactConnection.localAlias {
|
|
aliasTextFieldFocused = false
|
|
return
|
|
}
|
|
Task {
|
|
let prevAlias = contactConnection.localAlias
|
|
contactConnection.localAlias = localAlias
|
|
do {
|
|
if let conn = try await apiSetConnectionAlias(connId: contactConnection.pccConnId, localAlias: localAlias) {
|
|
await MainActor.run {
|
|
contactConnection = conn
|
|
m.updateContactConnection(conn)
|
|
dismiss()
|
|
}
|
|
}
|
|
} catch {
|
|
logger.error("setContactAlias error: \(responseError(error))")
|
|
contactConnection.localAlias = prevAlias
|
|
}
|
|
}
|
|
}
|
|
|
|
private func contactConnectionText(_ contactConnection: PendingContactConnection) -> LocalizedStringKey {
|
|
contactConnection.viaContactUri
|
|
? (contactConnection.groupLinkId != nil
|
|
? "You will be connected to group when the group host's device is online, please wait or check later!"
|
|
: "You will be connected when your connection request is accepted, please wait or check later!"
|
|
)
|
|
: "You will be connected when your contact's device is online, please wait or check later!"
|
|
}
|
|
|
|
@ViewBuilder private func incognitoEnabled() -> some View {
|
|
if contactConnection.incognito {
|
|
ZStack(alignment: .leading) {
|
|
Image(systemName: "theatermasks.fill")
|
|
.frame(maxWidth: 24, maxHeight: 24, alignment: .center)
|
|
.foregroundColor(Color.indigo)
|
|
.font(.system(size: 14))
|
|
HStack(spacing: 6) {
|
|
Text("Incognito")
|
|
Image(systemName: "info.circle")
|
|
.foregroundColor(.accentColor)
|
|
.font(.system(size: 14))
|
|
}
|
|
.onTapGesture {
|
|
showIncognitoSheet = true
|
|
}
|
|
.padding(.leading, 36)
|
|
}
|
|
.sheet(isPresented: $showIncognitoSheet) {
|
|
IncognitoHelp()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ContactConnectionInfo_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ContactConnectionInfo(contactConnection: PendingContactConnection.getSampleData())
|
|
}
|
|
}
|