|
1 | 1 | package com.stripe.android.paymentsheet.verticalmode
|
2 | 2 |
|
| 3 | +import androidx.lifecycle.viewModelScope |
3 | 4 | import com.stripe.android.core.strings.ResolvableString
|
4 | 5 | import com.stripe.android.core.strings.resolvableString
|
5 | 6 | import com.stripe.android.lpmfoundations.paymentmethod.PaymentMethodMetadata
|
@@ -46,6 +47,7 @@ internal interface PaymentMethodVerticalLayoutInteractor {
|
46 | 47 | val selection: Selection?,
|
47 | 48 | val displayedSavedPaymentMethod: DisplayableSavedPaymentMethod?,
|
48 | 49 | val availableSavedPaymentMethodAction: SavedPaymentMethodAction,
|
| 50 | + val mandate: ResolvableString?, |
49 | 51 | )
|
50 | 52 |
|
51 | 53 | sealed interface Selection {
|
@@ -88,7 +90,6 @@ internal class DefaultPaymentMethodVerticalLayoutInteractor(
|
88 | 90 | private val walletsState: StateFlow<WalletsState?>,
|
89 | 91 | private val canShowWalletsInline: Boolean,
|
90 | 92 | private val canShowWalletButtons: Boolean,
|
91 |
| - private val onMandateTextUpdated: (ResolvableString?) -> Unit, |
92 | 93 | private val updateSelection: (PaymentSelection?) -> Unit,
|
93 | 94 | private val isCurrentScreen: StateFlow<Boolean>,
|
94 | 95 | private val reportPaymentMethodTypeSelected: (PaymentMethodCode) -> Unit,
|
@@ -151,12 +152,24 @@ internal class DefaultPaymentMethodVerticalLayoutInteractor(
|
151 | 152 | isCurrentScreen = viewModel.navigationHandler.currentScreen.mapAsStateFlow {
|
152 | 153 | it is PaymentSheetScreen.VerticalMode
|
153 | 154 | },
|
154 |
| - onMandateTextUpdated = { |
155 |
| - viewModel.mandateHandler.updateMandateText(mandateText = it, showAbove = true) |
156 |
| - }, |
157 | 155 | reportPaymentMethodTypeSelected = viewModel.eventReporter::onSelectPaymentMethod,
|
158 | 156 | reportFormShown = viewModel.eventReporter::onPaymentMethodFormShown,
|
159 |
| - ) |
| 157 | + ).also { interactor -> |
| 158 | + viewModel.viewModelScope.launch { |
| 159 | + interactor.state.collect { state -> |
| 160 | + val newSelection = state.selection as? PaymentMethodVerticalLayoutInteractor.Selection.New |
| 161 | + newSelection?.code?.let { code -> |
| 162 | + val formType = formHelper.formTypeForCode(code) |
| 163 | + if (formType is FormType.MandateOnly) { |
| 164 | + viewModel.mandateHandler.updateMandateText( |
| 165 | + mandateText = formType.mandate, |
| 166 | + showAbove = true, |
| 167 | + ) |
| 168 | + } |
| 169 | + } |
| 170 | + } |
| 171 | + } |
| 172 | + } |
160 | 173 | }
|
161 | 174 | }
|
162 | 175 |
|
@@ -214,12 +227,19 @@ internal class DefaultPaymentMethodVerticalLayoutInteractor(
|
214 | 227 | } else {
|
215 | 228 | null
|
216 | 229 | }
|
| 230 | + val selectionCode = temporarySelectionCode ?: (mostRecentSelection as? PaymentSelection.New).code() |
| 231 | + val mandate = if (selectionCode != null) { |
| 232 | + (formTypeForCode(selectionCode) as? FormType.MandateOnly)?.mandate |
| 233 | + } else { |
| 234 | + null |
| 235 | + } |
217 | 236 | PaymentMethodVerticalLayoutInteractor.State(
|
218 | 237 | displayablePaymentMethods = displayablePaymentMethods,
|
219 | 238 | isProcessing = isProcessing,
|
220 | 239 | selection = temporarySelection ?: mostRecentSelection?.asVerticalSelection(),
|
221 | 240 | displayedSavedPaymentMethod = displayedSavedPaymentMethod,
|
222 | 241 | availableSavedPaymentMethodAction = action,
|
| 242 | + mandate = mandate, |
223 | 243 | )
|
224 | 244 | }
|
225 | 245 |
|
@@ -380,10 +400,6 @@ internal class DefaultPaymentMethodVerticalLayoutInteractor(
|
380 | 400 | transitionToFormScreen(viewAction.selectedPaymentMethodCode)
|
381 | 401 | } else {
|
382 | 402 | updateSelectedPaymentMethod(viewAction.selectedPaymentMethodCode)
|
383 |
| - |
384 |
| - if (formType is FormType.MandateOnly) { |
385 |
| - onMandateTextUpdated(formType.mandate) |
386 |
| - } |
387 | 403 | }
|
388 | 404 | }
|
389 | 405 | is ViewAction.SavedPaymentMethodSelected -> {
|
|
0 commit comments