tui: 弹窗贴输入框 + 多行输入 + 修复失焦 - #11
Merged
Merged
Conversation
- /provider、/model picker 和审批弹窗从屏幕顶部移到输入框正上方, 与 @ 候选浮层同样锚定,对齐 claude code 的交互习惯 - 输入框由 input 换成 textarea:Enter 发送,Shift+Enter/Option+Enter/Ctrl+J 换行,随内容自动长高(上限 6 行),浮层锚点跟随输入框顶部 - 修复输入框失焦:关闭 renderer autoFocus(鼠标点击 scrollbox 夺焦且不触发 React 重渲染,focused prop 拉不回来)+ 渲染后 focus 安全网 effect - 候选浮层导航键 preventDefault,避免误触 textarea 光标移动; 清空输入改为 setText(),去掉 remount hack
This file contains hidden or 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
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.
与 @ 候选浮层同样锚定,对齐 claude code 的交互习惯
换行,随内容自动长高(上限 6 行),浮层锚点跟随输入框顶部
React 重渲染,focused prop 拉不回来)+ 渲染后 focus 安全网 effect
清空输入改为 setText(),去掉 remount hack