This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For #12257 - Add LoginDelegate and CreditCardDelegate to replace Prom…
…ptFeature parameters
- Loading branch information
1 parent
a76c3fc
commit bae083e
Showing
5 changed files
with
160 additions
and
62 deletions.
There are no files selected for viewing
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
34 changes: 34 additions & 0 deletions
34
...prompts/src/main/java/mozilla/components/feature/prompts/creditcard/CreditCardDelegate.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,34 @@ | ||
/* 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 mozilla.components.feature.prompts.creditcard | ||
|
||
import mozilla.components.concept.storage.CreditCardEntry | ||
import mozilla.components.feature.prompts.concept.SelectablePromptView | ||
|
||
/** | ||
* Delegate for credit card picker and related callbacks | ||
*/ | ||
interface CreditCardDelegate { | ||
/** | ||
* The [SelectablePromptView] used for [CreditCardPicker] to display a | ||
* selectable prompt list of credit cards. | ||
*/ | ||
val creditCardPickerView: SelectablePromptView<CreditCardEntry>? | ||
get() = null | ||
|
||
/** | ||
* Callback invoked when a user selects "Manage credit cards" | ||
* from the select credit card prompt. | ||
*/ | ||
val onManageCreditCards: () -> Unit | ||
get() = {} | ||
|
||
/** | ||
* Callback invoked when a user selects a credit card option | ||
* from the select credit card prompt | ||
*/ | ||
val onSelectCreditCard: () -> Unit | ||
get() = {} | ||
} |
27 changes: 27 additions & 0 deletions
27
...s/feature/prompts/src/main/java/mozilla/components/feature/prompts/login/LoginDelegate.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,27 @@ | ||
/* 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 mozilla.components.feature.prompts.login | ||
|
||
import mozilla.components.concept.storage.Login | ||
import mozilla.components.feature.prompts.concept.SelectablePromptView | ||
|
||
/** | ||
* Delegate to display the login select prompt and related callbacks | ||
*/ | ||
interface LoginDelegate { | ||
/** | ||
* The [SelectablePromptView] used for [LoginPicker] to display a | ||
* selectable prompt list of logins. | ||
*/ | ||
val loginPickerView: SelectablePromptView<Login>? | ||
get() = null | ||
|
||
/** | ||
* Callback invoked when a user selects "Manage logins" | ||
* from the select login prompt. | ||
*/ | ||
val onManageLogins: () -> Unit | ||
get() = {} | ||
} |
Oops, something went wrong.