Skip to content

Commit 4c0a385

Browse files
committed
Revert "Migrate CBC to CardEditUIHandler"
This reverts commit 918bf9a.
1 parent 918bf9a commit 4c0a385

17 files changed

+668
-733
lines changed

paymentsheet/src/main/java/com/stripe/android/customersheet/CustomerSheetViewModel.kt

+8-7
Original file line numberDiff line numberDiff line change
@@ -544,14 +544,21 @@ internal class CustomerSheetViewModel(
544544

545545
transition(
546546
to = CustomerSheetViewState.UpdatePaymentMethod(
547-
updatePaymentMethodInteractor = DefaultUpdatePaymentMethodInteractor.factory(
547+
updatePaymentMethodInteractor = DefaultUpdatePaymentMethodInteractor(
548548
isLiveMode = isLiveModeProvider(),
549549
canRemove = customerState.canRemove,
550550
displayableSavedPaymentMethod = paymentMethod,
551551
cardBrandFilter = PaymentSheetCardBrandFilter(customerState.configuration.cardBrandAcceptance),
552552
removeExecutor = ::removeExecutor,
553+
onBrandChoiceSelected = { brand ->
554+
eventReporter.onBrandChoiceSelected(
555+
source = CustomerSheetEventReporter.CardBrandChoiceEventSource.Edit,
556+
selectedBrand = brand
557+
)
558+
},
553559
onUpdateSuccess = ::onBackPressed,
554560
updatePaymentMethodExecutor = ::updatePaymentMethodExecutor,
561+
workContext = workContext,
555562
// This checkbox is never displayed in CustomerSheet.
556563
shouldShowSetAsDefaultCheckbox = false,
557564
isDefaultPaymentMethod = false,
@@ -561,12 +568,6 @@ internal class CustomerSheetViewModel(
561568
IllegalStateException("Unexpected attempt to update default from CustomerSheet.")
562569
)
563570
},
564-
onBrandChoiceSelected = { brand ->
565-
eventReporter.onBrandChoiceSelected(
566-
source = CustomerSheetEventReporter.CardBrandChoiceEventSource.Edit,
567-
selectedBrand = brand
568-
)
569-
}
570571
),
571572
isLiveMode = isLiveModeProvider(),
572573
)

paymentsheet/src/main/java/com/stripe/android/paymentelement/embedded/manage/EmbeddedUpdateScreenInteractorFactory.kt

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal class DefaultEmbeddedUpdateScreenInteractorFactory @Inject constructor(
2929
override fun createUpdateScreenInteractor(
3030
displayableSavedPaymentMethod: DisplayableSavedPaymentMethod
3131
): UpdatePaymentMethodInteractor {
32-
return DefaultUpdatePaymentMethodInteractor.factory(
32+
return DefaultUpdatePaymentMethodInteractor(
3333
isLiveMode = paymentMethodMetadata.stripeIntent.isLiveMode,
3434
canRemove = customerStateHolder.canRemove.value,
3535
displayableSavedPaymentMethod = displayableSavedPaymentMethod,
@@ -59,6 +59,12 @@ internal class DefaultEmbeddedUpdateScreenInteractorFactory @Inject constructor(
5959
setDefaultPaymentMethodExecutor = { method ->
6060
savedPaymentMethodMutatorProvider.get().setDefaultPaymentMethod(method)
6161
},
62+
onBrandChoiceSelected = {
63+
eventReporter.onBrandChoiceSelected(
64+
source = EventReporter.CardBrandChoiceEventSource.Edit,
65+
selectedBrand = it
66+
)
67+
},
6268
shouldShowSetAsDefaultCheckbox = (
6369
paymentMethodMetadata.customerMetadata?.isPaymentMethodSetAsDefaultEnabled == true
6470
),
@@ -70,12 +76,6 @@ internal class DefaultEmbeddedUpdateScreenInteractorFactory @Inject constructor(
7076
onUpdateSuccess = {
7177
manageNavigatorProvider.get().performAction(ManageNavigator.Action.Back)
7278
},
73-
onBrandChoiceSelected = {
74-
eventReporter.onBrandChoiceSelected(
75-
source = EventReporter.CardBrandChoiceEventSource.Edit,
76-
selectedBrand = it
77-
)
78-
}
7979
)
8080
}
8181
}

paymentsheet/src/main/java/com/stripe/android/paymentsheet/SavedPaymentMethodMutator.kt

+8-8
Original file line numberDiff line numberDiff line change
@@ -361,10 +361,10 @@ internal class SavedPaymentMethodMutator(
361361
val isLiveMode = requireNotNull(viewModel.paymentMethodMetadata.value).stripeIntent.isLiveMode
362362
viewModel.navigationHandler.transitionTo(
363363
PaymentSheetScreen.UpdatePaymentMethod(
364-
DefaultUpdatePaymentMethodInteractor.factory(
364+
DefaultUpdatePaymentMethodInteractor(
365365
isLiveMode = isLiveMode,
366366
canRemove = canRemove,
367-
displayableSavedPaymentMethod = displayableSavedPaymentMethod,
367+
displayableSavedPaymentMethod,
368368
cardBrandFilter = PaymentSheetCardBrandFilter(viewModel.config.cardBrandAcceptance),
369369
removeExecutor = { method ->
370370
performRemove()
@@ -373,6 +373,12 @@ internal class SavedPaymentMethodMutator(
373373
updatePaymentMethodExecutor(cardUpdateParams)
374374
},
375375
setDefaultPaymentMethodExecutor = setDefaultPaymentMethodExecutor,
376+
onBrandChoiceSelected = {
377+
viewModel.eventReporter.onBrandChoiceSelected(
378+
source = EventReporter.CardBrandChoiceEventSource.Edit,
379+
selectedBrand = it
380+
)
381+
},
376382
shouldShowSetAsDefaultCheckbox = (
377383
viewModel
378384
.paymentMethodMetadata
@@ -385,12 +391,6 @@ internal class SavedPaymentMethodMutator(
385391
)
386392
),
387393
onUpdateSuccess = viewModel.navigationHandler::pop,
388-
onBrandChoiceSelected = {
389-
viewModel.eventReporter.onBrandChoiceSelected(
390-
source = EventReporter.CardBrandChoiceEventSource.Edit,
391-
selectedBrand = it
392-
)
393-
},
394394
)
395395
)
396396
)

paymentsheet/src/main/java/com/stripe/android/paymentsheet/ui/CardDetailsEditUI.kt

-200
This file was deleted.

paymentsheet/src/main/java/com/stripe/android/paymentsheet/ui/CommonTextField.kt

-52
This file was deleted.

0 commit comments

Comments
 (0)