-
Notifications
You must be signed in to change notification settings - Fork 384
New issue
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
WIP: feat: avoid layouts thrashing #3715
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🚅 Previously deployed to Railway in the core project. Environment has been deleted. |
erha19
previously approved these changes
May 24, 2024
bytemain
changed the title
feat: avoid layouts thrashing
WIP: feat: avoid layouts thrashing
May 24, 2024
* feat: add api for rendering chat message history messages * feat: fix typo error * feat: add custom ai render * feat: add scroll to bottom * feat: add type definition --------- Co-authored-by: John <qingyi.xjh@antgroup.com>
* fix: terminal not restore (#3713) * feat: chat api support scrollToBottom (#3714) * chore: update SlotRenderer default sizes based on layout configuration (#3724) * feat: add api for rendering chat message history messages (#3712) * feat: add api for rendering chat message history messages * feat: fix typo error * feat: add custom ai render * feat: add scroll to bottom * feat: add type definition --------- Co-authored-by: John <qingyi.xjh@antgroup.com> * chore: update manifest.json to v3.0.4 * v3.0.4 --------- Co-authored-by: RetroX <retrox.jcy@alipay.com> Co-authored-by: bk1012 <sijie.zsj@antgroup.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* feat: support interactive input components * feat: interactiveInputHandler interface * chore: remove AIInlineOperation components * refactor: ai loading component * style: improve loading style * feat: support handle interactive input value * feat: support switch input and inlinechat * feat: support cmd + k keybing * feat: support auto focus * feat: support input layout * chore: improve code * style: improve style
base 变更了,重新提这个 pr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Types
Background or solution
当我们在获取浏览器的布局时,如果当前有未应用的布局,浏览器会强制应用该布局。
所以我们其实不太需要每一次都获取最新的布局,仅获取上一帧的布局信息即可。
我们在 resize 相关的代码里没有做到直一点,现在是用一个包 fastdom 来保证这一点。
Changelog
avoid layouts thrashing