stream-chat-react icon indicating copy to clipboard operation
stream-chat-react copied to clipboard

feat: merge MessageList and VirtualizedMessageList into a single component

Open MartinCupela opened this issue 2 years ago • 0 comments

Motivation

There is no sense in keeping 2 components that should serve the same purpose. Moreover the two components do not expose the same interface. The MessageList component has problems to correctly display messages while paginating (there is jumping, visually hard to follow) what is better solved by the VirtualizedMessageList. In Thread, the VirtualizedMessageList displays the parent message in a fixed position compared to scrollable replies list. On the other side, the Thread using MessageList includes the parent message in the scrolled list.

...

Acceptance Criteria

TBD

MartinCupela avatar Jun 19 '22 04:06 MartinCupela