1
0
Fork 0
fenix/app/src/main/java/org/mozilla/fenix/trackingprotection/TrackingProtectionBlockingF...

51 lines
1.8 KiB
Kotlin

/* 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.trackingprotection
import android.os.Bundle
import android.view.View
import androidx.core.view.isVisible
import androidx.fragment.app.Fragment
import androidx.navigation.fragment.navArgs
import kotlinx.android.synthetic.main.fragment_tracking_protection_blocking.*
import org.mozilla.fenix.R
import org.mozilla.fenix.ext.settings
import org.mozilla.fenix.ext.showToolbar
class TrackingProtectionBlockingFragment :
Fragment(R.layout.fragment_tracking_protection_blocking) {
private val args: TrackingProtectionBlockingFragmentArgs by navArgs()
private val settings by lazy { requireContext().settings() }
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
when (args.protectionMode) {
TrackingProtectionMode.STANDARD -> {
category_tracking_content.isVisible = false
}
TrackingProtectionMode.STRICT -> {}
TrackingProtectionMode.CUSTOM -> {
category_fingerprinters.isVisible =
settings.blockFingerprintersInCustomTrackingProtection
category_cryptominers.isVisible =
settings.blockCryptominersInCustomTrackingProtection
category_cookies.isVisible =
settings.blockCookiesInCustomTrackingProtection
category_tracking_content.isVisible =
settings.blockTrackingContentInCustomTrackingProtection
}
}
}
override fun onResume() {
super.onResume()
showToolbar(getString(args.protectionMode.titleRes))
}
}