Skip to content
Snippets Groups Projects
Commit 2fda3bb0 authored by Taras's avatar Taras
Browse files

Update well known design

parent 321a2f30
No related branches found
No related tags found
No related merge requests found
...@@ -74,8 +74,9 @@ class RoomWellKnownDialogFragment : ...@@ -74,8 +74,9 @@ class RoomWellKnownDialogFragment :
private fun bindRoomData(roomInfo: RoomPublicInfo) { private fun bindRoomData(roomInfo: RoomPublicInfo) {
with(binding) { with(binding) {
ivCover.apply { ivCover.apply {
setIsVisible(roomInfo.avatarUrl != null || roomInfo.name != null) if (roomInfo.avatarUrl != null || roomInfo.name != null)
loadProfileIcon(roomInfo.avatarUrl, roomInfo.name ?: "") loadProfileIcon(roomInfo.avatarUrl, roomInfo.name ?: "")
else setImageResource(R.drawable.ic_logo)
} }
tvRoomName.apply { tvRoomName.apply {
setIsVisible(roomInfo.name != null) setIsVisible(roomInfo.name != null)
......
package org.futo.circles.model package org.futo.circles.model
import org.futo.circles.core.mapping.nameOrId
import org.futo.circles.core.model.ShareUrlTypeArg import org.futo.circles.core.model.ShareUrlTypeArg
import org.matrix.android.sdk.api.session.room.model.Membership import org.matrix.android.sdk.api.session.room.model.Membership
import org.matrix.android.sdk.api.session.room.model.RoomSummary import org.matrix.android.sdk.api.session.room.model.RoomSummary
...@@ -20,8 +19,8 @@ fun RoomPublicInfo.isProfile() = type == ShareUrlTypeArg.PROFILE ...@@ -20,8 +19,8 @@ fun RoomPublicInfo.isProfile() = type == ShareUrlTypeArg.PROFILE
fun RoomSummary.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo( fun RoomSummary.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo(
id = roomId, id = roomId,
name = name, name = name.takeIf { it.isNotEmpty() },
avatarUrl = avatarUrl, avatarUrl = avatarUrl.takeIf { it.isNotEmpty() },
topic = topic, topic = topic,
memberCount = joinedMembersCount ?: 0, memberCount = joinedMembersCount ?: 0,
membership = membership, membership = membership,
...@@ -30,8 +29,8 @@ fun RoomSummary.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo( ...@@ -30,8 +29,8 @@ fun RoomSummary.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo(
fun PeekResult.Success.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo( fun PeekResult.Success.toRoomPublicInfo(urlType: ShareUrlTypeArg) = RoomPublicInfo(
id = roomId, id = roomId,
name = name, name = name?.takeIf { it.isNotEmpty() },
avatarUrl = avatarUrl, avatarUrl = avatarUrl?.takeIf { it.isNotEmpty() },
topic = topic, topic = topic,
memberCount = numJoinedMembers ?: 0, memberCount = numJoinedMembers ?: 0,
membership = Membership.NONE, membership = Membership.NONE,
......
...@@ -32,12 +32,16 @@ ...@@ -32,12 +32,16 @@
android:id="@+id/ivCover" android:id="@+id/ivCover"
android:layout_width="@dimen/group_icon_size" android:layout_width="@dimen/group_icon_size"
android:layout_height="@dimen/group_icon_size" android:layout_height="@dimen/group_icon_size"
android:layout_marginTop="16dp" android:layout_marginTop="36dp"
android:scaleType="centerCrop" android:scaleType="centerCrop"
app:layout_constraintBottom_toTopOf="@id/tvRoomName"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbarDivider" app:layout_constraintTop_toBottomOf="@id/toolbarDivider"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.App.GroupIconRadius" /> app:layout_constraintVertical_bias="0"
app:layout_constraintVertical_chainStyle="packed"
app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.App.GroupIconRadius"
tools:src="@drawable/ic_logo" />
<ProgressBar <ProgressBar
...@@ -51,12 +55,13 @@ ...@@ -51,12 +55,13 @@
<TextView <TextView
android:id="@+id/tvRoomName" android:id="@+id/tvRoomName"
style="@style/body" style="@style/title2"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="36dp" android:layout_marginTop="36dp"
android:gravity="center" android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/tvRoomId"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivCover" app:layout_constraintTop_toBottomOf="@id/ivCover"
...@@ -64,23 +69,28 @@ ...@@ -64,23 +69,28 @@
<TextView <TextView
android:id="@+id/tvRoomId" android:id="@+id/tvRoomId"
style="@style/body"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:gravity="center" android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/tvType"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRoomName" app:layout_constraintTop_toBottomOf="@id/tvRoomName"
app:layout_goneMarginTop="36dp"
tools:text="Aasdsadasdsaf" /> tools:text="Aasdsadasdsaf" />
<TextView <TextView
android:id="@+id/tvType" android:id="@+id/tvType"
style="@style/body"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:gravity="center" android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/tvTopic"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvRoomId" app:layout_constraintTop_toBottomOf="@id/tvRoomId"
...@@ -89,12 +99,14 @@ ...@@ -89,12 +99,14 @@
<TextView <TextView
android:id="@+id/tvTopic" android:id="@+id/tvTopic"
style="@style/body"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:gravity="center" android:gravity="center"
android:visibility="gone" android:visibility="gone"
app:layout_constraintBottom_toTopOf="@id/tvMembersCount"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvType" app:layout_constraintTop_toBottomOf="@id/tvType"
...@@ -103,11 +115,13 @@ ...@@ -103,11 +115,13 @@
<TextView <TextView
android:id="@+id/tvMembersCount" android:id="@+id/tvMembersCount"
style="@style/body"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:gravity="center" android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/tvMembersip"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvTopic" app:layout_constraintTop_toBottomOf="@id/tvTopic"
...@@ -115,11 +129,13 @@ ...@@ -115,11 +129,13 @@
<TextView <TextView
android:id="@+id/tvMembersip" android:id="@+id/tvMembersip"
style="@style/body"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="36dp" android:layout_marginHorizontal="36dp"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:gravity="center" android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/btnRequest"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvMembersCount" app:layout_constraintTop_toBottomOf="@id/tvMembersCount"
...@@ -134,6 +150,7 @@ ...@@ -134,6 +150,7 @@
android:layout_marginTop="16dp" android:layout_marginTop="16dp"
android:text="@string/request_to_join" android:text="@string/request_to_join"
android:visibility="gone" android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvMembersip" app:layout_constraintTop_toBottomOf="@id/tvMembersip"
......
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
<string name="unfollow">Unfollow</string> <string name="unfollow">Unfollow</string>
<string name="requested_to_follow_format">%s requested to follow</string> <string name="requested_to_follow_format">%s requested to follow</string>
<string name="request_to_join">Request to join</string> <string name="request_to_join">Request to join</string>
<string name="request_to_follow">Requested to follow</string> <string name="request_to_follow">Request to follow</string>
<string name="select_circles_in_which_you_want_to_follow_this_timeline">Select circles in which you want to follow this timeline</string> <string name="select_circles_in_which_you_want_to_follow_this_timeline">Select circles in which you want to follow this timeline</string>
<string name="accept_invite">Accept invite</string> <string name="accept_invite">Accept invite</string>
<string name="save_to_device">Save to device</string> <string name="save_to_device">Save to device</string>
......
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