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(textarea): placeholder 可以设置为空字符串 #2979

Merged
merged 1 commit into from
Feb 13, 2025

Conversation

oasis-cloud
Copy link
Collaborator

@oasis-cloud oasis-cloud commented Feb 10, 2025

🤔 这个变动的性质是?

  • 新特性提交
  • 日常 bug 修复
  • 站点、文档改进
  • 演示代码改进
  • 组件样式/交互改进
  • TypeScript 定义更新
  • 包体积优化
  • 性能优化
  • 功能增强
  • 国际化改进
  • 重构
  • 代码风格优化
  • 测试用例
  • 分支合并
  • 其他改动(是关于什么的改动?)

🔗 相关 Issue

💡 需求背景和解决方案

☑️ 请求合并前的自查清单

⚠️ 请自检并全部勾选全部选项⚠️

  • 文档已补充或无须补充
  • 代码演示已提供或无须提供
  • TypeScript 定义已补充或无须补充
  • fork仓库代码是否为最新避免文件冲突
  • Files changed 没有 package.json lock 等无关文件

Summary by CodeRabbit

  • Refactor
    • 优化了文本输入框的交互处理逻辑,提升了响应性和稳定性。
    • 改善了样式和状态判断,确保组件在不同状态下显示一致。
    • 调整了占位符显示策略,提供更友好的默认提示。

Copy link

coderabbitai bot commented Feb 10, 2025

Walkthrough

本次 PR 修改主要集中在 TextArea 组件的事件处理和样式管理上。修改包括更新事件处理函数类型从 Event 改为 BaseEventOrig,新增 isDisabled 辅助函数以判断组件的禁用或只读状态,调整 placeholder 默认值的赋值逻辑,并对类名生成进行了重构,统一采用 classNames 工具。同时,对部分事件处理代码进行了简化和性能优化,提升了代码的可读性和维护性。

Changes

文件路径 变更摘要
src/.../textarea.taro.tsx
src/.../textarea.tsx
- 更新 onBluronFocusonChange 事件类型为 BaseEventOrig
- 新增 isDisabled 辅助函数检查 disabledreadOnly 状态
- 使用 classNames 重构类名的条件拼接逻辑
- 调整 placeholder 属性默认值的判断逻辑
- 优化部分事件处理函数的调用方式

Sequence Diagram(s)

sequenceDiagram
    participant U as 用户
    participant T as TextArea 组件
    participant I as isDisabled 辅助函数
    U->>T: 触发 Focus/Blur/Change 事件
    T->>I: 检查组件状态 (disabled/readOnly)
    I-->>T: 返回状态 (启用/禁用)
    alt 状态启用
        T->>T: 执行相应事件逻辑 (onFocus/onBlur/onChange)
    else 状态禁用
        T->>T: 忽略事件处理
    end
Loading

Possibly related issues

Possibly related PRs

Suggested reviewers

  • xiaoyatong
  • irisSong

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 generate docstrings to generate docstrings for this PR. (Beta)
  • @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.

@oasis-cloud oasis-cloud requested a review from irisSong February 10, 2025 08:46
@github-actions github-actions bot added action:review This PR needs more reviews (less than 2 approvals) 3.x Target branch 3.x labels Feb 10, 2025
Copy link

codecov bot commented Feb 10, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 85.75%. Comparing base (a9a6292) to head (aeac731).
Report is 4 commits behind head on feat_v3.x.

Additional details and impacted files
@@              Coverage Diff              @@
##           feat_v3.x    #2979      +/-   ##
=============================================
+ Coverage      85.74%   85.75%   +0.01%     
=============================================
  Files            277      277              
  Lines          18105    18110       +5     
  Branches        2745     2735      -10     
=============================================
+ Hits           15524    15531       +7     
+ Misses          2576     2574       -2     
  Partials           5        5              

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

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

🧹 Nitpick comments (1)
src/packages/textarea/textarea.taro.tsx (1)

86-94: 建议优化事件处理函数

事件处理逻辑可以进一步优化,建议使用可选链操作符简化空值检查。

-    const text = event?.detail?.value
-    if (text) {
+    const text = event?.detail?.value ?? ''
+    if (text !== '') {
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between a9a6292 and aeac731.

⛔ Files ignored due to path filters (1)
  • src/packages/textarea/__test__/__snapshots__/textarea.spec.tsx.snap is excluded by !**/*.snap
📒 Files selected for processing (2)
  • src/packages/textarea/textarea.taro.tsx (5 hunks)
  • src/packages/textarea/textarea.tsx (4 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: test
🔇 Additional comments (8)
src/packages/textarea/textarea.taro.tsx (4)

4-10: 事件类型定义更新

将事件类型从 Event 更改为 BaseEventOrig 提高了类型安全性,更好地符合 Taro 框架的类型系统。

Also applies to: 30-31


96-101: 代码优化:新增辅助函数

通过抽取 isDisabled 辅助函数来处理禁用状态的判断,提高了代码的可维护性和可读性。

Also applies to: 103-106


111-121: 类名管理优化

使用 classNames 工具函数重构了类名管理,提高了代码的可读性和可维护性。条件类名的组织更加清晰。

Also applies to: 137-139, 155-157


149-151: 占位符处理优化

现在可以正确处理空字符串作为占位符,符合需求。使用 undefined 判断而不是空值判断,逻辑更加准确。

src/packages/textarea/textarea.tsx (4)

86-87: useEffect 优化

简化了 useEffect 的条件语句,提高了代码的可读性。


106-116: 事件处理一致性

Web 版本的禁用状态处理与 Taro 版本保持一致,通过 isDisabled 辅助函数统一了处理逻辑。


121-132: 类名管理一致性

类名管理方式与 Taro 版本保持一致,使用 classNames 工具统一处理条件类名,提高了代码的可维护性。

Also applies to: 137-139, 161-163


155-157: 占位符处理一致性

占位符的处理逻辑与 Taro 版本保持一致,支持设置空字符串作为占位符。

@xiaoyatong xiaoyatong merged commit 7de3afb into jdf2e:feat_v3.x Feb 13, 2025
8 of 9 checks passed
oasis-cloud added a commit to oasis-cloud/nutui-react that referenced this pull request Feb 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3.x Target branch 3.x action:review This PR needs more reviews (less than 2 approvals) size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants