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:RangePicker the triangle sign was not positioned correctly in some cases #886

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

Conversation

bbb169
Copy link

@bbb169 bbb169 commented Oct 26, 2024

fix: ant-design/ant-design#51071

const offsetUnit = getoffsetUnit(realPlacement, rtl);

主要是这处的问题,trrigger自己改了popupAligin为tr,但是外面没有收到,依旧是以tl来判断offsetUnit,所以只要在popup重新调整placement的时候更新就行

Summary by CodeRabbit

  • 新功能

    • 增强了弹出窗口的对齐功能,允许根据上下文动态调整弹出窗口的位置。
    • 引入了新的状态管理功能,以更好地控制弹出窗口的对齐。
  • 测试

    • 改进了 DayRangePicker 组件的测试,增加了对弹出窗口对齐和尺寸的验证,确保组件在不同条件下的布局和行为准确无误。
    • 新增了测试用例,验证组件在处理禁用日期和鼠标事件时的行为。

Copy link

vercel bot commented Oct 26, 2024

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

Name Status Preview Comments Updated (UTC)
picker ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 7, 2024 4:45pm

Copy link

coderabbitai bot commented Oct 26, 2024

Caution

Review failed

The head commit changed during the review from 8f0cdc4 to f6ee130.

Walkthrough

此次更改涉及多个组件的更新,主要是为了增强弹出窗口的对齐功能。PopupRangePickerRangeSelectorPickerTrigger 组件都引入了新的 alignedPlacement 属性,以改善弹出窗口的定位。此外,PickerContext 也进行了相应的更新,以支持新的状态管理。测试文件也进行了相应的修改,以确保新功能的正确性和稳定性。

Changes

文件路径 更改摘要
src/PickerInput/Popup/index.tsx 添加 alignedPlacement 属性,更新 realPlacement 变量,定义 onResize 函数以适应大小变化。
src/PickerInput/RangePicker.tsx 添加 alignedPlacement 状态,更新上下文依赖,修改 triggerOpen 函数以检查 disabled 状态。
src/PickerInput/Selector/RangeSelector.tsx 更新上下文以包含 alignedPlacement,优化 activeOffset 计算,调整 syncActiveOffset 的调用。
src/PickerInput/context.tsx PickerContextProps 接口中添加 alignedPlacementsetAlignedPlacement 属性。
src/PickerTrigger/index.tsx 更新 PickerTriggerProps 类型以包含 alignedPlacement,调整 realPlacement 逻辑。
tests/new-range.spec.tsx 扩展测试设置,增加新测试用例以验证弹出窗口箭头的正确定位。

Assessment against linked issues

Objective Addressed Explanation
确保 RangePicker 的三角标记在正确位置 (#51071)

Possibly related PRs

Suggested reviewers

  • zombieJ
  • afc163

Poem

在草地上跳跃的小兔,
新功能如花般盛开,
弹出窗口不再迷路,
对齐位置真是精彩!
让我们欢呼,尽情欢笑,
兔子们一起庆祝这变化! 🐇✨


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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.
    • 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 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

@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: 4

🧹 Outside diff range and nitpick comments (3)
src/PickerInput/context.tsx (1)

14-14: 建议完善 setAlignedPlacement 的文档说明

为了保持文档的一致性和完整性,建议为 setAlignedPlacement 属性添加类似的注释说明。

建议添加如下注释:

  /** trigger will change placement while aligining */
  alignedPlacement?: string;
+ /** Callback to update the aligned placement state */
  setAlignedPlacement?: React.Dispatch<React.SetStateAction<string>>;
tests/range-aligin.spec.tsx (1)

20-77: 建议为复杂的模拟设置添加注释说明

虽然模拟设置很完整,但建议添加注释来解释以下配置的用途:

  • viewport 尺寸的设置原因
  • 不同元素类名对应的尺寸值的计算依据
  • getBoundingClientRect 返回值的设计考虑

这将帮助其他开发者更好地理解和维护测试代码。

src/PickerInput/RangePicker.tsx (1)

680-681: 确保对齐状态在上下文中可用

alignedPlacementsetAlignedPlacement 添加到上下文中是合理的,这样子组件就能够访问和更新对齐信息。依赖项列表的更新也很完整。

不过建议添加类型注释以提高代码可维护性:

- const [alignedPlacement, setAlignedPlacement] = React.useState<string>();
+ const [alignedPlacement, setAlignedPlacement] = React.useState<'top' | 'bottom'>();

Also applies to: 689-690

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 281bf37 and e5f2671.

📒 Files selected for processing (6)
  • src/PickerInput/Popup/index.tsx (2 hunks)
  • src/PickerInput/RangePicker.tsx (2 hunks)
  • src/PickerInput/Selector/RangeSelector.tsx (3 hunks)
  • src/PickerInput/context.tsx (1 hunks)
  • src/PickerTrigger/index.tsx (2 hunks)
  • tests/range-aligin.spec.tsx (1 hunks)
🧰 Additional context used
🪛 Biome
tests/range-aligin.spec.tsx

[error] 79-81: Disallow duplicate setup and teardown hooks.

Disallow beforeEach duplicacy inside the describe function.

(lint/suspicious/noDuplicateTestHooks)

🔇 Additional comments (9)
src/PickerInput/context.tsx (1)

12-13: 代码结构清晰,文档说明充分!

alignedPlacement 属性的添加和其注释很好地解释了其用途,有助于解决三角标记定位问题。

src/PickerTrigger/index.tsx (1)

80-80: 从上下文中获取 setAlignedPlacement 的实现正确!

通过 React Context 获取 setAlignedPlacement 方法的方式符合最佳实践,这为动态更新三角形位置提供了必要的状态管理能力。

tests/range-aligin.spec.tsx (1)

1-4: 导入语句看起来不错!

测试所需的所有必要库都已正确导入。

src/PickerInput/Popup/index.tsx (2)

87-87: 从上下文中获取 alignedPlacement 属性的实现正确!

通过 PickerContext 获取 alignedPlacement 属性的方式符合 React 最佳实践,这为弹出框的定位提供了必要的上下文信息。


Line range hint 216-232: 请验证三角形箭头在不同场景下的位置正确性

实现逻辑看起来合理,但建议验证以下场景:

  1. RTL 和 LTR 布局下的箭头位置
  2. 不同 placement 值的展示效果
  3. flex-end 布局下的对齐情况
✅ Verification successful

Let me gather more information about the placement and arrow styling implementation.


Let me gather one final piece of information about the placement calculation implementation.


箭头位置计算逻辑验证完成,实现正确

通过代码分析和测试用例验证,确认以下几点:

  • RTL 和 LTR 布局下箭头位置计算正确,通过 getoffsetUnit 函数自动切换
  • 已覆盖 bottomLeftbottomRight 两种主要场景的测试
  • 样式定义完善,包括箭头大小、位置和过渡动画

测试用例完整验证了:

  • 默认 bottomLeft 对齐时箭头位于左侧
  • 当弹出框位于右侧时自动切换为 bottomRight 对齐,箭头位于右侧
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# 搜索与箭头位置相关的样式定义
rg -l "range-arrow" --type css

# 查找所有使用 RangePicker 的测试用例
rg -l "RangePicker.*test" --type typescript

# 检查是否有其他组件依赖 placement 的计算
ast-grep --pattern 'getRealPlacement($_, $_)'

Length of output: 736


Script:

#!/bin/bash
# 查找样式文件
fd -e less -e css

# 检查 getRealPlacement 的具体实现
ast-grep --pattern 'function getRealPlacement($$$)'

# 查找测试文件
fd -e test.tsx -e test.ts -e spec.tsx -e spec.ts

# 检查箭头相关的样式类定义
rg "range-arrow" -A 5 -B 5

Length of output: 8680


Script:

# 检查 getRealPlacement 函数的具体实现
rg -A 10 "function getRealPlacement" 

# 检查 getoffsetUnit 函数的实现
rg -A 5 "function getoffsetUnit"

# 查看完整的测试用例内容
cat tests/range-aligin.spec.tsx

Length of output: 4514

src/PickerInput/Selector/RangeSelector.tsx (2)

123-123: 从上下文中获取 alignedPlacement

从 PickerContext 中解构出 alignedPlacement,用于优化弹出窗口的定位逻辑。


Line range hint 176-189: 优化了活动条的位置计算逻辑

代码改进:

  • 使用 alignedPlacement 作为首选定位策略
  • 简化了 activeOffset 的计算逻辑
  • 修复了三角形标记在某些情况下位置不正确的问题

建议:考虑添加单元测试以验证不同布局场景下的位置计算。

src/PickerInput/RangePicker.tsx (2)

669-671: 新增状态用于控制弹出层对齐方式

新增的 alignedPlacement 状态变量将用于跟踪和控制弹出层的对齐位置,这是解决三角标记定位问题的关键部分。


683-691: 验证上下文依赖项的完整性

上下文的依赖项列表包含了所有必要的值,这确保了当任何相关值发生变化时,上下文会正确地更新。

src/PickerTrigger/index.tsx Outdated Show resolved Hide resolved
tests/range-aligin.spec.tsx Outdated Show resolved Hide resolved
Comment on lines 88 to 134
it('the arrow should be set to `inset-inline-start` when the popup is aligned to `bottomLeft`.', async () => {
render(<DayRangePicker open />);

await act(async () => {
jest.runAllTimers();

await Promise.resolve();
});
expect(document.querySelector('.rc-picker-range-arrow')).toHaveStyle({
'inset-inline-start': '0',
});
});

it('the arrow should be set to `inset-inline-end` when the popup is aligned to `bottomRight`.', async () => {
const mock = spyElementPrototypes(HTMLDivElement, {
getBoundingClientRect() {
if (this.className.includes('rc-picker-dropdown')) {
return {
x: 0,
y: 0,
width: 300,
height: 100,
};
}
if (this.className.includes('rc-picker-range')) {
return {
...rangeRect,
x: 300,
};
}
},
});

render(<DayRangePicker open />);

await act(async () => {
jest.runAllTimers();

await Promise.resolve();
});
expect(document.querySelector('.rc-picker-range-arrow')).toHaveStyle({
'inset-inline-end': '0',
});

mock.mockRestore();
});
});
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

建议扩展测试用例覆盖范围

当前的测试用例仅覆盖了 bottomLeft 和 bottomRight 两种情况。建议添加以下场景的测试:

  1. 窗口大小改变时的箭头位置调整
  2. 不同 RTL(从右到左)设置下的箭头位置
  3. 边界情况处理(如容器宽度极小时)

这将确保组件在各种场景下都能正确定位箭头。

另外,建议将重复的等待逻辑抽取为测试辅助函数:

async function waitForUpdate() {
  await act(async () => {
    jest.runAllTimers();
    await Promise.resolve();
  });
}

tests/range-aligin.spec.tsx Outdated Show resolved Hide resolved
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link

codecov bot commented Oct 28, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.46%. Comparing base (e1d6848) to head (f6ee130).

Additional details and impacted files
@@            Coverage Diff             @@
##           master     #886      +/-   ##
==========================================
+ Coverage   95.43%   95.46%   +0.02%     
==========================================
  Files          64       64              
  Lines        2719     2735      +16     
  Branches      762      773      +11     
==========================================
+ Hits         2595     2611      +16     
  Misses        121      121              
  Partials        3        3              

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

@three-water666
Copy link

动画
@bbb169 好像还有点问题,点击右边的第一下不能正确指向,然后就是下面的activeBar位置不对

@bbb169
Copy link
Author

bbb169 commented Oct 31, 2024

动画 动画 @bbb169 好像还有点问题,点击右边的第一下不能正确指向,然后就是下面的activeBar位置不对

是的 我再看看

@bbb169
Copy link
Author

bbb169 commented Nov 1, 2024

动画 动画 @bbb169 好像还有点问题,点击右边的第一下不能正确指向,然后就是下面的activeBar位置不对

已修复

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

🧹 Outside diff range and nitpick comments (2)
tests/range-align.spec.tsx (2)

6-85: 建议改进测试设置的组织结构

当前的测试设置代码较为复杂,建议进行以下优化:

  1. 将模拟配置提取到单独的辅助函数中
  2. 为复杂的模拟添加更详细的注释,解释每个值的用途
  3. 考虑使用常量来存储固定的尺寸值

建议重构示例:

// 视口尺寸常量
const VIEWPORT_SIZE = {
  width: 400,
  height: 400,
};

// 弹出框尺寸常量
const POPUP_SIZE = {
  width: 300,
  height: 100,
};

// 设置视口尺寸
const mockViewport = () => {
  spyElementPrototypes(HTMLElement, {
    clientWidth: { get: () => VIEWPORT_SIZE.width },
    clientHeight: { get: () => VIEWPORT_SIZE.height },
  });
};

// 设置元素尺寸
const mockElementSizes = () => {
  spyElementPrototypes(HTMLDivElement, {
    // ... 现有的模拟代码 ...
  });
};

87-90: 建议增强清理过程

当前的清理过程可以更加完整。建议添加对所有模拟的显式还原。

建议添加:

afterEach(() => {
  cleanup();
  jest.useRealTimers();
  // 还原所有的 spy
  jest.restoreAllMocks();
  // 清除所有的元素原型模拟
  document.documentElement.scrollLeft = 0;
});
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 1f63ee9 and f33f841.

📒 Files selected for processing (2)
  • src/PickerInput/Selector/RangeSelector.tsx (4 hunks)
  • tests/range-align.spec.tsx (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/PickerInput/Selector/RangeSelector.tsx
🔇 Additional comments (1)
tests/range-align.spec.tsx (1)

1-5: 导入声明看起来很合适!

测试文件引入了必要的测试库和组件,包括 React Testing Library 用于组件测试,rc-util 用于 DOM 模拟,以及自定义的测试工具组件。

Comment on lines 92 to 142
it('the arrow should be set to `inset-inline-start` when the popup is aligned to `bottomLeft`.', async () => {
render(<DayRangePicker open />);

await act(async () => {
jest.runAllTimers();

await Promise.resolve();
});
expect(document.querySelector('.rc-picker-range-arrow')).toHaveStyle({
'inset-inline-start': '0',
});
});

it('the arrow should be set to `inset-inline-end` when the popup is aligned to `bottomRight`.', async () => {
const mock = spyElementPrototypes(HTMLDivElement, {
getBoundingClientRect() {
if (this.className.includes('rc-picker-dropdown')) {
return {
x: 0,
y: 0,
width: 300,
height: 100,
};
}
if (this.className.includes('rc-picker-range')) {
return {
...rangeRect,
x: 300,
};
}
},
});

render(<DayRangePicker open />);

await act(async () => {
jest.runAllTimers();

await Promise.resolve();
});
expect(document.querySelector('.rc-picker-range-arrow')).toHaveStyle({
'inset-inline-end': '100px',
});

expect(document.querySelector('.rc-picker-active-bar')).toHaveStyle({
'inset-inline-end': '100px',
});

mock.mockRestore();
});
});
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

建议扩展测试用例覆盖范围

当前测试用例仅覆盖了 bottomLeftbottomRight 两种情况。建议增加以下测试场景:

  1. 窗口大小变化时的箭头位置
  2. 滚动时的箭头位置
  3. 边界情况(如容器太小)
  4. 动态内容变化时的位置更新

示例测试用例:

it('应该在窗口调整大小时正确更新箭头位置', async () => {
  render(<DayRangePicker open />);
  
  // 模拟窗口调整
  act(() => {
    global.innerWidth = 800;
    global.dispatchEvent(new Event('resize'));
  });
  
  await act(async () => {
    jest.runAllTimers();
  });
  
  // 验证箭头位置是否更新
});

it('应该在容器空间不足时正确处理箭头位置', async () => {
  // 模拟一个很小的容器
  rangeRect.width = 50;
  
  render(<DayRangePicker open />);
  
  await act(async () => {
    jest.runAllTimers();
  });
  
  // 验证箭头位置处理
});

@three-water666
Copy link

还有一个问题,这个问题好像之前就有,上右对齐的时候,箭头不在下方
动画

@bbb169
Copy link
Author

bbb169 commented Nov 3, 2024

还有一个问题,这个问题好像之前就有,上右对齐的时候,箭头不在下方 动画 动画

这个问题跟本次的问题是一个解决方式 ,加个alignedPlacement就能解决了
trigger不需要做改动 : cba76c7

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

🧹 Outside diff range and nitpick comments (3)
src/PickerInput/RangePicker.tsx (1)

680-681: Context 依赖项更新需要优化

虽然新增的 alignedPlacement 相关状态已正确添加到 context 中,但建议将这些新增的状态与其他布局相关的属性组合在一起,以提高代码的组织性。

建议重构如下:

  const context = React.useMemo(
    () => ({
      prefixCls,
      locale,
      generateConfig,
      button: components.button,
      input: components.input,
+     // Layout related props
      alignedPlacement,
      setAlignedPlacement,
    }),
    [
      prefixCls,
      locale,
      generateConfig,
      components.button,
      components.input,
+     // Layout related deps
      alignedPlacement,
      setAlignedPlacement,
    ],
  );

Also applies to: 683-691

tests/new-range.spec.tsx (2)

60-127: 建议优化元素模拟的代码组织

当前的元素模拟代码结构较为复杂,建议将相关的模拟逻辑进行分组和注释。

建议按照以下方式重构:

 beforeAll(() => {
+  // Mock viewport dimensions
   jest.spyOn(document.documentElement, 'scrollWidth', 'get').mockReturnValue(1000);

-  // Viewport size
   spyElementPrototypes(HTMLElement, {
     clientWidth: {
       get: () => 400,
     },
     clientHeight: {
       get: () => 400,
     },
   });

-  // Popup size
+  // Mock component dimensions and positioning
   spyElementPrototypes(HTMLDivElement, {
     getBoundingClientRect() {
+      // Dropdown dimensions
       if (this.className.includes('rc-picker-dropdown')) {
         return {
           x: 0,
           y: 0,
           width: 300,
           height: 100,
         };
       }
+      // Range picker dimensions
       if (this.className.includes('rc-picker-range')) {
         return rangeRect;
       }
+      // Picker dimensions
       if (this.className.includes('rc-picker')) {
         return rangeRect;
       }
     },
     // ... rest of the code
   });
 });

1425-1476: 建议增强弹出框对齐测试用例

当前的测试用例已经覆盖了基本场景,但建议添加更多边界情况的测试。

建议考虑添加以下测试场景:

  1. 窗口边缘对齐的情况
  2. 不同 RTL 设置下的对齐情况
  3. 弹出框大小动态变化时的对齐行为

示例:

it('should handle alignment when popup size changes', async () => {
  const { rerender } = render(<DayRangePicker open />);
  
  // 修改弹出框大小
  rangeRect.width = 400;
  rerender(<DayRangePicker open />);
  
  await act(async () => {
    jest.runAllTimers();
    await Promise.resolve();
  });
  
  // 验证箭头位置是否正确调整
  expect(document.querySelector('.rc-picker-range-arrow')).toHaveStyle({
    'inset-inline-end': '200px',
  });
});
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f33f841 and 7add058.

📒 Files selected for processing (3)
  • src/PickerInput/RangePicker.tsx (3 hunks)
  • src/PickerTrigger/index.tsx (3 hunks)
  • tests/new-range.spec.tsx (4 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/PickerTrigger/index.tsx
🧰 Additional context used
🪛 Biome
tests/new-range.spec.tsx

[error] 48-58: Disallow duplicate setup and teardown hooks.

Disallow beforeEach duplicacy inside the describe function.

(lint/suspicious/noDuplicateTestHooks)

🔇 Additional comments (2)
src/PickerInput/RangePicker.tsx (2)

669-671: 新增状态用于管理弹出框对齐方式

引入 alignedPlacement 状态变量来追踪弹出框的实际对齐位置,这是解决三角标记定位问题的关键部分。


755-755: 验证 alignedPlacement 在不同场景下的表现

需要确保在各种布局场景下(特别是使用 flex-end 的搜索表单中)三角标记的位置都能正确对齐。

tests/new-range.spec.tsx Outdated Show resolved Hide resolved
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: 0

🧹 Outside diff range and nitpick comments (1)
tests/new-range.spec.tsx (1)

1422-1473: 建议优化测试用例的实现方式

测试用例本身验证了正确的功能点,但有以下几点建议改进:

  1. 建议将 mock 实现抽取为可重用的辅助函数
  2. 建议为魔法数字(如 100px)添加注释说明其计算方式

建议按照以下方式重构:

+ // 抽取共用的 mock 函数
+ const mockPickerRect = (x: number) => {
+   return spyElementPrototypes(HTMLDivElement, {
+     getBoundingClientRect() {
+       if (this.className.includes('rc-picker-dropdown')) {
+         return { x: 0, y: 0, width: 300, height: 100 };
+       }
+       if (this.className.includes('rc-picker-range')) {
+         return { ...rangeRect, x };
+       }
+     },
+   });
+ };

  describe('pupop aligned position', () => {
    it('the arrow should be set to `inset-inline-start`...', async () => {
      render(<DayRangePicker open />);
      await act(async () => {
        jest.runAllTimers();
        await Promise.resolve();
      });
      expect(document.querySelector('.rc-picker-range-arrow'))
        .toHaveStyle({ 'inset-inline-start': '0' });
    });

    it('the arrow should be set to `inset-inline-end`...', async () => {
-     const mock = spyElementPrototypes(HTMLDivElement, {
-       getBoundingClientRect() {
-         if (this.className.includes('rc-picker-dropdown')) {
-           return { x: 0, y: 0, width: 300, height: 100 };
-         }
-         if (this.className.includes('rc-picker-range')) {
-           return { ...rangeRect, x: 300 };
-         }
-       },
-     });
+     // 使用抽取的 mock 函数
+     const mock = mockPickerRect(300);

+     // 100px = rangeRect.width / 2
      render(<DayRangePicker open />);
      await act(async () => {
        jest.runAllTimers();
        await Promise.resolve();
      });
      expect(document.querySelector('.rc-picker-range-arrow'))
        .toHaveStyle({ 'inset-inline-end': '100px' });

      expect(document.querySelector('.rc-picker-active-bar'))
        .toHaveStyle({ 'inset-inline-end': '100px' });

      mock.mockRestore();
    });
  });
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 7add058 and d02ddec.

📒 Files selected for processing (1)
  • tests/new-range.spec.tsx (5 hunks)
🔇 Additional comments (1)
tests/new-range.spec.tsx (1)

1181-1181: 测试用例实现正确!

tabIndex 属性传递的测试用例实现简洁明了,验证了预期功能。

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

🧹 Outside diff range and nitpick comments (3)
src/PickerInput/Selector/util.ts (1)

17-19: 建议添加空值检查以提高代码健壮性

函数实现简洁明了,但建议添加空值检查以防止可能的运行时错误。

建议修改如下:

 export function getWin(ele: HTMLElement) {
-  return ele.ownerDocument.defaultView;
+  return ele?.ownerDocument?.defaultView || window;
 }

这样可以:

  • 防止 elenull 的情况
  • 防止 ownerDocumentnull 的情况
  • 提供 window 作为降级方案
tests/new-range.spec.tsx (1)

1430-1511: 建议优化测试代码结构

为提高代码的可维护性,建议:

  1. 将共同的设置代码抽取为辅助函数,如 mockComputedStylemockElementRect
  2. 为魔法数字添加注释说明,如 borderRightWidth: '4px'inset-inline-end: '100px' 的计算依据

建议重构示例:

+ // 模拟计算样式
+ const mockComputedStyle = () => {
+   const oriGetComputedStyle = window.getComputedStyle;
+   window.getComputedStyle = (ele: HTMLElement) => {
+     const retObj = oriGetComputedStyle(ele);
+     // 模拟边框宽度用于箭头位置计算
+     retObj.borderRightWidth = '4px';
+     retObj.borderLeftWidth = '2px';
+     return retObj;
+   };
+   return oriGetComputedStyle;
+ };

  describe('pupop aligned position', () => {
    let oriGetComputedStyle;
    
    beforeEach(() => {
+     oriGetComputedStyle = mockComputedStyle();
    });
    
    afterEach(() => {
+     window.getComputedStyle = oriGetComputedStyle;
    });
tests/range.spec.tsx (1)

544-546: 建议同时检查第二个输入框的 tabIndex 属性

在当前测试中,只验证了第一个输入框的 tabIndex 属性是否正确。由于 DayRangePicker 组件包含两个输入框(开始日期和结束日期),建议同时检查第二个输入框的 tabIndex 属性,确保两个输入框的 tabIndex 都被正确设置。

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between d02ddec and 9e4ee41.

📒 Files selected for processing (4)
  • src/PickerInput/Selector/RangeSelector.tsx (4 hunks)
  • src/PickerInput/Selector/util.ts (1 hunks)
  • tests/new-range.spec.tsx (5 hunks)
  • tests/range.spec.tsx (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/PickerInput/Selector/RangeSelector.tsx
🔇 Additional comments (3)
tests/new-range.spec.tsx (2)

1189-1189: 测试用例实现正确!

tabIndex 属性传递的测试用例实现简单明了。


1430-1511: 测试实现完整且覆盖了关键场景!

测试用例完整验证了弹出层箭头在不同对齐方式下的定位,包括:

  • bottomLeft 对齐时的箭头位置
  • bottomRight 对齐时的箭头位置
  • 激活条的位置计算

测试代码正确模拟了所需的浏览器 API 并确保了适当的清理。

tests/range.spec.tsx (1)

708-709: 确认前缀元素正确渲染

测试用例成功验证了 DayRangePicker 组件的 prefix 属性,前缀元素正确渲染至文档中,代码实现无误。

tests/range.spec.tsx Show resolved Hide resolved
@bbb169
Copy link
Author

bbb169 commented Nov 3, 2024

还有一个问题,这个问题好像之前就有,上右对齐的时候,箭头不在下方 动画 动画

这个地方还有一个已有的问题 ,这个activeBar的位置总是差1px对不齐输入框,原因有两个

  1. 计算偏移时采取的是offsetLeft,这是个整数,当输入框发生flex坍缩时宽度就变成小数点了,这时拿到的offsetLeft就十分不正确
  2. 当输入框focus时,整个picker会有1px的border,这1px应该被考虑进来: 05eeced

@zombieJ

);
const offsetLeft = x - pX;

const activeOffset = placementRight ? parentWidth - inputWidth - offsetLeft : offsetLeft;
Copy link
Member

Choose a reason for hiding this comment

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

感觉有点复杂,我再想想有没有更简洁的解法。

Copy link
Member

Choose a reason for hiding this comment

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

想办法给这种自动更换 placement 情况下的 offsetUnit 去反应该就行。

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.

RangePicker the triangle sign was not positioned correctly in some cases
3 participants