We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
经过ChatGPT定位,代码可能有如下问题,辛苦官方大大们后续迭代时考虑优化一下,谢谢~
过度渲染:ChatInputArea组件在内容变化时可能导致整个消息列表重新渲染。
大量状态更新:每次输入都会触发setContent,然后重新渲染组件树。
Markdown渲染性能:大量Markdown内容的实时渲染可能造成性能瓶颈。
虚拟列表缺失:消息列表没有使用虚拟化技术,所有消息都在DOM中。
The text was updated successfully, but these errors were encountered:
你说的是Sender组件还是bubble组件,如果是因为消息太多导致Sender 组件卡顿 也许是因为实现方式问题 导致父组件库在重复渲染
Sorry, something went wrong.
是否可以提供一个完整环境和示例
No branches or pull requests
经过ChatGPT定位,代码可能有如下问题,辛苦官方大大们后续迭代时考虑优化一下,谢谢~
过度渲染:ChatInputArea组件在内容变化时可能导致整个消息列表重新渲染。
大量状态更新:每次输入都会触发setContent,然后重新渲染组件树。
Markdown渲染性能:大量Markdown内容的实时渲染可能造成性能瓶颈。
虚拟列表缺失:消息列表没有使用虚拟化技术,所有消息都在DOM中。
The text was updated successfully, but these errors were encountered: