Fix UI bugs in ChatActivity

This commit is contained in:
Matéo Duparc 2021-08-03 21:18:14 +02:00
parent b20fded45b
commit cc31423cc4
Signed by: hardcoresushi
GPG Key ID: 007F84120107191E
1 changed files with 22 additions and 6 deletions

View File

@ -45,13 +45,13 @@ class ChatActivity : ServiceBoundActivity() {
override fun onNewSession(sessionId: Int, ip: String) {
if (this@ChatActivity.sessionId == sessionId) {
val contact = airaService.contacts[sessionId]
val hasPendingMsg = airaService.pendingMsgs[sessionId]?.size ?: 0 > 0
val hasPendingMsgs = airaService.pendingMsgs[sessionId]?.size ?: 0 > 0
runOnUiThread {
if (contact == null) {
binding.bottomPanel.visibility = View.VISIBLE
} else {
binding.offlineWarning.visibility = View.GONE
if (hasPendingMsg) {
if (hasPendingMsgs) {
binding.sendingPendingMsgsIndicator.visibility = View.VISIBLE
chatAdapter.removePendingMessages()
scrollToBottom()
@ -223,13 +223,17 @@ class ChatActivity : ServiceBoundActivity() {
chatAdapter.newLoadedMessage(ChatItem(msg.outgoing, msg.timestamp, msg.data))
}
}
var hasPendingMsgs = false
airaService.pendingMsgs[sessionId]?.let {
if (it.size > 0) {
hasPendingMsgs = true
for (msg in it) {
if (msg[0] == Protocol.MESSAGE ||msg[0] == Protocol.FILE) {
chatAdapter.newMessage(ChatItem(true, 0, msg))
}
}
}
}
if (chatAdapter.itemCount > 0) {
scrollToBottom()
}
@ -238,12 +242,20 @@ class ChatActivity : ServiceBoundActivity() {
it.ask(this@ChatActivity, ipName)
}
}
if (session == null) {
binding.sendingPendingMsgsIndicator.visibility = if (session == null) {
if (contact == null) {
hideBottomPanel()
} else {
binding.offlineWarning.visibility = View.VISIBLE
}
View.GONE
} else {
binding.offlineWarning.visibility = View.GONE
if (hasPendingMsgs) {
View.VISIBLE
} else {
View.GONE
}
}
airaService.setSeen(sessionId, true)
}
@ -348,6 +360,10 @@ class ChatActivity : ServiceBoundActivity() {
if (airaService.removeContact(sessionId)) {
invalidateOptionsMenu()
displayIconTrustLevel(false, false)
if (!airaService.isOnline(sessionId)) {
hideBottomPanel()
binding.offlineWarning.visibility = View.GONE
}
}
}
.setNegativeButton(R.string.cancel, null)