chat-ui-kit-react
chat-ui-kit-react copied to clipboard
Build your own chat UI with React components in few minutes. Chat UI Kit from chatscope is an open source UI toolkit for developing web chat applications.
I have an example below of what the expected behaviour should be. On the MessageList this currently doesn't happen. For some reason it doesn't propagate the scroll to the parent...
wondering this widget example, https://mars.chatscope.io/. can you give the source code of this website ? thanks
Sometimes we need to set the properties of the inner contenteditale div in MessageInput. For example to set tabIndex, aria-* attributes, or get a reference to manipulate the content directly....
When you change the id of the message, the `updateMessage` function will not find the message to update, it ends up double the message (the new one).
The `updateConversation` is not usable to update the `id` of the conversation. I think we should have something like this in case we update the id from backend.
Make onScroll on event on MessageList component: I have a float button to scroll bottom. If scroll is not in bottom, will display this button, if not this button will...
Check the data that the MessageInput is sending when a space is added at the end of the message.. ``` function onSend(message) { debugger; setMessages(__spreadArray(__spreadArray([], messages, true), [ { role:...
You plan to use virtualization in a MessageList component?
Is like answer referencing another chat message for answer it, like Telegram, it could receive the message Id for referencing it.
I have refered to the code in https://chatscope.io/storybook/react/?path=/docs/components-messagelist--loading-more-state and changed the fake fetch part, receiving loaded messages in batches from my own server whenever I scroll the bar to the...