Skip to content
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

fix: number is duplicate when input number by keyboard's numeric keypad in Chrome #709

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Joelei
Copy link

@Joelei Joelei commented Mar 17, 2025

chrome下日文输入法下有format时输入数字时数字重复。

复现地址:https://ant.design/components/input-number-cn#input-number-demo-formatter
chrome环境下,日文输入法,小键盘连续键入数字 1234, 不按Enter键,点击页面其他地方。输入框内的数字变成了 $ 11,234

原因: 在onCompositionEnd 之后 还会有一次 onChange事件被触发。

Summary by CodeRabbit

  • 新功能

    • 改进了输入处理机制,在使用输入法(IME)进行文字组合时防止了误收集输入,从而提升了多语言输入环境下的输入准确性和系统稳定性。
  • 测试

    • 新增测试用例,验证输入法(IME)数字键盘输入时格式化器的行为,确保格式化后的输入值正确反映数字输入。

Copy link

vercel bot commented Mar 17, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
input-number ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 21, 2025 10:13am

Copy link

coderabbitai bot commented Mar 17, 2025

Walkthrough

该更改在 src/InputNumber.tsx 文件中引入了 imeCompositionRef,用于跟踪输入法(IME)组合状态。通过在 onInternalInput、键盘事件处理和 onBlur 事件中检查该引用,对输入处理逻辑进行了调整,确保在 IME 组合期间不执行不必要的输入采集,并在输入框失焦时重置状态。

Changes

文件 变更摘要
src/InputNumber.tsx 新增 imeCompositionRef 变量,用于判断 IME 合成状态;在 onInternalInput 中,当检测到 IME 活动时提前返回;键盘事件中根据按键信息更新 imeCompositionRef 状态;在 onBlur 事件中重置该变量。
tests/formatter.test.tsx 新增测试用例以验证 IME 数字键盘输入的格式化行为,模拟一系列键盘事件并进行断言,以确保格式化后的输入值正确反映数字输入。

Sequence Diagram(s)

sequenceDiagram
    participant 用户
    participant InputNumber
    用户->>InputNumber: 按下键盘
    InputNumber->>InputNumber: 检查 imeCompositionRef 与 compositionRef
    alt IME 组合状态活跃且未在组成中
      InputNumber-->>用户: 跳过输入采集
    else
      InputNumber-->>用户: 正常处理输入
    end
    用户->>InputNumber: 触发 onBlur 事件
    InputNumber->>InputNumber: 重置 imeCompositionRef 为 false
Loading

Suggested reviewers

  • zombieJ

Poem

嗨,我是一只快乐的小兔子,
在代码花园中跳跃着探索新奇,
IME 的节奏如星光闪耀,
键盘上的步伐避开了陷阱,
轻盈一跳,状态便重归平静,
代码如萝卜般香甜,我心欢喜!

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 ESLint

If the error stems from missing dependencies, add them to the package.json file. For unrecoverable errors (e.g., due to private dependencies), disable the tool in the CodeRabbit configuration.

src/InputNumber.tsx

Oops! Something went wrong! :(

ESLint: 8.57.1

ESLint couldn't find the plugin "eslint-plugin-react".

(The package "eslint-plugin-react" was not found when loaded as a Node module from the directory "".)

It's likely that the plugin isn't installed correctly. Try reinstalling by running the following:

npm install eslint-plugin-react@latest --save-dev

The plugin "eslint-plugin-react" was referenced from the config file in ".eslintrc.js » /node_modules/.pnpm/@umijs[email protected]_jest@29.7.0_@types[email protected]_ts-node@10.9.2_@types[email protected]_7c4f7ebbffc2379378448552943a4b8d/node_modules/@umijs/fabric/dist/eslint.js".

If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team.

tests/formatter.test.tsx

Oops! Something went wrong! :(

ESLint: 8.57.1

ESLint couldn't find the plugin "eslint-plugin-react".

(The package "eslint-plugin-react" was not found when loaded as a Node module from the directory "".)

It's likely that the plugin isn't installed correctly. Try reinstalling by running the following:

npm install eslint-plugin-react@latest --save-dev

The plugin "eslint-plugin-react" was referenced from the config file in ".eslintrc.js » /node_modules/.pnpm/@umijs[email protected]_jest@29.7.0_@types[email protected]_ts-node@10.9.2_@types[email protected]_7c4f7ebbffc2379378448552943a4b8d/node_modules/@umijs/fabric/dist/eslint.js".

If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3bf5f1e and 41cac30.

📒 Files selected for processing (2)
  • src/InputNumber.tsx (4 hunks)
  • tests/formatter.test.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/InputNumber.tsx
🧰 Additional context used
🧬 Code Definitions (1)
tests/formatter.test.tsx (1)
docs/demo/formatter.tsx (1) (1)
  • render (58-122)
🔇 Additional comments (1)
tests/formatter.test.tsx (1)

66-130: 很好的测试用例,涵盖了 IME 输入的场景

这个测试用例很好地模拟了使用日语输入法和数字键盘输入数字的场景,包括了 compositionStartkeyDownchangecompositionEndblur 事件的完整序列。这正是 PR 所要解决的 Chrome 浏览器中重复输入数字的问题。

测试中验证了两种情况:

  1. 输入 "1234" 后格式化为 "1,234"
  2. 输入 "12345" 后格式化为 "12,345"

这个测试用例有效地确保了修复能够正确处理 IME 输入场景,防止数字重复输入的问题。

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

codecov bot commented Mar 17, 2025

Codecov Report

Attention: Patch coverage is 75.00000% with 2 lines in your changes missing coverage. Please review.

Project coverage is 95.40%. Comparing base (4470642) to head (405372b).

Files with missing lines Patch % Lines
src/InputNumber.tsx 75.00% 2 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #709      +/-   ##
==========================================
- Coverage   95.95%   95.40%   -0.55%     
==========================================
  Files           6        6              
  Lines         297      305       +8     
  Branches       78       80       +2     
==========================================
+ Hits          285      291       +6     
- Misses         12       14       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 405372b and 3bf5f1e.

📒 Files selected for processing (2)
  • src/InputNumber.tsx (4 hunks)
  • tests/formatter.test.tsx (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
src/InputNumber.tsx (1)
Learnt from: bombillazo
PR: react-component/input-number#644
File: src/InputNumber.tsx:173-174
Timestamp: 2025-03-17T08:53:16.472Z
Learning: In `src/InputNumber.tsx`, within the `InternalInputNumber` component, the state variables `prevValueRef` and `inputValueRef` are typed as `string | number` to maintain consistency with existing code.
🔇 Additional comments (4)
src/InputNumber.tsx (3)

163-163: 新增引用来追踪 IME 输入状态

增加了 imeCompositionRef 引用以追踪输入法编辑器(IME)组合状态,这是修复数字重复输入问题的核心部分。这个引用将帮助组件区分正常输入事件和 IME 组合输入事件。


505-509: 优化 IME 输入检测逻辑

根据键盘事件设置 imeCompositionRef.current 状态。当按键为 'Process'(但不是 'NumpadEnter' 或 'Enter')或者处于组合状态时,将其设置为 true;否则设置为 false。这确保了系统能准确识别 IME 输入状态。


556-556: 重置 IME 组合状态

在输入框失焦时重置 imeCompositionRef.current 为 false,确保下次聚焦时从干净的状态开始,防止状态残留导致的问题。

tests/formatter.test.tsx (1)

66-130: 为 IME 数字键盘输入添加测试用例

这个全面的测试用例模拟了使用 IME 数字键盘进行输入的场景,确保修复符合预期。测试涵盖了完整的输入流程:

  1. 焦点事件
  2. 组合开始事件
  3. 数字键盘按键模拟(Process 键)
  4. 输入值变化
  5. 组合结束事件
  6. 失焦事件

通过验证最终格式化结果(如 "1,234" 和 "12,345"),确保修复解决了 PR 中描述的问题。这个测试是重要的,因为它直接验证了 PR 的修复效果。

@Joelei
Copy link
Author

Joelei commented Mar 21, 2025

@zombieJ Could you help review the pull request? Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant