/* 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.settings.sitepermissions import android.os.Bundle import androidx.appcompat.app.AppCompatActivity import androidx.navigation.Navigation import androidx.preference.Preference import androidx.preference.Preference.OnPreferenceClickListener import androidx.preference.PreferenceFragmentCompat import org.mozilla.fenix.R import org.mozilla.fenix.ext.getPreferenceKey import org.mozilla.fenix.ext.settings import org.mozilla.fenix.settings.PhoneFeature @SuppressWarnings("TooManyFunctions") class SitePermissionsFragment : PreferenceFragmentCompat() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) (activity as AppCompatActivity).title = getString(R.string.preferences_site_permissions) (activity as AppCompatActivity).supportActionBar?.show() } override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) { setPreferencesFromResource(R.xml.site_permissions_preferences, rootKey) } override fun onResume() { super.onResume() setupPreferences() } private fun setupPreferences() { bindCategoryPhoneFeatures() bindExceptions() } private fun bindExceptions() { val keyExceptions = getPreferenceKey(R.string.pref_key_show_site_exceptions) val exceptionsCategory = requireNotNull(findPreference(keyExceptions)) exceptionsCategory.onPreferenceClickListener = OnPreferenceClickListener { val directions = SitePermissionsFragmentDirections.actionSitePermissionsToExceptions() Navigation.findNavController(view!!).navigate(directions) true } } private fun bindCategoryPhoneFeatures() { PhoneFeature.values().forEach(::initPhoneFeature) } private fun initPhoneFeature(phoneFeature: PhoneFeature) { val context = requireContext() val settings = context.settings() val summary = phoneFeature.getActionLabel(context, settings = settings) val preferenceKey = phoneFeature.getPreferenceKey(context) val cameraPhoneFeatures: Preference = requireNotNull(findPreference(preferenceKey)) cameraPhoneFeatures.summary = summary cameraPhoneFeatures.onPreferenceClickListener = OnPreferenceClickListener { navigateToPhoneFeature(phoneFeature) true } } private fun navigateToPhoneFeature(phoneFeature: PhoneFeature) { val directions = SitePermissionsFragmentDirections .actionSitePermissionsToManagePhoneFeatures(phoneFeature.id) Navigation.findNavController(view!!).navigate(directions) } }