From defd038064aa6609d4f39bd37a2fd6b43a2cf7ad Mon Sep 17 00:00:00 2001 From: sk Date: Mon, 6 Feb 2023 19:41:36 +0100 Subject: [PATCH] display roles in profile --- .../android/fragments/ProfileFragment.java | 30 +++++++++++++++---- .../joinmastodon/android/model/Account.java | 8 +++++ mastodon/src/main/res/drawable/bg_pill.xml | 8 +++++ .../src/main/res/layout/fragment_profile.xml | 29 +++++++++++++----- mastodon/src/main/res/values/styles.xml | 12 ++++++++ 5 files changed, 74 insertions(+), 13 deletions(-) create mode 100644 mastodon/src/main/res/drawable/bg_pill.xml diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java index aeda4d56b..f5651815e 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java @@ -8,11 +8,11 @@ import android.app.Activity; import android.app.Fragment; import android.content.Intent; import android.content.res.Configuration; +import android.graphics.Color; import android.graphics.Outline; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; -import android.graphics.drawable.ShapeDrawable; -import android.graphics.drawable.shapes.RoundRectShape; +import android.graphics.drawable.GradientDrawable; import android.net.Uri; import android.os.Build; import android.os.Bundle; @@ -112,7 +112,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList private ImageView avatar; private CoverImageView cover; - private View avatarBorder; + private View avatarBorder, nameWrap; private TextView name, username, bio, followersCount, followersLabel, followingCount, followingLabel, postsCount, postsLabel; private ProgressBarButton actionButton, notifyButton; private ViewPager2 pager; @@ -129,6 +129,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList private FrameLayout[] tabViews; private TabLayoutMediator tabLayoutMediator; private TextView followsYouView; + private ViewGroup rolesView; private Account account; private String accountID; @@ -200,6 +201,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList cover=content.findViewById(R.id.cover); avatarBorder=content.findViewById(R.id.avatar_border); name=content.findViewById(R.id.name); + nameWrap=content.findViewById(R.id.name_wrap); username=content.findViewById(R.id.username); bio=content.findViewById(R.id.bio); profileCounters=content.findViewById(R.id.profile_counters); @@ -225,6 +227,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList fab=content.findViewById(R.id.fab); followsYouView=content.findViewById(R.id.follows_you); list=content.findViewById(R.id.metadata); + rolesView=content.findViewById(R.id.roles); avatar.setOutlineProvider(new ViewOutlineProvider(){ @Override @@ -479,6 +482,19 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList name.setText(ssb); setTitle(ssb); + if (account.roles != null && !account.roles.isEmpty()) { + rolesView.setVisibility(View.VISIBLE); + rolesView.removeAllViews(); + name.setPadding(0, 0, V.dp(12), 0); + for (Account.Role role : account.roles) { + TextView roleText = new TextView(getActivity(), null, 0, R.style.role_label); + roleText.setText(role.name); + GradientDrawable bg = (GradientDrawable) roleText.getBackground().mutate(); + bg.setStroke(V.dp(2), Color.parseColor(role.color)); + rolesView.addView(roleText); + } + } + boolean isSelf=AccountSessionManager.getInstance().isSelf(accountID, account); if(account.locked){ @@ -738,8 +754,8 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList coverGradient.setTopOffset(scrollY); cover.invalidate(); titleTransY=getToolbar().getHeight(); - if(scrollY>name.getTop()-topBarsH){ - titleTransY=Math.max(0f, titleTransY-(scrollY-(name.getTop()-topBarsH))); + if(scrollY>nameWrap.getTop()-topBarsH){ + titleTransY=Math.max(0f, titleTransY-(scrollY-(nameWrap.getTop()-topBarsH))); } if(toolbarTitleView!=null){ toolbarTitleView.setTranslationY(titleTransY); @@ -826,6 +842,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList avatar.setForeground(overlay); animators.add(ObjectAnimator.ofInt(overlay, "alpha", 0, 255)); + nameWrap.setVisibility(View.GONE); nameEdit.setVisibility(View.VISIBLE); nameEdit.setText(account.displayName); RelativeLayout.LayoutParams lp=(RelativeLayout.LayoutParams) username.getLayoutParams(); @@ -870,6 +887,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList profileCounters.setVisibility(View.VISIBLE); pager.setVisibility(View.VISIBLE); tabbar.setVisibility(View.VISIBLE); + V.setVisibilityAnimated(nameWrap, View.VISIBLE); AnimatorSet set=new AnimatorSet(); set.playTogether(animators); @@ -882,7 +900,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList nameEdit.setVisibility(View.GONE); bioEdit.setVisibility(View.GONE); RelativeLayout.LayoutParams lp=(RelativeLayout.LayoutParams) username.getLayoutParams(); - lp.addRule(RelativeLayout.BELOW, R.id.name); + lp.addRule(RelativeLayout.BELOW, R.id.name_wrap); username.getParent().requestLayout(); avatar.setForeground(null); scrollToTop(); diff --git a/mastodon/src/main/java/org/joinmastodon/android/model/Account.java b/mastodon/src/main/java/org/joinmastodon/android/model/Account.java index 18e077c63..9f996d769 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/model/Account.java +++ b/mastodon/src/main/java/org/joinmastodon/android/model/Account.java @@ -133,6 +133,14 @@ public class Account extends BaseModel{ */ public Instant muteExpiresAt; + public List roles; + + @Parcel + public static class Role { + public String name; + /** #rrggbb */ + public String color; + } @Override public void postprocess() throws ObjectValidationException{ diff --git a/mastodon/src/main/res/drawable/bg_pill.xml b/mastodon/src/main/res/drawable/bg_pill.xml new file mode 100644 index 000000000..af6a69a4f --- /dev/null +++ b/mastodon/src/main/res/drawable/bg_pill.xml @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/mastodon/src/main/res/layout/fragment_profile.xml b/mastodon/src/main/res/layout/fragment_profile.xml index cb11a7db0..957eb5e57 100644 --- a/mastodon/src/main/res/layout/fragment_profile.xml +++ b/mastodon/src/main/res/layout/fragment_profile.xml @@ -135,24 +135,39 @@ - + android:layout_marginTop="12dp"> + + + + + + 0.1 + +