Clear alerts if user sign out
This commit is contained in:
parent
f68eb449bd
commit
95142274fa
|
@ -32,6 +32,7 @@ Bugfix 🐛:
|
||||||
- Properly detect cross signing keys reset
|
- Properly detect cross signing keys reset
|
||||||
- Don't set presence when handling a push notification or polling (#2156)
|
- Don't set presence when handling a push notification or polling (#2156)
|
||||||
- Be robust against `StrandHogg` task injection
|
- Be robust against `StrandHogg` task injection
|
||||||
|
- Clear alerts if user sign out
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
- Move store data to `/fastlane/metadata/android` (#812)
|
- Move store data to `/fastlane/metadata/android` (#812)
|
||||||
|
|
|
@ -36,6 +36,7 @@ import im.vector.app.features.notifications.NotificationDrawerManager
|
||||||
import im.vector.app.features.pin.PinCodeStore
|
import im.vector.app.features.pin.PinCodeStore
|
||||||
import im.vector.app.features.pin.PinLocker
|
import im.vector.app.features.pin.PinLocker
|
||||||
import im.vector.app.features.pin.UnlockedActivity
|
import im.vector.app.features.pin.UnlockedActivity
|
||||||
|
import im.vector.app.features.popup.PopupAlertManager
|
||||||
import im.vector.app.features.settings.VectorPreferences
|
import im.vector.app.features.settings.VectorPreferences
|
||||||
import im.vector.app.features.signout.hard.SignedOutActivity
|
import im.vector.app.features.signout.hard.SignedOutActivity
|
||||||
import im.vector.app.features.signout.soft.SoftLogoutActivity
|
import im.vector.app.features.signout.soft.SoftLogoutActivity
|
||||||
|
@ -89,6 +90,7 @@ class MainActivity : VectorBaseActivity(), UnlockedActivity {
|
||||||
@Inject lateinit var shortcutsHandler: ShortcutsHandler
|
@Inject lateinit var shortcutsHandler: ShortcutsHandler
|
||||||
@Inject lateinit var pinCodeStore: PinCodeStore
|
@Inject lateinit var pinCodeStore: PinCodeStore
|
||||||
@Inject lateinit var pinLocker: PinLocker
|
@Inject lateinit var pinLocker: PinLocker
|
||||||
|
@Inject lateinit var popupAlertManager: PopupAlertManager
|
||||||
|
|
||||||
override fun injectWith(injector: ScreenComponent) {
|
override fun injectWith(injector: ScreenComponent) {
|
||||||
injector.inject(this)
|
injector.inject(this)
|
||||||
|
@ -115,6 +117,9 @@ class MainActivity : VectorBaseActivity(), UnlockedActivity {
|
||||||
|
|
||||||
// Also clear the dynamic shortcuts
|
// Also clear the dynamic shortcuts
|
||||||
shortcutsHandler.clearShortcuts()
|
shortcutsHandler.clearShortcuts()
|
||||||
|
|
||||||
|
// Also clear the alerts
|
||||||
|
popupAlertManager.cancelAll()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun parseArgs(): MainActivityArgs {
|
private fun parseArgs(): MainActivityArgs {
|
||||||
|
|
|
@ -78,6 +78,21 @@ class PopupAlertManager @Inject constructor(private val avatarRenderer: Lazy<Ava
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cancel all alerts, after a sign out for instance
|
||||||
|
*/
|
||||||
|
fun cancelAll() {
|
||||||
|
synchronized(alertFiFo) {
|
||||||
|
alertFiFo.clear()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cancel any displayed alert
|
||||||
|
weakCurrentActivity?.get()?.runOnUiThread {
|
||||||
|
Alerter.hide()
|
||||||
|
currentIsDismissed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun onNewActivityDisplayed(activity: Activity) {
|
fun onNewActivityDisplayed(activity: Activity) {
|
||||||
// we want to remove existing popup on previous activity and display it on new one
|
// we want to remove existing popup on previous activity and display it on new one
|
||||||
if (currentAlerter != null) {
|
if (currentAlerter != null) {
|
||||||
|
|
Loading…
Reference in New Issue