You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iceraven-browser/app/src/main/java/org/mozilla/fenix/addons/ExtensionsProcessDisabledFo...

109 lines
4.5 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.addons
import android.content.Context
import android.view.LayoutInflater
import android.widget.Button
import android.widget.TextView
import androidx.annotation.UiContext
import androidx.appcompat.app.AlertDialog
import androidx.lifecycle.LifecycleOwner
import mozilla.components.browser.state.action.ExtensionsProcessAction
import mozilla.components.browser.state.store.BrowserStore
import mozilla.components.support.ktx.android.content.appName
import mozilla.components.support.webextensions.ExtensionsProcessDisabledPromptObserver
import org.mozilla.fenix.R
import org.mozilla.fenix.components.AppStore
import org.mozilla.fenix.ext.components
/**
* Controller for handling extensions process spawning disabled events. When the app is in
* foreground this will call for a dialog to decide on correct action to take (retry enabling
* process spawning or disable extensions).
*
* @param context to show the AlertDialog
* @param browserStore The [BrowserStore] which holds the state for showing the dialog
* @param appStore The [AppStore] containing the application state
* @param builder to use for creating the dialog which can be styled as needed
* @param appName to be added to the message. Optional and mainly relevant for testing
*/
class ExtensionsProcessDisabledForegroundController(
@UiContext context: Context,
browserStore: BrowserStore = context.components.core.store,
appStore: AppStore = context.components.appStore,
builder: AlertDialog.Builder = AlertDialog.Builder(context),
appName: String = context.appName,
) : ExtensionsProcessDisabledPromptObserver(
store = browserStore,
shouldCancelOnStop = true,
{
if (appStore.state.isForeground) {
presentDialog(context, browserStore, builder, appName)
}
},
) {
override fun onDestroy(owner: LifecycleOwner) {
super.onDestroy(owner)
// In case the activity gets destroyed, we want to re-create the dialog.
shouldCreateDialog = true
}
companion object {
private var shouldCreateDialog: Boolean = true
/**
* Present a dialog to the user notifying of extensions process spawning disabled and also asking
* whether they would like to continue trying or disable extensions. If the user chooses to retry,
* enable the extensions process spawning. Otherwise, disable it.
*
* @param context to show the AlertDialog
* @param store The [BrowserStore] which holds the state for showing the dialog
* @param builder to use for creating the dialog which can be styled as needed
* @param appName to be added to the message. Necessary to be added as a param for testing
*/
private fun presentDialog(
@UiContext context: Context,
store: BrowserStore,
builder: AlertDialog.Builder,
appName: String,
) {
if (!shouldCreateDialog) {
return
}
val message = context.getString(R.string.addon_process_crash_dialog_message, appName)
var onDismissDialog: (() -> Unit)? = null
val layout = LayoutInflater.from(context)
.inflate(R.layout.crash_extension_dialog, null, false)
layout?.apply {
findViewById<TextView>(R.id.message)?.text = message
findViewById<Button>(R.id.positive)?.setOnClickListener {
store.dispatch(ExtensionsProcessAction.ShowPromptAction(false))
store.dispatch(ExtensionsProcessAction.EnabledAction)
onDismissDialog?.invoke()
}
findViewById<Button>(R.id.negative)?.setOnClickListener {
store.dispatch(ExtensionsProcessAction.ShowPromptAction(false))
store.dispatch(ExtensionsProcessAction.DisabledAction)
onDismissDialog?.invoke()
}
}
builder.apply {
setCancelable(false)
setView(layout)
setTitle(R.string.addon_process_crash_dialog_title)
}
val dialog = builder.show()
shouldCreateDialog = false
onDismissDialog = {
dialog?.dismiss()
shouldCreateDialog = true
}
}
}
}