forked from mozilla-mobile/android-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For mozilla-mobile#12060 - Add support for select address prompt request
- Loading branch information
Alexandru2909
committed
May 4, 2022
1 parent
c277fe7
commit b52b43e
Showing
9 changed files
with
266 additions
and
11 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
...browser/engine-gecko/src/main/java/mozilla/components/browser/engine/gecko/ext/Address.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,46 @@ | ||
/* 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.browser.engine.gecko.ext | ||
|
||
import mozilla.components.concept.storage.Address | ||
import org.mozilla.geckoview.Autocomplete | ||
|
||
/** | ||
* Converts a GeckoView [Autocomplete.Address] to an Android Components [Address]. | ||
*/ | ||
fun Autocomplete.Address.toAddress() = Address( | ||
guid = guid, | ||
givenName = givenName, | ||
additionalName = additionalName, | ||
familyName = familyName, | ||
organization = organization, | ||
streetAddress = streetAddress, | ||
addressLevel3 = addressLevel3, | ||
addressLevel2 = addressLevel2, | ||
addressLevel1 = addressLevel1, | ||
postalCode = postalCode, | ||
country = country, | ||
tel = tel, | ||
email = email | ||
) | ||
|
||
/** | ||
* Converts an Android Components [Address] to a GeckoView [Autocomplete.Address]. | ||
*/ | ||
fun Address.toAutocompleteAddress() = Autocomplete.Address.Builder() | ||
.guid(guid) | ||
.givenName(givenName) | ||
.additionalName(additionalName) | ||
.familyName(familyName) | ||
.organization(organization) | ||
.streetAddress(streetAddress) | ||
.addressLevel3(addressLevel3) | ||
.addressLevel2(addressLevel2) | ||
.addressLevel1(addressLevel1) | ||
.postalCode(postalCode) | ||
.country(country) | ||
.tel(tel) | ||
.email(email) | ||
.build() |
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
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
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
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
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
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
Oops, something went wrong.