Skip to content
Snippets Groups Projects
Commit 3ad0f373 authored by Helen Qin's avatar Helen Qin Committed by Android (Google) Code Review
Browse files

Merge "Allow credential providers to set an "origin" for affiliated credentials" into main

parents 21abe21e 9788e980
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,7 @@ private fun getCredentialOptionInfoList(
entryGroupId = credentialEntry.entryGroupId.toString(),
isDefaultIconPreferredAsSingleProvider =
credentialEntry.isDefaultIconPreferredAsSingleProvider,
affiliatedDomain = credentialEntry.affiliatedDomain?.toString(),
)
)
}
......@@ -165,6 +166,7 @@ private fun getCredentialOptionInfoList(
entryGroupId = credentialEntry.entryGroupId.toString(),
isDefaultIconPreferredAsSingleProvider =
credentialEntry.isDefaultIconPreferredAsSingleProvider,
affiliatedDomain = credentialEntry.affiliatedDomain?.toString(),
)
)
}
......@@ -191,6 +193,7 @@ private fun getCredentialOptionInfoList(
entryGroupId = credentialEntry.entryGroupId.toString(),
isDefaultIconPreferredAsSingleProvider =
credentialEntry.isDefaultIconPreferredAsSingleProvider,
affiliatedDomain = credentialEntry.affiliatedDomain?.toString(),
)
)
}
......
......@@ -48,6 +48,7 @@ class CredentialEntryInfo(
val entryGroupId: String, // Used for deduplication, and displayed as the grouping title
// "For <value-of-entryGroupId>" on the more-option screen.
val isDefaultIconPreferredAsSingleProvider: Boolean,
val affiliatedDomain: String?,
) : EntryInfo(
providerId,
entryKey,
......
......@@ -78,6 +78,8 @@ fun Entry(
isLockedAuthEntry: Boolean = false,
enforceOneLine: Boolean = false,
onTextLayout: (TextLayoutResult) -> Unit = {},
/** Get flow only, if present, where be drawn as a line above the headline. */
affiliatedDomainText: String? = null,
) {
val iconPadding = Modifier.wrapContentSize().padding(
// Horizontal padding should be 16dp, but the suggestion chip itself
......@@ -102,6 +104,13 @@ fun Entry(
) {
// Apply weight so that the trailing icon can always show.
Column(modifier = Modifier.wrapContentHeight().fillMaxWidth().weight(1f)) {
if (!affiliatedDomainText.isNullOrBlank()) {
BodySmallText(
text = affiliatedDomainText,
enforceOneLine = enforceOneLine,
onTextLayout = onTextLayout,
)
}
SmallTitleText(
text = entryHeadlineText,
enforceOneLine = enforceOneLine,
......
......@@ -376,6 +376,7 @@ fun PrimarySelectionCard(
}
internal const val MAX_ENTRY_FOR_PRIMARY_PAGE = 4
/** Draws the primary credential selection page, used starting from android V. */
@Composable
fun PrimarySelectionCardVImpl(
......@@ -805,6 +806,7 @@ fun CredentialEntryRow(
},
enforceOneLine = enforceOneLine,
onTextLayout = onTextLayout,
affiliatedDomainText = credentialEntryInfo.affiliatedDomain,
)
}
......
......@@ -151,6 +151,7 @@ class GetCredScreenshotTest(emulationSpec: DeviceEmulationSpec) {
entryGroupId = "username",
isDefaultIconPreferredAsSingleProvider = false,
rawCredentialType = "unknown-type",
affiliatedDomain = null,
)
),
authenticationEntryList = emptyList(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment