Compact code.
This commit is contained in:
parent
fdb13ebca5
commit
138f4d9525
1 changed files with 5 additions and 6 deletions
|
|
@ -36,15 +36,14 @@ fun TimelineItemEncryptedView(
|
||||||
onContentLayoutChanged: (ContentAvoidingLayoutData) -> Unit,
|
onContentLayoutChanged: (ContentAvoidingLayoutData) -> Unit,
|
||||||
modifier: Modifier = Modifier
|
modifier: Modifier = Modifier
|
||||||
) {
|
) {
|
||||||
var text = stringResource(id = CommonStrings.common_waiting_for_decryption_key)
|
val (textId, iconId) = if (content.data is UnableToDecryptContent.Data.MegolmV1AesSha2 &&
|
||||||
var iconId = CompoundDrawables.ic_compound_time
|
|
||||||
if (content.data is UnableToDecryptContent.Data.MegolmV1AesSha2 &&
|
|
||||||
content.data.utdCause == UtdCause.Membership) {
|
content.data.utdCause == UtdCause.Membership) {
|
||||||
text = stringResource(id = CommonStrings.common_unable_to_decrypt_no_access)
|
(CommonStrings.common_unable_to_decrypt_no_access to CompoundDrawables.ic_compound_block)
|
||||||
iconId = CompoundDrawables.ic_compound_block
|
} else {
|
||||||
|
(CommonStrings.common_waiting_for_decryption_key to CompoundDrawables.ic_compound_time)
|
||||||
}
|
}
|
||||||
TimelineItemInformativeView(
|
TimelineItemInformativeView(
|
||||||
text = text,
|
text = stringResource(id = textId),
|
||||||
iconDescription = stringResource(id = CommonStrings.dialog_title_warning),
|
iconDescription = stringResource(id = CommonStrings.dialog_title_warning),
|
||||||
iconResourceId = iconId,
|
iconResourceId = iconId,
|
||||||
onContentLayoutChanged = onContentLayoutChanged,
|
onContentLayoutChanged = onContentLayoutChanged,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue