Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix#7792: Add cookie consent notice popup (#7890)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuba authored Aug 18, 2023
1 parent 12fe7ab commit ec757aa
Show file tree
Hide file tree
Showing 14 changed files with 230 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ extension BrowserViewController {
presentDefaultBrowserScreenCallout()
case .rewards:
presentBraveRewardsScreenCallout(skipSafeGuards: skipSafeGuards)
case .blockCookieConsentNotices:
presentCookieNotificationBlockingCallout(skipSafeGuards: skipSafeGuards)
case .vpnPromotion:
presentVPNPromotionCallout(skipSafeGuards: skipSafeGuards)
case .vpnLinkReceipt:
Expand Down Expand Up @@ -181,6 +183,25 @@ extension BrowserViewController {
present(controller, animated: true)
}

private func presentCookieNotificationBlockingCallout(skipSafeGuards: Bool = false) {
if !skipSafeGuards {
// Show Cookie Block Callout if setting is enabled and on second launch
// After Basic onboarding is shown
guard FilterListStorage.shared.isEnabled(for: FilterList.cookieConsentNoticesComponentID),
Preferences.FullScreenCallout.omniboxCalloutCompleted.value else {
return
}
}

let popover = PopoverController(
contentController: CookieNotificationBlockingConsentViewController(),
contentSizeBehavior: .preferredContentSize)
popover.addsConvenientDismissalMargins = false

isOnboardingOrFullScreenCalloutPresented = true
popover.present(from: topToolbar.locationView.shieldsButton, on: self)
}

private func presentVPNPromotionCallout(skipSafeGuards: Bool = false) {
if !skipSafeGuards {
// Onboarding should be completed to show callouts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,14 @@ class RetentionPreferencesDebugMenuViewController: TableViewController {
}
},
cellReuseId: "DefaultBrowserCalloutCell"),
.boolRow(
title: "Cookie consent notice blocking callout shown",
detailText: "Flag determining if callout to show the cookie consent blocking callout was shown",
toggleValue: Preferences.FullScreenCallout.blockCookieConsentNoticesCalloutCompleted.value,
valueChange: {
Preferences.FullScreenCallout.blockCookieConsentNoticesCalloutCompleted.value = $0
},
cellReuseId: "CookieConsentNoticeBlockingCalloutCell"),
],
footer: .title("These are the preferences that stored in preferences for determining the If certain elements are shown to user.")
)
Expand Down
28 changes: 26 additions & 2 deletions Sources/BraveStrings/BraveStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4724,12 +4724,36 @@ extension Strings {

// MARK: - Cookie consent notices
extension Strings {
/// A title for a popup that notifies the user that we can block cookie consent notices
/// A title for a setting that enables cookie consent notices
public static let blockCookieConsentNotices = NSLocalizedString(
"BlockCookieConsentNotices",
tableName: "BraveShared", bundle: .module,
value: "Block Cookie Consent Notices",
comment: "A title for a toggle that allows user to block cookie consent notices"
comment: "A title for a setting that enables cookie consent notices"
)

/// A title for a popup that informs the user that brave is blocking cookie consent notices
public static let blockCookieConsentNoticesPopupTitle = NSLocalizedString(
"BlockCookieConsentNoticesPopupTitle",
tableName: "BraveShared", bundle: .module,
value: "Brave is blocking cookie consent notices",
comment: "A title for a popup that informs the user that brave is blocking cookie consent notices"
)

/// A title for a popup that informs the user that brave is blocking cookie consent notices
public static let blockCookieConsentNoticesPopupDescription = NSLocalizedString(
"BlockCookieConsentNoticesPopupDescription",
tableName: "BraveShared", bundle: .module,
value: "Brave already blocks harmful cookies. Now, we automatically block those annoying cookie consent notices, too.",
comment: "A description of why we are blocking cookie consent notices found on the cookie consent blocking popup"
)

/// A title for a button that dismisses the popup informing a use that brave is blocking cookie consent notices
public static let blockCookieConsentNoticesDismissButtonTitle = NSLocalizedString(
"BlockCookieConsentNoticesDismissButtonTitle",
tableName: "BraveShared", bundle: .module,
value: "Got it",
comment: "A title for a button that dismisses the popup informing a use that brave is blocking cookie consent notices"
)
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"filename" : "[email protected]",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"template-rendering-intent" : "original"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "cookie.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.
5 changes: 5 additions & 0 deletions Sources/Onboarding/OnboardingPreferences.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ extension Preferences {

extension Preferences {
public final class FullScreenCallout {
/// Whether the block cookie consent notices callout is shown.
public static let blockCookieConsentNoticesCalloutCompleted = Option<Bool>(
key: "fullScreenCallout.full-screen-cookie-consent-notices-callout-completed",
default: false)

/// Whether the bottom bar callout is shown.
public static let bottomBarCalloutCompleted = Option<Bool>(
key: "fullScreenCallout.full-screen-bottom-bar-callout-completed",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
// Copyright 2023 The Brave Authors. All rights reserved.
// 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 https://mozilla.org/MPL/2.0/.

import SwiftUI
import Strings
import DesignSystem
import BraveShared
import Growth
import BraveUI

public struct CookieNotificationBlockingConsentView: View {
public static let contentHeight = 400.0
public static let contentWidth = 344.0
private static let textPadding = 24.0
@Environment(\.presentationMode) @Binding private var presentationMode

public var body: some View {
ScrollView {
VStack(alignment: .center, spacing: 48) {
VStack(alignment: .center, spacing: Self.textPadding) {
Image("cookie-consent-icon", bundle: .module)
.resizable()
.frame(width: 48, height: 48)

Text(Strings.blockCookieConsentNoticesPopupTitle).font(.title)
Text(Strings.blockCookieConsentNoticesPopupDescription).font(.body)
}
.padding(Self.textPadding)
.foregroundColor(Color(UIColor.braveLabel))
.multilineTextAlignment(.center)
.fixedSize(horizontal: false, vertical: true)

Button(Strings.blockCookieConsentNoticesDismissButtonTitle,
action: {
presentationMode.dismiss()
}
)
.buttonStyle(BraveFilledButtonStyle(size: .large))
.multilineTextAlignment(.center)
}
}
.frame(width: Self.contentWidth, height: Self.contentHeight)
.background(
Image("cookie-consent-background", bundle: .module),
alignment: .bottomLeading
)
.background(Color(UIColor.braveBackground))
.onAppear {
recordCookieListPromptP3A(answer: .seen)
}
}

private enum P3AAnswer: Int, CaseIterable {
case seen = 1
}

private func recordCookieListPromptP3A(answer: P3AAnswer) {
// Q68 If you have viewed the cookie consent block prompt, how did you react?
UmaHistogramEnumeration("Brave.Shields.CookieListPrompt", sample: answer)
}
}

#if DEBUG
struct CookieNotificationBlockingConsentView_Previews: PreviewProvider {
static var previews: some View {
CookieNotificationBlockingConsentView()
}
}
#endif

public class CookieNotificationBlockingConsentViewController: UIHostingController<CookieNotificationBlockingConsentView>, PopoverContentComponent {
public init() {
super.init(rootView: CookieNotificationBlockingConsentView())

self.preferredContentSize = CGSize(
width: CookieNotificationBlockingConsentView.contentWidth,
height: CookieNotificationBlockingConsentView.contentHeight
)
}

required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

public override func viewDidLoad() {
super.viewDidLoad()
view.backgroundColor = UIColor.braveBackground
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public enum FullScreenCalloutType: CaseIterable {
- Cookie Notification
- VPN Link Receipt
*/
case p3a, vpnUpdateBilling, bottomBar, vpnPromotion, defaultBrowser, rewards, vpnLinkReceipt
case p3a, vpnUpdateBilling, bottomBar, vpnPromotion, defaultBrowser, rewards, blockCookieConsentNotices, vpnLinkReceipt

/// The number of days passed to show certain type of callout
var period: Int {
Expand All @@ -33,6 +33,7 @@ public enum FullScreenCalloutType: CaseIterable {
case .vpnPromotion: return 4
case .defaultBrowser: return 10
case .rewards: return 8
case .blockCookieConsentNotices: return 0
case .vpnLinkReceipt: return 0
}
}
Expand All @@ -52,6 +53,8 @@ public enum FullScreenCalloutType: CaseIterable {
return Preferences.DefaultBrowserIntro.completed
case .rewards:
return Preferences.FullScreenCallout.rewardsCalloutCompleted
case .blockCookieConsentNotices:
return Preferences.FullScreenCallout.blockCookieConsentNoticesCalloutCompleted
case .vpnLinkReceipt:
return Preferences.Onboarding.vpnLinkReceiptShown
}
Expand Down

0 comments on commit ec757aa

Please sign in to comment.