react-native-activity-feed
react-native-activity-feed copied to clipboard
Does stream provide support for threaded comments?
Tried out the example app but cannot find the reply section as working. Does feed api provide support for threaded comments?.
It is possible to add replies to comments. client.reactions.addChild(kind, reaction, data, options) is how you do it with the client. Activities within a feed should also have access to a props.onAddChildReaction prop that you can pass down to the reaction and call when a comment is added. The kind is comment and the data is something like { text: 'your reply' }. From there I think you can call it on any of the nested comments to add replies to them.
It's not super straight forward, but hope that helps