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: correct usages about toast props #3083

Merged
merged 1 commit into from
Mar 14, 2025

Conversation

Alex-huxiyang
Copy link
Collaborator

@Alex-huxiyang Alex-huxiyang commented Mar 13, 2025

Summary by CodeRabbit

  • 重构
    • 统一并简化了提示消息的展示,移除了额外的自定义选项,各示例现均采用默认配置,体验更加一致。
    • 部分示例中移除了不再必要的状态管理和逻辑,界面反馈更直观。
  • 文档
    • 更新了组件文档,移除了已废弃的提示类型说明,确保文档内容与最新实现一致。

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Copy link

coderabbitai bot commented Mar 13, 2025

Walkthrough

此次修改主要在各个示例组件中移除了 Toast 组件传入的 type 属性,同时调整了与 toast 类型相关的状态管理和函数签名。部分示例(如 inputnumber 的 demo3、demo8 和 demo9)中,还移除了与 toast 类型管理相关的 state 变量和函数调用。文档中也同步删除了对 type 属性的说明,整体上组件的核心功能与展示逻辑保持不变。

Changes

File(s) 变更概述
src/packages/icon/demo.taro.tsx
src/.../icon/demos/taro/demo6.tsx
src/.../icon/demos/taro/demo7.tsx
src/.../infiniteloading/demos/taro/demo2.tsx
src/.../numberkeyboard/demos/taro/demo6.tsx
src/.../progress/demos/taro/demo7.tsx
src/.../pulltorefresh/demos/taro/demo4.tsx
src/.../searchbar/demos/taro/demo3.tsx
src/.../searchbar/demos/taro/demo4.tsx
src/.../switch/demos/taro/demo2.tsx
src/.../switch/demos/taro/demo6.tsx
src/.../table/demo.taro.tsx
移除 Toast 组件中传递的 type 属性,使其依赖默认行为
src/packages/inputnumber/demos/taro/demo3.tsx
src/packages/inputnumber/demos/taro/demo8.tsx
src/packages/inputnumber/demos/taro/demo9.tsx
更新 toastShow 函数签名,去除第二参数;移除 toastType 状态;demo9 中完全移除了 Toast 组件
src/packages/toast/demos/taro/demo2.tsx 删除 Toast.show 方法调用中的 position 属性
src/packages/toast/doc.taro.md 从 Toast 组件的 Props 文档中删除 type 属性的描述

Possibly related PRs

Suggested reviewers

  • xiaoyatong
  • oasis-cloud

Poem

我是一只跳跃的小兔子,
在代码丛中轻快穿梭,
去除冗余,简化逻辑,
Toast 没了 type 更显自由,
欢欣跳跃,祝福代码如春风拂面!
🐰🌸

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.

 ERR_PNPM_OPTIONAL_DEPS_REQUIRE_PROD_DEPS  Optional dependencies cannot be installed without production dependencies

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.

📜 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 75be547 and 86b8f80.

📒 Files selected for processing (17)
  • src/packages/icon/demo.taro.tsx (0 hunks)
  • src/packages/icon/demos/taro/demo6.tsx (1 hunks)
  • src/packages/icon/demos/taro/demo7.tsx (1 hunks)
  • src/packages/infiniteloading/demos/taro/demo2.tsx (0 hunks)
  • src/packages/inputnumber/demos/taro/demo3.tsx (1 hunks)
  • src/packages/inputnumber/demos/taro/demo8.tsx (1 hunks)
  • src/packages/inputnumber/demos/taro/demo9.tsx (1 hunks)
  • src/packages/numberkeyboard/demos/taro/demo6.tsx (0 hunks)
  • src/packages/progress/demos/taro/demo7.tsx (0 hunks)
  • src/packages/pulltorefresh/demos/taro/demo4.tsx (0 hunks)
  • src/packages/searchbar/demos/taro/demo3.tsx (0 hunks)
  • src/packages/searchbar/demos/taro/demo4.tsx (0 hunks)
  • src/packages/switch/demos/taro/demo2.tsx (0 hunks)
  • src/packages/switch/demos/taro/demo6.tsx (0 hunks)
  • src/packages/table/demo.taro.tsx (0 hunks)
  • src/packages/toast/demos/taro/demo2.tsx (0 hunks)
  • src/packages/toast/doc.taro.md (0 hunks)
💤 Files with no reviewable changes (12)
  • src/packages/infiniteloading/demos/taro/demo2.tsx
  • src/packages/searchbar/demos/taro/demo4.tsx
  • src/packages/toast/doc.taro.md
  • src/packages/icon/demo.taro.tsx
  • src/packages/switch/demos/taro/demo6.tsx
  • src/packages/switch/demos/taro/demo2.tsx
  • src/packages/pulltorefresh/demos/taro/demo4.tsx
  • src/packages/numberkeyboard/demos/taro/demo6.tsx
  • src/packages/searchbar/demos/taro/demo3.tsx
  • src/packages/progress/demos/taro/demo7.tsx
  • src/packages/table/demo.taro.tsx
  • src/packages/toast/demos/taro/demo2.tsx
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: test
🔇 Additional comments (10)
src/packages/icon/demos/taro/demo7.tsx (1)

30-30: 移除了 Toast 组件的 type 属性

此更改符合 PR 的目标,移除了不必要的 type 属性,简化 Toast 组件的使用方式,依赖其默认行为而非显式指定类型。这种修改在整个仓库中是一致的,提高了代码的一致性。

src/packages/icon/demos/taro/demo6.tsx (1)

29-29: 移除了 Toast 组件的 type 属性

此更改与 PR 描述一致,移除了 Toast 组件上不必要的 type 属性。这种更改在整个代码库中统一进行,提高了组件使用的一致性,符合组件的最佳实践。

src/packages/inputnumber/demos/taro/demo8.tsx (3)

9-9: 简化了 toastShow 函数签名

函数签名从 toastShow(msg: any, type: string) 修改为 toastShow(msg: any),移除了不必要的 type 参数。这符合当前 PR 对 Toast 组件调用的整体优化方向。


18-18: 更新了 toastShow 函数调用

调用已更新以匹配新的函数签名,不再传递 type 参数。这与函数定义的更改保持一致,确保了代码的正确性。


39-45: 从 Toast 组件中移除了 type 属性

与 PR 中的其他更改一致,从 Toast 组件中移除了 type 属性,遵循简化组件 API 的目标。同时保留了其他必要属性如 visiblecontentonClose,确保功能正常。

src/packages/inputnumber/demos/taro/demo9.tsx (2)

1-2: 更新了导入,移除了 Toast 相关依赖

移除了 Toast 组件的导入,并更新了导入语句。这与文件中完全移除 Toast 相关功能的改动一致,使导入更加简洁,只包含实际使用的组件。


4-37: 移除了所有 Toast 相关状态和组件

完全移除了 Toast 相关的状态变量(toastTypeshowtoastMsg)以及 Toast 组件本身。这种改动使示例更加聚焦于 InputNumber 组件的格式化功能演示,移除了非必要的 Toast 通知,简化了代码结构。

该更改符合 PR 目标,确保了组件演示的专注性,消除了可能造成困惑的辅助功能。

src/packages/inputnumber/demos/taro/demo3.tsx (3)

6-6: 简化了 toast 调用方式,移除了类型参数

此处修改移除了 toastShow 函数调用中的第二个参数(toast 类型),与函数签名的更改保持一致。这简化了 API 并使代码更加简洁。


11-11: 改进了函数签名,提高了类型安全性

此处修改:

  1. 移除了 type 参数,简化了函数签名
  2. msg 参数类型从 any 改为 string,提高了类型安全性

这些变更与 Toast 组件的最新用法保持一致,同时通过更严格的类型定义减少了潜在错误。


29-35: Toast 组件用法更新,移除了 type 属性

此处没有向 Toast 组件传递 type 属性,与函数签名和状态管理的变更保持一致。此更改反映了 Toast 组件 API 的简化,移除了可能已弃用或不再需要的属性。

✨ Finishing Touches
  • 📝 Generate Docstrings

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

Sorry, something went wrong.

@github-actions github-actions bot added 3.x Target branch 3.x action:review This PR needs more reviews (less than 2 approvals) and removed 3.x Target branch 3.x labels Mar 13, 2025
@Alex-huxiyang Alex-huxiyang changed the title fix: correct usages about toast fix: correct usages about toast props Mar 13, 2025
Copy link

codecov bot commented Mar 13, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 86.29%. Comparing base (930b746) to head (86b8f80).
Report is 3 commits behind head on feat_v3.x.

Additional details and impacted files
@@            Coverage Diff             @@
##           feat_v3.x    #3083   +/-   ##
==========================================
  Coverage      86.29%   86.29%           
==========================================
  Files            279      279           
  Lines          18225    18225           
  Branches        2774     2774           
==========================================
  Hits           15727    15727           
  Misses          2493     2493           
  Partials           5        5           

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

@oasis-cloud oasis-cloud merged commit 4acf6ea into jdf2e:feat_v3.x Mar 14, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
action:review This PR needs more reviews (less than 2 approvals) size/M
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants