1 /*
2  * Copyright (C) 2023 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.settings.spa.about
18 
19 import android.os.Bundle
20 import androidx.compose.material.icons.Icons
21 import androidx.compose.material.icons.outlined.PermDeviceInformation
22 import androidx.compose.runtime.Composable
23 import androidx.compose.runtime.remember
24 import androidx.compose.ui.platform.LocalContext
25 import androidx.compose.ui.res.stringResource
26 import com.android.settings.R
27 import com.android.settingslib.spa.framework.common.SettingsEntryBuilder
28 import com.android.settingslib.spa.framework.common.SettingsPageProvider
29 import com.android.settingslib.spa.framework.common.SpaEnvironmentFactory
30 import com.android.settingslib.spa.framework.common.createSettingsPage
31 import com.android.settingslib.spa.framework.compose.navigator
32 import com.android.settingslib.spa.widget.preference.Preference
33 import com.android.settingslib.spa.widget.preference.PreferenceModel
34 import com.android.settingslib.spa.widget.scaffold.RegularScaffold
35 import com.android.settingslib.spa.widget.ui.SettingsIcon
36 
37 object AboutPhonePageProvider : SettingsPageProvider {
38     override val name = "AboutPhone"
39     private val owner = createSettingsPage()
40 
41     @Composable
Pagenull42     override fun Page(arguments: Bundle?) {
43         RegularScaffold(title = getTitle(arguments)) {
44             BasicInfoCategory.CategoryItems()
45         }
46     }
47 
getTitlenull48     override fun getTitle(arguments: Bundle?): String =
49         SpaEnvironmentFactory.instance.appContext.getString(R.string.about_settings)
50 
51     fun buildInjectEntry(): SettingsEntryBuilder {
52         return SettingsEntryBuilder.createInject(owner = owner)
53             .setUiLayoutFn {
54                 val context = LocalContext.current
55                 val deviceNamePresenter = remember { DeviceNamePresenter(context) }
56                 Preference(object : PreferenceModel {
57                     override val title = stringResource(R.string.about_settings)
58                     override val summary = { deviceNamePresenter.deviceName }
59                     override val onClick = navigator(name)
60                     override val icon = @Composable {
61                         SettingsIcon(imageVector = Icons.Outlined.PermDeviceInformation)
62                     }
63                 })
64             }
65     }
66 }