-
Notifications
You must be signed in to change notification settings - Fork 281
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
feat: add customizable reactions sorting #2289
Conversation
}, | ||
); | ||
|
||
return unsortedReactions.sort(sortReactions); |
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.
🍓
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2289 +/- ##
=======================================
Coverage 85.00% 85.01%
=======================================
Files 344 344
Lines 7675 7680 +5
Branches 2135 2136 +1
=======================================
+ Hits 6524 6529 +5
Misses 807 807
Partials 344 344 ☔ View full report in Codecov by Sentry. |
Size Change: +614 B (0%) Total Size: 1.76 MB
ℹ️ View Unchanged
|
This is a follow-up to 🚂 #2289. Same thing, but for the list of reacted users inside the reactions list modal.
## [11.10.0](v11.9.0...v11.10.0) (2024-02-23) ### Bug Fixes * initial message load issues ([#2292](#2292)) ([3685030](3685030)) ### Features * add customizable reaction details sorting ([#2290](#2290)) ([652e3a5](652e3a5)), closes [#2289](#2289) * add customizable reactions sorting ([#2289](#2289)) ([78c6107](78c6107))
🎉 This PR is included in version 11.10.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎯 Goal
Currently the order of reactions in the
ReactionsList
depends of the order of keys in thereaction_counts
object returned by the backend. This leads to unstable reaction order, which can change on page reloads, or when the list of reactions changes.We want to provide a way to customize this behavior, and to have a stable order of reactions by default.
🛠 Implementation details
Added a new
MessageContext
property:sortReactions
. It accepts two reaction objects, and should return a positive/negative/zero numeric value, similar to theArray.prototype.sort
method.The
sortReactions
prop can be passed both toMessageList
andVirtualizedMessageList
, as well as to theMessage
component directly. It will then be available via theMessageContext
.