Skip to content

Commit 1abac1b

Browse files
committed
Apply code review suggestions to 90 day payment
1 parent bf73668 commit 1abac1b

9 files changed

+7
-17
lines changed

ios/MullvadVPN.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3139,7 +3139,6 @@
31393139
583FE02329C1AC9F006E85F9 /* Extensions */ = {
31403140
isa = PBXGroup;
31413141
children = (
3142-
F998EFF92D3656B100D88D01 /* SKProduct+Sorting.swift */,
31433142
5891BF1B25E3E3EB006D6FB0 /* Bundle+ProductVersion.swift */,
31443143
F06200092CB7EB42002E6DB9 /* CGSize+Helpers.swift */,
31453144
587EB669270EFACB00123C75 /* CharacterSet+IPAddress.swift */,
@@ -3156,6 +3155,7 @@
31563155
58B9EB142489139B00095626 /* RESTError+Display.swift */,
31573156
58A8EE592976BFBB009C0F8D /* SKError+Localized.swift */,
31583157
58FD5BEF24238EB300112C88 /* SKProduct+Formatting.swift */,
3158+
F998EFF92D3656B100D88D01 /* SKProduct+Sorting.swift */,
31593159
58A8EE5D2976DB00009C0F8D /* StorePaymentManagerError+Display.swift */,
31603160
E158B35F285381C60002F069 /* String+AccountFormatting.swift */,
31613161
7A09C98029D99215000C2CAC /* String+FuzzyMatch.swift */,

ios/MullvadVPN/Coordinators/AccountCoordinator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ final class AccountCoordinator: Coordinator, Presentable, Presenting, @unchecked
8585
didRequestPurchase: @escaping (_ product: SKProduct) -> Void
8686
) {
8787
let localizedString = NSLocalizedString(
88-
"BUY_CREDIT_BUTTON",
88+
"ADD_TIME",
8989
tableName: "Welcome",
9090
value: "Add Time",
9191
comment: ""

ios/MullvadVPN/Coordinators/OutOfTimeCoordinator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class OutOfTimeCoordinator: Coordinator, Presenting, @preconcurrency OutOfTimeVi
9090
didRequestPurchase: @escaping (SKProduct) -> Void
9191
) {
9292
let localizedString = NSLocalizedString(
93-
"BUY_CREDIT_BUTTON",
93+
"ADD_TIME_BUTTON",
9494
tableName: "Welcome",
9595
value: "Add Time",
9696
comment: ""

ios/MullvadVPN/Coordinators/WelcomeCoordinator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ extension WelcomeCoordinator: @preconcurrency WelcomeViewControllerDelegate {
156156
accountNumber: String
157157
) {
158158
let localizedString = NSLocalizedString(
159-
"BUY_CREDIT_BUTTON",
159+
"ADD_TIME_BUTTON",
160160
tableName: "Welcome",
161161
value: "Add Time",
162162
comment: ""

ios/MullvadVPN/View controllers/Account/AccountViewController.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ class AccountViewController: UIViewController, @unchecked Sendable {
196196
activityIndicator.stopAnimating()
197197
}
198198

199-
// purchaseButton.setTitle(productState.purchaseButtonTitle, for: .normal)
200199
contentView.purchaseButton.isLoading = isFetchingProducts
201200

202201
purchaseButton.isEnabled = !isFetchingProducts && isInteractionEnabled
@@ -322,7 +321,7 @@ class AccountViewController: UIViewController, @unchecked Sendable {
322321
return
323322
}
324323

325-
let productIdentifiers = Set(StoreSubscription.allCases).map { $0.rawValue }
324+
let productIdentifiers = StoreSubscription.allCases.map { $0.rawValue }
326325

327326
setPaymentState(.makingStoreKit2Purchase, animated: true)
328327

ios/MullvadVPN/View controllers/CreationAccount/Welcome/WelcomeContentView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ final class WelcomeContentView: UIView, Sendable {
110110
let button = InAppPurchaseButton()
111111
button.setAccessibilityIdentifier(.purchaseButton)
112112
let localizedString = NSLocalizedString(
113-
"BUY_CREDIT_BUTTON",
113+
"ADD_TIME_BUTTON",
114114
tableName: "Welcome",
115115
value: "Add time",
116116
comment: ""

ios/MullvadVPN/View controllers/CreationAccount/Welcome/WelcomeInteractor.swift

-8
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,6 @@ final class WelcomeInteractor: @unchecked Sendable {
2525

2626
var didAddMoreCredit: (() -> Void)?
2727

28-
var viewDidLoad = false {
29-
didSet {
30-
guard viewDidLoad else { return }
31-
// Might trigger a popup without user interaction do we want that?
32-
// requestAccessToStore()
33-
}
34-
}
35-
3628
var viewWillAppear = false {
3729
didSet {
3830
guard viewWillAppear else { return }

ios/MullvadVPN/View controllers/CreationAccount/Welcome/WelcomeViewController.swift

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ class WelcomeViewController: UIViewController, RootContainment {
6464
super.viewDidLoad()
6565
configureUI()
6666
contentView.viewModel = interactor.viewModel
67-
interactor.viewDidLoad = true
6867
}
6968

7069
override func viewWillAppear(_ animated: Bool) {

ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class OutOfTimeViewController: UIViewController, RootContainment {
226226
// MARK: - Actions
227227

228228
@objc private func requestStoreProducts() {
229-
guard let accountData = interactor.deviceState.accountData else {
229+
guard interactor.deviceState.accountData != nil else {
230230
return
231231
}
232232
let productIdentifiers = Set(StoreSubscription.allCases)

0 commit comments

Comments
 (0)