-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🤖 Use multiple avatars for multiple new likes or subscribers #20133
Merged
mkevins
merged 9 commits into
feature/notifications_refresh_p1
from
issue/20039-notif-multiple-avatars
Feb 8, 2024
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3dab4a4
Parses extra notification avatars
94a46ef
Adds layouts for multiple avatars
504e7d3
Loads multiple avatars for new followers and post/comment likes
5f85a20
Verify that the icon is not null or empty
9c67637
Extract multiple avatar views in separate files
405e0b3
Merge branch 'feature/notifications_refresh_p1' into issue/20039-noti…
216c1bd
Extract avatar loading function
7a63be5
Ignoring linter suggestion since the FrameLayout is not redundant in …
7d29468
Makes dual avatars larger and fixes alignment
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
WordPress/src/main/res/layout/notifications_list_double_avatar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="@dimen/notifications_multiple_icon_width" | ||
android:layout_height="@dimen/notifications_multiple_icon_height" | ||
android:layout_marginStart="@dimen/notifications_multiple_avatar_margin_start" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
tools:ignore="MergeRootFrame"> | ||
|
||
<ImageView | ||
android:id="@+id/two_avatars_1" | ||
style="@style/NotificationsAvatarDouble" | ||
android:layout_gravity="center_vertical|start" | ||
android:contentDescription="@null" | ||
tools:src="@drawable/bg_oval_placeholder_user_32dp" /> | ||
|
||
<ImageView | ||
android:id="@+id/two_avatars_2" | ||
style="@style/NotificationsAvatarDouble" | ||
android:layout_gravity="center_vertical|end" | ||
android:contentDescription="@null" | ||
tools:src="@drawable/bg_oval_placeholder_user_32dp" /> | ||
</FrameLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
WordPress/src/main/res/layout/notifications_list_triple_avatar.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="@dimen/notifications_multiple_icon_width" | ||
android:layout_height="@dimen/notifications_multiple_icon_height" | ||
android:layout_marginStart="@dimen/notifications_multiple_avatar_margin_start" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" | ||
tools:ignore="MergeRootFrame"> | ||
|
||
<ImageView | ||
android:id="@+id/three_avatars_1" | ||
style="@style/NotificationsAvatarTriple" | ||
android:layout_gravity="bottom|start" | ||
android:contentDescription="@null" | ||
tools:src="@drawable/bg_oval_placeholder_user_32dp" /> | ||
|
||
<ImageView | ||
android:id="@+id/three_avatars_2" | ||
style="@style/NotificationsAvatarTriple" | ||
android:layout_gravity="top|center_horizontal" | ||
android:contentDescription="@null" | ||
tools:src="@drawable/bg_oval_placeholder_user_32dp" /> | ||
|
||
<ImageView | ||
android:id="@+id/three_avatars_3" | ||
style="@style/NotificationsAvatarTriple" | ||
android:layout_gravity="bottom|end" | ||
android:contentDescription="@null" | ||
tools:src="@drawable/bg_oval_placeholder_user_32dp" /> | ||
</FrameLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This ad-hoc parsing seems reasonable for now, given that this whole file is due for refactoring to Room / FluxC (i.e. it likely isn't worth refactoring in piecemeal).