wip
This commit is contained in:
parent
31592a0e17
commit
c3bd783769
|
@ -113,17 +113,14 @@ final class XMPPService: ObservableObject {
|
||||||
message.to = JID(to)
|
message.to = JID(to)
|
||||||
message.body = message.body
|
message.body = message.body
|
||||||
|
|
||||||
client.module(MessageModule.self)
|
client.context.writer.write(message) { res in
|
||||||
.chatManager
|
switch res {
|
||||||
.chat(for: client.context, with: JID(to).bareJid)?
|
case .success:
|
||||||
.send(message: message) { res in
|
completion(true)
|
||||||
switch res {
|
|
||||||
case .success:
|
|
||||||
completion(true)
|
|
||||||
|
|
||||||
case .failure:
|
case .failure:
|
||||||
completion(false)
|
completion(false)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,8 @@ import SwiftUI
|
||||||
struct ConversationScreen: View {
|
struct ConversationScreen: View {
|
||||||
@EnvironmentObject var store: AppStore
|
@EnvironmentObject var store: AppStore
|
||||||
|
|
||||||
|
@State private var autoScroll = true
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
ZStack {
|
ZStack {
|
||||||
// Background color
|
// Background color
|
||||||
|
@ -20,14 +22,45 @@ struct ConversationScreen: View {
|
||||||
// Msg list
|
// Msg list
|
||||||
let messages = store.state.conversationsState.currentMessages
|
let messages = store.state.conversationsState.currentMessages
|
||||||
if !messages.isEmpty {
|
if !messages.isEmpty {
|
||||||
List {
|
ScrollViewReader { proxy in
|
||||||
ForEach(messages) { message in
|
List {
|
||||||
ConversationMessageRow(message: message)
|
ForEach(messages) { message in
|
||||||
|
ConversationMessageRow(message: message)
|
||||||
|
.id(message.id)
|
||||||
|
.onAppear {
|
||||||
|
if message.id == messages.last?.id {
|
||||||
|
autoScroll = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.onDisappear {
|
||||||
|
if message.id == messages.last?.id {
|
||||||
|
autoScroll = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.listStyle(.plain)
|
||||||
|
.background(Color.Main.backgroundLight)
|
||||||
|
.scrollDismissesKeyboard(.immediately)
|
||||||
|
.scrollIndicators(.hidden)
|
||||||
|
.onChange(of: messages) { _ in
|
||||||
|
if autoScroll {
|
||||||
|
withAnimation {
|
||||||
|
proxy.scrollTo(messages.last?.id, anchor: .bottom)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.onChange(of: autoScroll) { new in
|
||||||
|
if new {
|
||||||
|
withAnimation {
|
||||||
|
proxy.scrollTo(messages.last?.id, anchor: .bottom)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.onAppear {
|
||||||
|
proxy.scrollTo(messages.last?.id, anchor: .bottom)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.listStyle(.plain)
|
|
||||||
.background(Color.Main.backgroundLight)
|
|
||||||
.scrollDismissesKeyboard(.immediately)
|
|
||||||
} else {
|
} else {
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
|
@ -35,6 +68,15 @@ struct ConversationScreen: View {
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
|
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Jump to last button
|
||||||
|
if !autoScroll {
|
||||||
|
Button {
|
||||||
|
autoScroll = true
|
||||||
|
} label: {
|
||||||
|
Text("TEST")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.safeAreaInset(edge: .bottom, spacing: 0) {
|
.safeAreaInset(edge: .bottom, spacing: 0) {
|
||||||
ConversationTextInput()
|
ConversationTextInput()
|
||||||
|
|
Loading…
Reference in a new issue