mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-24 10:25:51 +03:00
Re-arrange room profile
- Show encryption status also in easy mode again - Move encryption action down - it's a one-time action and not important enough to show prevalent on top - Hide encryption action if permission missing - TODO: hide encryption action when it's a public room (it's already hidden on room creation in that case) Change-Id: I544704191fd7e3573ef35fa9de2f7023a01c4a04
This commit is contained in:
parent
3cb5f6087c
commit
d6ea5648b6
1 changed files with 19 additions and 17 deletions
|
@ -77,25 +77,22 @@ class RoomProfileController @Inject constructor(
|
|||
}
|
||||
|
||||
// Security
|
||||
if (enableNonSimplifiedMode) {
|
||||
buildProfileSection(stringProvider.getString(R.string.room_profile_section_security))
|
||||
val learnMoreSubtitle = if (roomSummary.isEncrypted) {
|
||||
if (roomSummary.isDirect) R.string.direct_room_profile_encrypted_subtitle else R.string.room_profile_encrypted_subtitle
|
||||
} else {
|
||||
if (roomSummary.isDirect) R.string.direct_room_profile_not_encrypted_subtitle else R.string.room_profile_not_encrypted_subtitle
|
||||
}
|
||||
genericFooterItem {
|
||||
id("e2e info")
|
||||
centered(false)
|
||||
text(stringProvider.getString(learnMoreSubtitle))
|
||||
}
|
||||
buildEncryptionAction(data.actionPermissions, roomSummary)
|
||||
buildProfileSection(stringProvider.getString(R.string.room_profile_section_security))
|
||||
val learnMoreSubtitle = if (roomSummary.isEncrypted) {
|
||||
if (roomSummary.isDirect) R.string.direct_room_profile_encrypted_subtitle else R.string.room_profile_encrypted_subtitle
|
||||
} else {
|
||||
if (roomSummary.isDirect) R.string.direct_room_profile_not_encrypted_subtitle else R.string.room_profile_not_encrypted_subtitle
|
||||
}
|
||||
genericFooterItem {
|
||||
id("e2e info")
|
||||
centered(false)
|
||||
text(stringProvider.getString(learnMoreSubtitle))
|
||||
}
|
||||
// SC: Move down in the list, this one-time action is not important to enough to show this prevalent at the top
|
||||
//buildEncryptionAction(data.actionPermissions, roomSummary)
|
||||
|
||||
// More | category header only if displaying other sections above
|
||||
if (enableNonSimplifiedMode || roomSummary.topic.isNotEmpty()) {
|
||||
buildProfileSection(stringProvider.getString(R.string.room_profile_section_more))
|
||||
}
|
||||
// More
|
||||
buildProfileSection(stringProvider.getString(R.string.room_profile_section_more))
|
||||
buildProfileAction(
|
||||
id = "settings",
|
||||
title = stringProvider.getString(if (roomSummary.isDirect) {
|
||||
|
@ -151,6 +148,9 @@ class RoomProfileController @Inject constructor(
|
|||
action = { callback?.createShortcut() }
|
||||
)
|
||||
}
|
||||
if (enableNonSimplifiedMode) {
|
||||
buildEncryptionAction(data.actionPermissions, roomSummary)
|
||||
}
|
||||
buildProfileAction(
|
||||
id = "leave",
|
||||
title = stringProvider.getString(if (roomSummary.isDirect) {
|
||||
|
@ -193,6 +193,7 @@ class RoomProfileController @Inject constructor(
|
|||
editable = false,
|
||||
action = { callback?.onEnableEncryptionClicked() }
|
||||
)
|
||||
/* SC: disable useless button
|
||||
} else {
|
||||
buildProfileAction(
|
||||
id = "enableEncryption",
|
||||
|
@ -202,6 +203,7 @@ class RoomProfileController @Inject constructor(
|
|||
divider = false,
|
||||
editable = false
|
||||
)
|
||||
*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue