• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
<lambda>null2  * Copyright (C) 2024 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.systemui.statusbar.pipeline.shared.domain.interactor
18 
19 import android.content.res.mainResources
20 import android.provider.Settings
21 import com.android.systemui.kosmos.Kosmos
22 import com.android.systemui.kosmos.testCase
23 import com.android.systemui.res.R
24 import com.android.systemui.shared.settings.data.repository.fakeSecureSettingsRepository
25 import com.android.systemui.shared.settings.data.repository.secureSettingsRepository
26 
27 val Kosmos.homeStatusBarIconBlockListInteractor by
28     Kosmos.Fixture { HomeStatusBarIconBlockListInteractor(mainResources, secureSettingsRepository) }
29 
30 /**
31  * [icons] can be a list of icons that should appear on the blocklist. Note that this should be
32  * called before instantiating your class dependent on this list, since it overrides resources and
33  * is not reactive to resource changes.
34  */
setHomeStatusBarIconBlockListnull35 suspend fun Kosmos.setHomeStatusBarIconBlockList(icons: List<String>) {
36     var volBlocked = false
37     val otherIcons = mutableListOf<String>()
38     icons.forEach { icon ->
39         if (icon.lowercase() == "volume") {
40             volBlocked = true
41         } else {
42             otherIcons.add(icon)
43         }
44     }
45 
46     fakeSecureSettingsRepository.setInt(
47         Settings.Secure.STATUS_BAR_SHOW_VIBRATE_ICON,
48         if (volBlocked) 0 else 1,
49     )
50 
51     testCase.overrideResource(
52         R.array.config_collapsed_statusbar_icon_blocklist,
53         otherIcons.toTypedArray(),
54     )
55 }
56