mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-06 02:46:57 +00:00
Deprecates the preference rules. Flag: TEST_ONLY Test: go/testedequals Bug: 230027385 Change-Id: Ic3a9e589b556232d196942d687e2e2bddc000877
50 lines
1.8 KiB
Kotlin
50 lines
1.8 KiB
Kotlin
/*
|
|
* Copyright (C) 2024 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.launcher3.taskbar
|
|
|
|
import android.content.Context
|
|
import androidx.test.platform.app.InstrumentationRegistry.getInstrumentation
|
|
import com.android.launcher3.ConstantItem
|
|
import com.android.launcher3.LauncherPrefs
|
|
import kotlin.properties.ReadWriteProperty
|
|
import kotlin.reflect.KProperty
|
|
|
|
object TaskbarControllerTestUtil {
|
|
inline fun runOnMainSync(crossinline runTest: () -> Unit) {
|
|
getInstrumentation().runOnMainSync { runTest() }
|
|
}
|
|
|
|
/** Returns a property to read/write the value of a [ConstantItem]. */
|
|
fun <T : Any> ConstantItem<T>.asProperty(context: Context): ReadWriteProperty<Any?, T> {
|
|
return TaskbarItemProperty(context, this)
|
|
}
|
|
|
|
private class TaskbarItemProperty<T : Any>(
|
|
private val context: Context,
|
|
private val item: ConstantItem<T>,
|
|
) : ReadWriteProperty<Any?, T> {
|
|
|
|
override fun getValue(thisRef: Any?, property: KProperty<*>): T {
|
|
return LauncherPrefs.get(context).get(item)
|
|
}
|
|
|
|
override fun setValue(thisRef: Any?, property: KProperty<*>, value: T) {
|
|
runOnMainSync { LauncherPrefs.get(context).put(item, value) }
|
|
}
|
|
}
|
|
}
|