blob: 9dbec1037aa5c2fdeee9e8a502d6d8e764296bfe [file] [log] [blame]
package com.android.systemui.statusbar
import com.android.systemui.statusbar.notification.NotificationEntryManager
import com.android.systemui.statusbar.notification.collection.NotificationEntry
import com.android.systemui.statusbar.notification.collection.notifcollection.NotifCollectionListener
import javax.inject.Inject
import javax.inject.Singleton
/**
* Class to track user interaction with notifications. It's a glorified map of key : bool that can
* merge multiple "user interacted with notification" signals into a single place.
*/
@Singleton
class NotificationInteractionTracker @Inject constructor(
private val clicker: NotificationClickNotifier,
private val entryManager: NotificationEntryManager
) : NotifCollectionListener, NotificationInteractionListener {
private val interactions = mutableMapOf<String, Boolean>()
init {
clicker.addNotificationInteractionListener(this)
entryManager.addCollectionListener(this)
}
fun hasUserInteractedWith(key: String): Boolean {
return interactions[key] ?: false
}
override fun onEntryAdded(entry: NotificationEntry) {
interactions[entry.key] = false
}
override fun onEntryCleanUp(entry: NotificationEntry) {
interactions.remove(entry.key)
}
override fun onNotificationInteraction(key: String) {
interactions[key] = true
}
}
private const val TAG = "NotificationInteractionTracker"