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

feat(): support instantiateModalStack #4516

Merged
merged 1 commit into from
Oct 16, 2024
Merged

feat(): support instantiateModalStack #4516

merged 1 commit into from
Oct 16, 2024

Conversation

weareoutman
Copy link
Member

@weareoutman weareoutman commented Oct 16, 2024

依赖检查

组件之间的依赖声明,是微服务组件架构下的重要信息,请确保其正确性。

请勾选以下两组选项其中之一:

  • 本次 MR 没有使用上游组件(例如框架、后台组件等)的较新版本提供的特性。

或者:

  • 本次 MR 使用了上游组件(例如框架、后台组件等)的较新版本提供的特性。
  • 在对应的文件中更新了该上游组件的依赖版本(或确认了当前声明的依赖版本已包含本次 MR 使用的新特性)。

提交信息检查

Git 提交信息将决定包的版本发布及自动生成的 CHANGELOG,请检查工作内容与提交信息是否相符,并在以下每组选项中都依次确认。

破坏性变更是针对于下游使用者而言,可以通过本次改动对下游使用者的影响来识别变更类型:

  • 下游使用者不做任何改动,仍可以正常工作时,那么它属于普通变更。
  • 反之,下游使用者不做改动就无法正常工作时,那么它属于破坏性变更。

例如,构件修改了一个属性名,小产品 Storyboard 中需要使用新属性名才能工作,那么它就是破坏性变更。
又例如,构件还没有任何下游使用者,那么它的任何变更都是普通变更。

破坏性变更:

  • ⚠️ 本次 MR 包含破坏性变更的提交,请继续确认以下所有选项:
  • 没有更好的兼容方案,必须做破坏性变更。
  • 使用了 feat 作为提交类型。
  • 标注了 BREAKING CHANGE: 你的变更说明
  • 同时更新了本仓库中所有下游使用者的调用。
  • 同时更新了本仓库中所有下游使用者对该子包的依赖为即将发布的 major 版本。
  • 同时为其它仓库的 Migrating 做好了准备,例如文档或批量改动的方法。
  • 手动验证过破坏性变更在 Migrate 后可以正常工作。
  • 破坏性变更所在的提交没有意外携带其它子包的改动。

新特性:

  • 本次 MR 包含新特性的提交,且该提交不带有破坏性变更,并使用了 feat 作为提交类型。
  • 给新特性添加了单元测试。
  • 手动验证过新特性可以正常工作。

问题修复:

  • 本次 MR 包含问题修复的提交,且该提交不带有新特性或破坏性变更,并使用了 fix 作为提交类型。
  • 给问题修复添加了单元测试。
  • 手动验证过问题修复得到解决。

杂项工作:

即所有对下游使用者无任何影响、且没有必要显示在 CHANGELOG 中的改动,例如修改注释、测试用例、开发文档等:

  • 本次 MR 包含杂项工作的提交,且该提交不带有问题修复、新特性或破坏性变更,并使用了 chore, docs, test 等作为提交类型。

Summary by CodeRabbit

  • 新功能

    • 引入了模态堆栈管理系统,允许用户创建和管理模态窗口。
    • 新增 instantiateModalStack 函数,支持可选初始索引。
    • 定义了 ModalStack 接口,包含 pushpull 方法。
  • 文档

    • 更新了 API 报告文件,以反映新的接口和方法。
  • 测试

    • 添加了对 instantiateModalStack 函数的单元测试,确保其功能正常。

Copy link

coderabbitai bot commented Oct 16, 2024

Walkthrough

此次更改涉及@next-core/runtime包的API报告文件和相关模块的多个修改。新增了instantiateModalStack函数和ModalStack接口,以支持模态堆栈的创建和管理。多个方法的签名得到了更新,以增强功能和明确返回类型。此外,新增了ModalStack.tsModalStack.spec.ts文件,后者包含了对新函数的单元测试。最后,index.ts文件中添加了对模态堆栈模块的导出。

Changes

文件路径 更改摘要
etc/runtime.api.md 添加函数instantiateModalStack和接口ModalStack,更新多个方法签名,添加导出警告。
packages/runtime/src/ModalStack.ts 新增ModalStack接口和instantiateModalStack函数,实现模态堆栈管理。
packages/runtime/src/ModalStack.spec.ts 新增单元测试,验证instantiateModalStack函数的行为和模态堆栈的操作。
packages/runtime/src/index.ts 新增对ModalStack.js模块的导出语句,增强模块接口。

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant ModalStack
    User->>ModalStack: instantiateModalStack()
    ModalStack-->>User: ModalStack object
    User->>ModalStack: push()
    ModalStack-->>User: return new index
    User->>ModalStack: pull()
    ModalStack-->>User: return void
Loading

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: 2

🧹 Outside diff range and nitpick comments (7)
packages/runtime/src/index.ts (1)

43-43: 导出 ModalStack 模块看起来不错!

新增的导出语句与文件中现有的导出模式一致,并且符合支持实例化模态堆栈的 PR 目标。这个更改使得 ModalStack 功能可以被其他导入此索引文件的应用程序部分使用。

为了保持代码组织的一致性,您可以考虑将这个新的导出语句与其他类似的导出语句组合在一起。例如,可以将它移到其他 UI 相关导出(如 Notification 和 Dialog)的附近。

packages/runtime/src/ModalStack.spec.ts (4)

3-3: 常量声明看起来不错,但可以考虑添加注释

常量的命名清晰地表明了其用途。不过,考虑添加一个简短的注释来解释为什么选择1000作为默认初始索引,这样可以提高代码的可读性。

建议添加如下注释:

+// 默认初始索引值,用于模态堆栈的起始位置
const defaultInitialIndex = 1000;

20-33: 第二个测试用例覆盖了多个场景,非常好

这个测试用例很好地验证了多个堆栈的行为和索引的正确递增。它涵盖了推送到不同堆栈和从堆栈中拉出的情况。

为了提高可读性,建议添加一些注释来解释每个断言的预期结果。例如:

 const result1 = stack1.push();
 const result2 = stack2.push();
+// 第一个堆栈应返回默认初始索引
 expect(result1).toBe(defaultInitialIndex);
+// 第二个堆栈应返回递增后的索引
 expect(result2).toBe(defaultInitialIndex + 1);

 stack1.pull();
 const result3 = stack3.push();
+// 第三个堆栈应返回再次递增后的索引
 expect(result3).toBe(defaultInitialIndex + 2);

35-41: 第三个测试用例验证了一个重要的边缘情况

这个测试很好地验证了在没有 pull 操作的情况下多次 push 的行为。它确保了多次 push 到同一个堆栈会返回相同的索引。

为了使测试更加健壮,建议添加一个额外的 push 操作和断言:

 const stack = instantiateModalStack();
 const result1 = stack.push();
 const result2 = stack.push();
+const result3 = stack.push();
 expect(result1).toBe(defaultInitialIndex);
 expect(result2).toBe(defaultInitialIndex);
+expect(result3).toBe(defaultInitialIndex);

这将进一步确认多次 push 操作的一致性。


43-46: 第四个测试用例验证了一个重要的功能

这个测试很好地验证了堆栈能够接受并使用自定义的初始索引。测试简洁明了。

为了使测试更加全面,建议添加一个额外的断言来验证多次 push 的行为:

 const stack = instantiateModalStack(10);
 expect(stack.push()).toBe(10);
+expect(stack.push()).toBe(10);

这将确保自定义初始索引在多次 push 操作中保持一致。

etc/runtime.api.md (2)

247-248: 新函数 instantiateModalStack 的声明看起来不错。

这个函数的添加增强了模态框栈的管理功能。建议为该函数添加详细的 JSDoc 注释,解释 initialIndex 参数的用途以及返回的 ModalStack 对象的作用。


282-289: ModalStack 接口的定义看起来合理。

接口提供了基本的栈操作(push 和 pull)。为了提高代码的可读性和可维护性,建议:

  1. 为接口和每个方法添加 JSDoc 注释,解释它们的用途和行为。
  2. 考虑为 push 方法添加一个参数,表示要添加到栈中的项。
  3. 考虑为 pull 方法添加一个返回值,表示从栈中移除的项。

例如:

export interface ModalStack {
  /**
   * 从栈顶移除一个模态框。
   * @returns 被移除的模态框,如果栈为空则返回 undefined。
   */
  pull: () => ModalItem | undefined;

  /**
   * 向栈顶添加一个新的模态框。
   * @param item 要添加的模态框项。
   * @returns 添加后的栈大小。
   */
  push: (item: ModalItem) => number;
}

这样的修改将使接口更加明确和类型安全。

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between a0b2c1e and b0817ca.

📒 Files selected for processing (4)
  • etc/runtime.api.md (2 hunks)
  • packages/runtime/src/ModalStack.spec.ts (1 hunks)
  • packages/runtime/src/ModalStack.ts (1 hunks)
  • packages/runtime/src/index.ts (1 hunks)
🧰 Additional context used
🔇 Additional comments (6)
packages/runtime/src/ModalStack.ts (2)

3-6: 接口定义清晰明确

ModalStack 接口定义清晰,准确地描述了模态堆栈的结构和方法签名。


8-8: 函数声明符合最佳实践

instantiateModalStack 函数的声明使用了可选参数和默认值,符合 TypeScript 的最佳实践。返回类型也正确指定为 ModalStack

packages/runtime/src/ModalStack.spec.ts (4)

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

导入语句正确地使用了类型导入,这有助于确保类型安全性。


5-12: 测试套件设置得很好

describe 块和 beforeEach 的设置遵循了 Jest 的最佳实践。使用 jest.isolateModules 确保了每个测试都有一个新的模块实例,这有助于防止测试之间的状态泄漏。


14-18: 第一个测试用例设计得很好

这个测试用例简洁明了,正确验证了堆栈的基本功能。它确保了 push 操作返回预期的默认初始索引值。


1-47: 总体来说,这是一个优秀的测试文件

这个测试文件全面覆盖了 instantiateModalStack 函数的功能,包括基本操作、多个堆栈的交互、边缘情况和自定义初始化。测试结构良好,遵循了 Jest 的最佳实践。

主要优点:

  1. 测试覆盖了关键功能和边缘情况
  2. 使用 jest.isolateModules 确保了测试间的隔离
  3. 测试用例简洁明了

建议改进:

  1. 考虑添加对 pull 操作的更多测试,特别是在多个堆栈交互的情况下
  2. 可以添加一个测试来验证连续多次 pull 操作后 push 的行为
  3. 考虑添加一个测试来检查极端情况,如非常大的初始索引值

总的来说,这是一个高质量的测试文件,为 ModalStack 模块提供了可靠的覆盖。

packages/runtime/src/ModalStack.ts Show resolved Hide resolved
packages/runtime/src/ModalStack.ts Show resolved Hide resolved
Copy link

codecov bot commented Oct 16, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.21%. Comparing base (a0b2c1e) to head (b0817ca).
Report is 2 commits behind head on v3.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##               v3    #4516   +/-   ##
=======================================
  Coverage   95.20%   95.21%           
=======================================
  Files         204      205    +1     
  Lines        8846     8860   +14     
  Branches     1679     1682    +3     
=======================================
+ Hits         8422     8436   +14     
  Misses        319      319           
  Partials      105      105           
Files with missing lines Coverage Δ
packages/runtime/src/ModalStack.ts 100.00% <100.00%> (ø)

Copy link

cypress bot commented Oct 16, 2024

next-core    Run #10656

Run Properties:  status check passed Passed #10656  •  git commit 9cbf25555a ℹ️: Merge b0817ca8efcda3686983a91bcaf880a3d1884c51 into a0b2c1e287648aca6a7ba8e62e78...
Project next-core
Run status status check passed Passed #10656
Run duration 00m 25s
Commit git commit 9cbf25555a ℹ️: Merge b0817ca8efcda3686983a91bcaf880a3d1884c51 into a0b2c1e287648aca6a7ba8e62e78...
Committer Shenwei Wang
View all properties for this run ↗︎

Test results
Tests that failed  Failures 0
Tests that were flaky  Flaky 0
Tests that did not run due to a developer annotating a test with .skip  Pending 0
Tests that did not run due to a failure in a mocha hook  Skipped 0
Tests that passed  Passing 16

@WHChen-Alex WHChen-Alex enabled auto-merge October 16, 2024 06:56
@WHChen-Alex WHChen-Alex merged commit f25c695 into v3 Oct 16, 2024
8 checks passed
@WHChen-Alex WHChen-Alex deleted the steve/v3-modal-stack branch October 16, 2024 07:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants