Skip to content

fix: after selecting and dragging text, the table still scrolls even after releasing the mouse. #328

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

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Conversation

QdabuliuQ
Copy link

@QdabuliuQ QdabuliuQ commented Jul 16, 2025

🤔 This is a ...

  • 🆕 New feature
  • 🐞 Bug fix
  • 📝 Site / documentation improvement
  • 📽️ Demo improvement
  • 💄 Component style improvement
  • 🤖 TypeScript definition improvement
  • 📦 Bundle size optimization
  • ⚡️ Performance optimization
  • ⭐️ Feature enhancement
  • 🌐 Internationalization
  • 🛠 Refactoring
  • 🎨 Code style optimization
  • ✅ Test Case
  • 🔀 Branch merge
  • ⏩ Workflow
  • ⌨️ Accessibility improvement
  • ❓ Other (about what?)

🔗 Related Issues

ant-design/ant-design#53924
ant-design/ant-design#54548

💡 Background and Solution

选择文本,鼠标按住文本拖拽到表格外边,松开鼠标,鼠标上下移动会触发表格滚动

467032935-9bec2f1c-866f-40d0-be9e-b6e19b6c0be8.mov

rc-virtual-list 的 useScrollDrag hook 监听 mouseup

📝 Change Log

Language Changelog
🇺🇸 English Fix virtual-list drag scrolling issue
🇨🇳 Chinese 修复 virtual-list 拖拽滚动异常

Summary by CodeRabbit

  • Bug Fixes

    • 修复在列表中拖拽并放下文本后仍可能继续滚动的问题。现在在鼠标松开及原生拖拽开始/结束等场景下会正确终止拖拽滚动,避免误触发滚动事件,提升列表交互稳定性与可控性。
  • Tests

    • 新增用例,验证“拖拽并放下文本不应触发滚动”,为上述行为提供回归保障。

The package version was changed from 3.19.2 to 3.19.1, possibly to correct a versioning error or revert a previous update.
Copy link

vercel bot commented Jul 16, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
virtual-list Ready Ready Preview Comment Aug 21, 2025 9:24am

Copy link

coderabbitai bot commented Jul 16, 2025

Note

Other AI code review bot(s) detected

CodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review.

Walkthrough

useScrollDrag 钩子内新增并使用 clearDragState() 集中重置拖拽状态,将原有的内联 mouseup 处理替换为 document 层的 mouseupdragstartdragend 监听并在 cleanup 中移除。新增测试验证在选中文本并执行原生拖放时不会触发滚动回调。

Changes

Cohort / File(s) 变更摘要
Hook 实现更新
src/hooks/useScrollDrag.ts
新增内部辅助函数 clearDragState() 用于重置拖拽状态并停止滚动;移除组件内联的 onMouseUp,改为在 document 层注册 mouseupdragstartdragend 并绑定 clearDragState;更新 cleanup 以注销新增的 document 事件监听;onMouseDown/onMouseMove 行为保持不变。
测试新增
tests/scroll.test.js
新增用例 “should not scroll after dropping selected list text”:在对列表项选中文本并模拟原生 dragstart/dragover/drop/dragend 流程后,断言 onScroll 在 drop/dragend 期间不再被触发,验证文本拖放不会触发滚动。

Sequence Diagram(s)

sequenceDiagram
    participant User as 用户
    participant Document as Document
    participant Hook as useScrollDrag

    User->>Document: mousedown (可能选中文本)
    Document->>Hook: onMouseDown / onMouseMove (原有行为)
    Note right of Hook #DFF2E1: mouseDownLock 可能为 true\n滚动可能正在进行
    User->>Document: dragstart (原生)
    Document->>Hook: dragstart -> clearDragState()
    Note right of Hook #FCE8D6: clearDragState 停止滚动并重置锁
    User->>Document: drop / dragend / mouseup
    Document->>Hook: dragend / mouseup -> clearDragState()
    Note right of Hook #FCE8D6: cleanup 在必要时移除监听器
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related PRs

Poem

小兔抖抖尾,清理拖拽锁,
文本轻落静无声,
事件在文档处收束,
滚动不再被惊扰,代码更温柔 🐇✨

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.


📜 Recent review details

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

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between b77332d and 294ab97.

📒 Files selected for processing (1)
  • tests/scroll.test.js (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • tests/scroll.test.js
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 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.
    • 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.
  • 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 the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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.

@QdabuliuQ
Copy link
Author

Copy link

codecov bot commented Jul 17, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.86%. Comparing base (5769845) to head (b77332d).

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #328      +/-   ##
==========================================
+ Coverage   97.85%   97.86%   +0.01%     
==========================================
  Files          19       19              
  Lines         794      798       +4     
  Branches      193      193              
==========================================
+ Hits          777      781       +4     
  Misses         17       17              

☔ 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.

Introduces a test to verify that the list does not scroll when table text is dragged and dropped, ensuring onScroll is not triggered during drag-and-drop interactions.
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 0ce568c and bae7ddc.

📒 Files selected for processing (1)
  • tests/scroll.test.js (1 hunks)

@QdabuliuQ
Copy link
Author

有没有大佬review呀

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR fixes a bug where text dragging in a table continues to trigger scrolling after the mouse is released. The issue occurred when users selected text, dragged it outside the table, and released the mouse - subsequent mouse movements would still cause unwanted table scrolling.

  • Adds native drag event listeners to properly reset drag state during native drag operations
  • Introduces a centralized clearDragState function to handle state cleanup consistently
  • Adds comprehensive test coverage for the text dragging scenario

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 13 comments.

File Description
src/hooks/useScrollDrag.ts Implements drag event handlers and centralizes state cleanup logic
tests/scroll.test.js Adds test case to verify scrolling doesn't occur after text drag operations

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

🧹 Nitpick comments (3)
tests/scroll.test.js (3)

767-772: 重复调用 selectElementText,无实际意义

selectElementText 在进入 if 分支前已执行一次,分支内再次调用并不改变行为,建议去除以避免混淆。

-    if (targetItem && listHolder) {
-      selectElementText(targetItem);
+    if (targetItem && listHolder) {

735-735: 用例标题建议从“table”改为“list”

本仓库场景是虚拟列表,标题中的 “table” 容易引起误解,建议更准确表达。

-it('should not scroll after drop table text', () => {
+it('should not scroll after dropping selected list text', () => {

761-761: 选择器与渲染结构的耦合建议降低

为了选择目标元素,这里给 li 人为加上了 fixed-item 类。虽然能工作,但会让测试对类名有依赖。也可以直接选择第一个 li 元素,贴近真实渲染结构,降低耦合。

-        {({ id }) => <li className="fixed-item">{id}</li>}
+        {({ id }) => <li>{id}</li>}

同时把后续查询改为:

-    const fixedItems = container.querySelectorAll('.fixed-item');
+    const fixedItems = container.querySelectorAll('li');
📜 Review details

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

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between dc9f00e and b77332d.

📒 Files selected for processing (2)
  • src/hooks/useScrollDrag.ts (3 hunks)
  • tests/scroll.test.js (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/hooks/useScrollDrag.ts

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