mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 08:55:48 +03:00
PM-15049 PW strength indicator design audit (#4334)
This commit is contained in:
parent
dca88a58e7
commit
531b003347
1 changed files with 22 additions and 22 deletions
|
@ -42,14 +42,20 @@ fun PasswordStrengthIndicator(
|
|||
currentCharacterCount: Int,
|
||||
minimumCharacterCount: Int? = null,
|
||||
) {
|
||||
val minimumRequirementMet = (minimumCharacterCount == null) ||
|
||||
(currentCharacterCount >= minimumCharacterCount)
|
||||
val widthPercent by animateFloatAsState(
|
||||
targetValue = when (state) {
|
||||
PasswordStrengthState.NONE -> 0f
|
||||
PasswordStrengthState.WEAK_1 -> .25f
|
||||
PasswordStrengthState.WEAK_2 -> .5f
|
||||
PasswordStrengthState.WEAK_3 -> .66f
|
||||
PasswordStrengthState.GOOD -> .82f
|
||||
PasswordStrengthState.STRONG -> 1f
|
||||
targetValue = if (minimumRequirementMet) {
|
||||
when (state) {
|
||||
PasswordStrengthState.NONE -> 0f
|
||||
PasswordStrengthState.WEAK_1 -> .25f
|
||||
PasswordStrengthState.WEAK_2 -> .5f
|
||||
PasswordStrengthState.WEAK_3 -> .66f
|
||||
PasswordStrengthState.GOOD -> .82f
|
||||
PasswordStrengthState.STRONG -> 1f
|
||||
}
|
||||
} else {
|
||||
0f
|
||||
},
|
||||
label = "Width Percent State",
|
||||
)
|
||||
|
@ -107,11 +113,13 @@ fun PasswordStrengthIndicator(
|
|||
minimumCharacterCount = minCount,
|
||||
)
|
||||
}
|
||||
Text(
|
||||
text = label(),
|
||||
style = BitwardenTheme.typography.labelSmall,
|
||||
color = indicatorColor,
|
||||
)
|
||||
if (minimumRequirementMet) {
|
||||
Text(
|
||||
text = label(),
|
||||
style = BitwardenTheme.typography.labelSmall,
|
||||
color = indicatorColor,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -122,14 +130,6 @@ private fun MinimumCharacterCount(
|
|||
minimumRequirementMet: Boolean,
|
||||
minimumCharacterCount: Int,
|
||||
) {
|
||||
val characterCountColor by animateColorAsState(
|
||||
targetValue = if (minimumRequirementMet) {
|
||||
BitwardenTheme.colorScheme.status.strong
|
||||
} else {
|
||||
BitwardenTheme.colorScheme.text.secondary
|
||||
},
|
||||
label = "minmumCharacterCountColor",
|
||||
)
|
||||
Row(
|
||||
modifier = modifier,
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
|
@ -145,14 +145,14 @@ private fun MinimumCharacterCount(
|
|||
Icon(
|
||||
painter = rememberVectorPainter(id = it),
|
||||
contentDescription = null,
|
||||
tint = characterCountColor,
|
||||
tint = BitwardenTheme.colorScheme.text.secondary,
|
||||
modifier = Modifier.size(12.dp),
|
||||
)
|
||||
}
|
||||
Spacer(modifier = Modifier.width(2.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.minimum_characters, minimumCharacterCount),
|
||||
color = characterCountColor,
|
||||
color = BitwardenTheme.colorScheme.text.secondary,
|
||||
style = BitwardenTheme.typography.labelSmall,
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue