/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package org.mozilla.fenix.components.metrics import mozilla.components.lib.state.Middleware import mozilla.components.lib.state.MiddlewareContext import org.mozilla.fenix.components.appstate.AppAction import org.mozilla.fenix.components.appstate.AppState /** * A middleware that will map incoming actions to relevant events for [metrics]. */ class MetricsMiddleware( private val metrics: MetricController, ) : Middleware { override fun invoke( context: MiddlewareContext, next: (AppAction) -> Unit, action: AppAction, ) { handleAction(action) next(action) } private fun handleAction(action: AppAction) = when (action) { is AppAction.ResumedMetricsAction -> { metrics.track(Event.GrowthData.SetAsDefault) metrics.track(Event.GrowthData.FirstWeekSeriesActivity) metrics.track(Event.GrowthData.UsageThreshold) } else -> Unit } }