All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Nothing yet
- Adding i18n support. Please read the docs here: https://getstream.github.io/react-native-activity-feed/#internationalisation-i18n
- Adding style customization support for text of Activity component - 97130d8
- Fixing
refvariables in FlatFeed and NotificationFeed
- Fixed an issue with reactions on reactions creating duplicates in
latest_children
- Added two props to the Activity component to handle onPress events on hashtags and mentions:
onPressHashtag={(hashtagText, activity) => console.log(hashtagText, activity)}onPressMention={(mentionText, activity) => console.log(mentionText, activity)}
- Support marking notification groups as read and seen through the
onMarkAsSeenandonMarkAsReadhandlers.
- Calling
onRemoveActivityon a notification feed now updates the state correctly.
- Always display "Unknown" as the user which was a regression in 0.8.6
- Uploading images with the
StatusUpdateFormnow works on iOS withreact-native-activity-feedagain. This was a regression in 0.8.2
- Uploading images with the
StatusUpdateFormnow works on Android withreact-native-activity-feed.
- Add basic support for 2-way pagination
LikesListis renamed toLikeList
onToggleReactionandonAddReactionarguments have changed.
// old
onAddReaction(kind, activity, { data, targetFeeds, trackAnalytics });
// new
onAddReaction(kind, activity, data, { targetFeeds, trackAnalytics });sessionis replaced withclienteverywhere- Update
getstreamlibrary to v4.0.7, if you it directly check out it's CHANGELOG for info on its breaking changes there.
- Support for liking of comments. See SinglePostScreen in the
exampledirectory for an example of this.