This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
309 additions
and
1 deletion.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
app/src/main/java/org/mozilla/fenix/cfr/SearchWidgetCFR.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
/* 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.cfr | ||
|
||
import android.app.Dialog | ||
import android.content.Context | ||
import android.graphics.Color | ||
import android.graphics.drawable.ColorDrawable | ||
import android.view.Gravity | ||
import android.view.LayoutInflater | ||
import android.view.View | ||
import androidx.core.view.isGone | ||
import androidx.core.view.isVisible | ||
import androidx.core.view.marginTop | ||
import kotlinx.android.synthetic.main.search_widget_cfr.view.* | ||
import kotlinx.android.synthetic.main.tracking_protection_onboarding_popup.view.drop_down_triangle | ||
import kotlinx.android.synthetic.main.tracking_protection_onboarding_popup.view.pop_up_triangle | ||
import org.mozilla.fenix.R | ||
import org.mozilla.fenix.components.SearchWidgetCreator | ||
import org.mozilla.fenix.ext.settings | ||
import org.mozilla.fenix.utils.Settings | ||
|
||
/** | ||
* Displays a CFR above the HomeFragment toolbar that recommends usage / installation of the search widget. | ||
*/ | ||
class SearchWidgetCFR( | ||
private val context: Context, | ||
private val getToolbar: () -> View | ||
) { | ||
|
||
// TODO: Based on pref && is in the bucket...? | ||
fun displayIfNecessary() { | ||
if (!context.settings().shouldDisplaySearchWidgetCFR()) { return } | ||
showSearchWidgetCFR() | ||
} | ||
|
||
@Suppress("MagicNumber", "InflateParams") | ||
private fun showSearchWidgetCFR() { | ||
context.settings().incrementSearchWidgetCFRDisplayed() | ||
|
||
val searchWidgetCFRDialog = Dialog(context) | ||
val layout = LayoutInflater.from(context) | ||
.inflate(R.layout.search_widget_cfr, null) | ||
val isBottomToolbar = Settings.getInstance(context).shouldUseBottomToolbar | ||
|
||
layout.drop_down_triangle.isGone = isBottomToolbar | ||
layout.pop_up_triangle.isVisible = isBottomToolbar | ||
|
||
val toolbar = getToolbar() | ||
|
||
val gravity = if (isBottomToolbar) { | ||
Gravity.CENTER_HORIZONTAL or Gravity.BOTTOM | ||
} else { | ||
Gravity.CENTER_HORIZONTAL or Gravity.TOP | ||
} | ||
|
||
layout.cfr_neg_button.setOnClickListener { | ||
searchWidgetCFRDialog.dismiss() | ||
context.settings().manuallyDismissSearchWidgetCFR() | ||
} | ||
|
||
layout.cfr_pos_button.setOnClickListener { | ||
//context.components.analytics.metrics.track(Event.) | ||
SearchWidgetCreator.createSearchWidget(context) | ||
searchWidgetCFRDialog.dismiss() | ||
//context.settings().manuallyDismissSearchWidgetCFR() | ||
} | ||
|
||
searchWidgetCFRDialog.apply { | ||
setContentView(layout) | ||
} | ||
|
||
searchWidgetCFRDialog.window?.let { | ||
it.setGravity(gravity) | ||
val attr = it.attributes | ||
attr.y = | ||
(toolbar.y + toolbar.height - toolbar.marginTop - toolbar.paddingTop).toInt() | ||
it.attributes = attr | ||
it.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT)) | ||
} | ||
|
||
searchWidgetCFRDialog.setOnDismissListener { | ||
context.settings().incrementSearchWidgetCFRDismissed() | ||
} | ||
|
||
searchWidgetCFRDialog.show() | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
app/src/main/java/org/mozilla/fenix/components/SearchWidgetCreator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* 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.components | ||
|
||
import android.annotation.TargetApi | ||
import android.appwidget.AppWidgetManager | ||
import android.content.ComponentName | ||
import android.content.Context | ||
import android.os.Build | ||
import org.mozilla.gecko.search.SearchWidgetProvider | ||
|
||
/** | ||
* Handles the creation of search widget. | ||
*/ | ||
object SearchWidgetCreator { | ||
|
||
/** | ||
* Attempts to display a prompt requesting the user pin the search widget | ||
* Returns true if the prompt is displayed successfully, and false otherwise. | ||
*/ | ||
@TargetApi(Build.VERSION_CODES.O) | ||
fun createSearchWidget(context: Context): Boolean { | ||
val appWidgetManager: AppWidgetManager = context.getSystemService(AppWidgetManager::class.java) | ||
if (!appWidgetManager.isRequestPinAppWidgetSupported) { return false } | ||
|
||
val myProvider = ComponentName(context, SearchWidgetProvider::class.java) | ||
appWidgetManager.requestPinAppWidget(myProvider, null, null) | ||
|
||
return true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- 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/. --> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_gravity="center_horizontal" | ||
android:paddingHorizontal="16dp" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:orientation="vertical"> | ||
|
||
<androidx.appcompat.widget.AppCompatImageView | ||
android:visibility="gone" | ||
android:id="@+id/drop_down_triangle" | ||
android:layout_width="@dimen/tp_onboarding_triangle_width" | ||
android:layout_height="@dimen/tp_onboarding_triangle_height" | ||
android:importantForAccessibility="no" | ||
android:rotation="0" | ||
app:srcCompat="@drawable/ic_pbm_triangle" | ||
android:layout_gravity="center" /> | ||
|
||
<androidx.constraintlayout.widget.ConstraintLayout | ||
android:id="@+id/message" | ||
android:layout_width="@dimen/etp_onboarding_popup_width" | ||
android:layout_height="wrap_content" | ||
android:background="@drawable/cfr_background_gradient" | ||
app:layout_constraintTop_toTopOf="parent"> | ||
|
||
<androidx.appcompat.widget.AppCompatImageView | ||
android:id="@+id/cfr_image" | ||
app:srcCompat="@drawable/search_widget_illustration" | ||
android:padding="16dp" | ||
android:scaleType="fitCenter" | ||
android:layout_width="0dp" | ||
android:layout_height="140dp" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent"/> | ||
|
||
<TextView | ||
android:id="@+id/cfr_message" | ||
android:layout_width="0dp" | ||
android:layout_height="wrap_content" | ||
android:layout_marginHorizontal="16dp" | ||
android:layout_marginTop="8dp" | ||
android:layout_marginBottom="8dp" | ||
android:lineSpacingExtra="2dp" | ||
android:text="@string/search_widget_cfr_message" | ||
android:textColor="@color/primary_text_dark_theme" | ||
android:textSize="16sp" | ||
app:fontFamily="@font/metropolis_medium" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@id/cfr_image" /> | ||
|
||
|
||
<Button | ||
android:id="@+id/cfr_pos_button" | ||
style="@style/MetropolisButton" | ||
android:layout_width="0dp" | ||
android:layout_height="36dp" | ||
android:layout_marginStart="16dp" | ||
android:layout_marginTop="16dp" | ||
android:layout_marginEnd="16dp" | ||
android:background="@drawable/rounded_gray_corners" | ||
android:text="@string/search_widget_cfr_pos_button_text" | ||
android:textAllCaps="false" | ||
android:textColor="@color/above_dark_theme" | ||
android:textSize="16sp" | ||
app:layout_constraintBottom_toTopOf="@id/cfr_neg_button" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@id/cfr_message" /> | ||
|
||
<Button | ||
android:id="@+id/cfr_neg_button" | ||
style="@style/MetropolisButton" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:background="@android:color/transparent" | ||
android:text="@string/search_widget_cfr_neg_button_text" | ||
android:textAllCaps="false" | ||
android:textColor="@color/white_color" | ||
android:textSize="16sp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@id/cfr_pos_button" /> | ||
</androidx.constraintlayout.widget.ConstraintLayout> | ||
|
||
<androidx.appcompat.widget.AppCompatImageView | ||
android:id="@+id/pop_up_triangle" | ||
android:layout_width="16dp" | ||
android:layout_height="@dimen/tp_onboarding_triangle_height" | ||
android:importantForAccessibility="no" | ||
android:rotation="180" | ||
app:srcCompat="@drawable/ic_pbm_triangle" | ||
android:layout_gravity="center" /> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters