blob: 67a26db2fee8a38170a72ccb84a2de231c5458bb [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.deskclock.events
import android.annotation.TargetApi
import android.content.Context
import android.content.pm.ShortcutManager
import android.os.Build
import android.util.ArraySet
import androidx.annotation.StringRes
import com.android.deskclock.R
import com.android.deskclock.uidata.UiDataModel
@TargetApi(Build.VERSION_CODES.N_MR1)
class ShortcutEventTracker(context: Context) : EventTracker {
private val mShortcutManager: ShortcutManager = context.getSystemService(ShortcutManager::class.java)
private val shortcuts: MutableSet<String> = ArraySet(5)
init {
val uidm = UiDataModel.getUiDataModel()
shortcuts.add(uidm.getShortcutId(R.string.category_alarm, R.string.action_create))
shortcuts.add(uidm.getShortcutId(R.string.category_timer, R.string.action_create))
shortcuts.add(uidm.getShortcutId(R.string.category_stopwatch, R.string.action_pause))
shortcuts.add(uidm.getShortcutId(R.string.category_stopwatch, R.string.action_start))
shortcuts.add(uidm.getShortcutId(R.string.category_screensaver, R.string.action_show))
}
override fun sendEvent(@StringRes category: Int, @StringRes action: Int, @StringRes label: Int) {
val shortcutId = UiDataModel.getUiDataModel().getShortcutId(category, action)
if (shortcuts.contains(shortcutId)) {
mShortcutManager.reportShortcutUsed(shortcutId)
}
}
}