[Feedback] Hide notification when feedback is open. Fix mixing messages when a thread is open.

This commit is contained in:
Kuba Szczodrzyński 2020-02-09 15:10:03 +01:00
parent bcf3fef303
commit 37ddd643ac
2 changed files with 21 additions and 14 deletions

View File

@ -74,6 +74,7 @@ class SzkolnyAppFirebase(val app: App, val profiles: List<Profile>, val message:
}
withContext(Dispatchers.Default) {
app.db.feedbackMessageDao().add(message)
if (!EventBus.getDefault().hasSubscriberForEvent(FeedbackMessageEvent::class.java)) {
val notification = Notification(
id = System.currentTimeMillis(),
title = "Wiadomość od ${message.senderName}",
@ -87,6 +88,7 @@ class SzkolnyAppFirebase(val app: App, val profiles: List<Profile>, val message:
}
EventBus.getDefault().postSticky(FeedbackMessageEvent(message))
}
}
private fun sharedEvent(teamCode: String, jsonStr: String, message: String) {
val json = JsonParser().parse(jsonStr).asJsonObject

View File

@ -70,10 +70,15 @@ class FeedbackFragment : Fragment(), CoroutineScope {
fun onFeedbackMessageEvent(event: FeedbackMessageEvent) {
EventBus.getDefault().removeStickyEvent(event)
val message = event.message
if (currentDeviceId != null && message.deviceId == currentDeviceId) {
val chatMessage = getChatMessage(message)
if (message.received) chatView.receive(chatMessage)
else chatView.send(chatMessage)
}
else {
Toast.makeText(context, "${message.senderName}: Nowa wiadomość w innym wątku.", Toast.LENGTH_LONG).show()
}
}
private val users = mutableMapOf(
0 to User(0, "Ja", null)