mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-28 01:56:25 +00:00
53040dbe1d
* iOS: chats and messages layout * model update for updated API * improve chat list view * chat view layouts * delete contacts * larger headers, clean up, move message reception loop to ContentView * settings: user profile
73 lines
2.7 KiB
Swift
73 lines
2.7 KiB
Swift
//
|
|
// ChatView.swift
|
|
// SimpleX
|
|
//
|
|
// Created by Evgeny Poberezkin on 27/01/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ChatView: View {
|
|
@EnvironmentObject var chatModel: ChatModel
|
|
@State var inProgress: Bool = false
|
|
|
|
var chatInfo: ChatInfo
|
|
var body: some View {
|
|
VStack {
|
|
if let chat: Chat = chatModel.chats[chatInfo.id] {
|
|
VStack {
|
|
ScrollView {
|
|
LazyVStack(spacing: 5) {
|
|
ForEach(chat.chatItems) {
|
|
ChatItemView(chatItem: $0)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
Text("unexpected: chat not found...")
|
|
}
|
|
|
|
Spacer(minLength: 0)
|
|
|
|
SendMessageView(sendMessage: sendMessage, inProgress: inProgress)
|
|
}
|
|
.edgesIgnoringSafeArea(.all)
|
|
.navigationBarHidden(true)
|
|
}
|
|
|
|
func sendMessage(_ msg: String) {
|
|
do {
|
|
let chatItem = try apiSendMessage(type: chatInfo.chatType, id: chatInfo.apiId, msg: .text(msg))
|
|
let chat = chatModel.chats[chatInfo.id] ?? Chat(chatInfo: chatInfo, chatItems: [])
|
|
chatModel.chats[chatInfo.id] = chat
|
|
chat.chatItems.append(chatItem)
|
|
} catch {
|
|
print(error)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ChatView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
let chatModel = ChatModel()
|
|
chatModel.chats = [
|
|
"@1": Chat(
|
|
chatInfo: sampleDirectChatInfo,
|
|
chatItems: [
|
|
chatItemSample(1, .directSnd, Date.now, "hello"),
|
|
chatItemSample(2, .directRcv, Date.now, "hi"),
|
|
chatItemSample(3, .directRcv, Date.now, "hi there"),
|
|
chatItemSample(4, .directRcv, Date.now, "hello again"),
|
|
chatItemSample(5, .directSnd, Date.now, "hi there!!!"),
|
|
chatItemSample(6, .directSnd, Date.now, "how are you?"),
|
|
chatItemSample(7, .directSnd, Date.now, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.")
|
|
]
|
|
)
|
|
]
|
|
return ChatView(chatInfo: sampleDirectChatInfo)
|
|
.environmentObject(chatModel)
|
|
}
|
|
}
|