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(components): add clear button to the textarea component #3477

Open
wants to merge 4 commits into
base: canary
Choose a base branch
from

Conversation

IsDyh01
Copy link

@IsDyh01 IsDyh01 commented Jul 15, 2024

Closes #2348
Closes #2112

📝 Description

Currently, the input component has a clear button function, while the textarea component does not

⛳️ Current behavior (updates)

The textarea component does not have a clear button

🚀 New behavior

Add Clear button functionality for the textarea component。If there is no content in the textarea, the clear button will not be displayed. If there is content, the clear button will be displayed after the content. Click the clear button to clear the text in the textarea and call the callback function

💣 Is this a breaking change (Yes/No):

No

📝 Additional Information

Summary by CodeRabbit

  • New Features

    • Added a clearable feature to the Textarea component, allowing users to easily clear the text using a clear button.
    • Enhanced the Textarea story with a new Clearable variant, increasing interactivity and usability.
  • Tests

    • Introduced tests to ensure that the clearable Textarea component works as expected, including verification of the clear button functionality and the onClear event handler.

Copy link

changeset-bot bot commented Jul 15, 2024

🦋 Changeset detected

Latest commit: e471830

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@nextui-org/input Minor
@nextui-org/autocomplete Patch
@nextui-org/react Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Jul 15, 2024

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

Name Status Preview Comments Updated (UTC)
nextui-docs-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 5, 2024 7:24am
nextui-storybook-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 5, 2024 7:24am

Copy link

vercel bot commented Jul 15, 2024

@IsDyh01 is attempting to deploy a commit to the NextUI Inc Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Contributor

coderabbitai bot commented Jul 15, 2024

Walkthrough

The update introduces a clear button to the Textarea component in the @nextui-org/input package. This enhancement includes a CloseFilledIcon, an onClear callback for user interaction, and comprehensive test cases to ensure functionality. Additionally, a new story in Storybook showcases the clearable textarea feature, making it more interactive and user-friendly.

Changes

File Change Summary
packages/components/input/src/textarea.tsx Added CloseFilledIcon, implemented logic for clearable Textarea component.
packages/components/input/stories/textarea.stories.tsx Introduced Clearable story with render function, default arguments, and onClear callback.
packages/components/input/__tests__/textarea.test.tsx Added tests verifying the clear button functionality for the Textarea component.

Assessment against linked issues

Objective Addressed Explanation
Add clear button to Textarea (2348)

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.

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
Contributor

@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

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between b762141 and 045d63f.

Files selected for processing (2)
  • packages/components/input/src/textarea.tsx (3 hunks)
  • packages/components/input/stories/textarea.stories.tsx (1 hunks)
Additional comments not posted (5)
packages/components/input/src/textarea.tsx (4)

6-6: Import statement for CloseFilledIcon is correct.

The import statement is necessary for the clear button functionality.


137-142: Conditional rendering of the inner wrapper with the clear button using useMemo is correct.

The logic to conditionally render the inner wrapper with the clear button using useMemo is correct.


92-93: Usage of isClearable and getClearButtonProps is correct.

The logic to get clear button properties from useInput and conditionally render the clear button is correct.

Verify that useInput supports isClearable and getClearButtonProps.

Verification successful

useInput supports isClearable and getClearButtonProps.

The useInput function includes the isClearable property and the getClearButtonProps method, confirming their correct usage in the Textarea component.

  • packages/components/input/src/use-input.ts
    • const isClearable = !!onClear || originalProps.isClearable;
    • const getClearButtonProps: PropGetter = useCallback(...)
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that `useInput` supports `isClearable` and `getClearButtonProps`.

# Test: Search for the definitions of `useInput`. Expect: Definitions include `isClearable` and `getClearButtonProps`.
rg --type typescript 'useInput' -A 10

Length of output: 72


Script:

#!/bin/bash
# Description: Verify that `useInput` supports `isClearable` and `getClearButtonProps`.

# Test: Search for the definitions of `useInput`. Expect: Definitions include `isClearable` and `getClearButtonProps`.
rg 'useInput' -g '*.ts*' -A 10

Length of output: 7997


Script:

#!/bin/bash
# Description: Verify that `useInput` supports `isClearable` and `getClearButtonProps`.

# Test: Search for `isClearable` and `getClearButtonProps` in the `useInput` implementation.
rg 'isClearable|getClearButtonProps' packages/components/input/src/use-input.ts

Length of output: 280


128-135: Conditional rendering of the clear button using useMemo is correct.

The logic to conditionally render the clear button using useMemo is correct.

Verify that getClearButtonProps is used correctly.

Verification successful

The getClearButtonProps function is used correctly.

The function definition ensures that the clear button is accessible and properly styled, providing necessary properties such as role, tabIndex, aria-label, and others. The usage in the provided code snippet is appropriate.

  • getClearButtonProps is defined correctly in packages/components/input/src/use-input.ts.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that `getClearButtonProps` is used correctly.

# Test: Search for the usage of `getClearButtonProps`. Expect: Correct usage.
rg --type typescript 'getClearButtonProps'

Length of output: 77


Script:

#!/bin/bash
# Description: Verify that `getClearButtonProps` is used correctly.

# Test: Search for the usage of `getClearButtonProps`. Expect: Correct usage.
rg --type ts 'getClearButtonProps'

Length of output: 1781


Script:

#!/bin/bash
# Description: Extract the definition and usage of `getClearButtonProps` in `packages/components/input/src/use-input.ts`.

# Extract the definition and usage of `getClearButtonProps`.
rg --type ts -A 10 'const getClearButtonProps' packages/components/input/src/use-input.ts

Length of output: 540

packages/components/input/stories/textarea.stories.tsx (1)

306-316: Definition of the Clearable entity is correct.

The function correctly defines the new exported entity with the necessary properties. The onClear callback is correctly defined to log a message when the clear action is triggered.

@awesome-pro
Copy link
Contributor

@IsDyh01 kindly run pnpm changeset command before commit to add the changeset file then again add, commit push

Copy link
Member

@wingkwong wingkwong left a comment

Choose a reason for hiding this comment

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

  1. please add changeset
  2. please add test

Copy link
Contributor

@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

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 045d63f and 75dcc18.

Files selected for processing (3)
  • .changeset/five-adults-protect.md (1 hunks)
  • packages/components/input/tests/textarea.test.tsx (1 hunks)
  • packages/components/input/stories/textarea.stories.tsx (1 hunks)
Additional comments not posted (3)
.changeset/five-adults-protect.md (1)

1-5: Changeset file correctly indicates a major version update.

The changeset file is well-formed and clearly describes the addition of a new feature to the textarea component, which justifies a major version bump.

packages/components/input/__tests__/textarea.test.tsx (1)

1-34: Test implementation for the clear button is comprehensive and correct.

The test checks both the functionality of the clear button and the triggering of the onClear callback. It uses appropriate tools and methods for simulating user interactions and verifying the component's state.

packages/components/input/stories/textarea.stories.tsx (1)

306-317: Clearable story is well-implemented but consider noting the console usage.

The story for the clearable textarea is well-implemented and demonstrates the functionality clearly. However, the use of console.log in the onClear callback is typical for examples but should be accompanied by a comment noting that this is not intended for production use.

Copy link
Member

@wingkwong wingkwong left a comment

Choose a reason for hiding this comment

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

please also include the corresponding info in documentation

.changeset/five-adults-protect.md Outdated Show resolved Hide resolved
.changeset/five-adults-protect.md Outdated Show resolved Hide resolved
packages/components/input/stories/textarea.stories.tsx Outdated Show resolved Hide resolved
@IsDyh01 IsDyh01 force-pushed the feat/textarea-add-clearButton branch from 75dcc18 to 6f92cdb Compare July 21, 2024 07:50
@IsDyh01 IsDyh01 requested a review from wingkwong July 21, 2024 07:51
Copy link
Contributor

@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

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 75dcc18 and 6f92cdb.

Files selected for processing (4)
  • .changeset/five-adults-protect.md (1 hunks)
  • packages/components/input/tests/textarea.test.tsx (1 hunks)
  • packages/components/input/src/textarea.tsx (3 hunks)
  • packages/components/input/stories/textarea.stories.tsx (1 hunks)
Files skipped from review as they are similar to previous changes (4)
  • .changeset/five-adults-protect.md
  • packages/components/input/tests/textarea.test.tsx
  • packages/components/input/src/textarea.tsx
  • packages/components/input/stories/textarea.stories.tsx

Copy link
Member

@wingkwong wingkwong left a comment

Choose a reason for hiding this comment

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

  1. your test case failed
  2. please also update documentation as well. you may refer to Clear Button section in Input.

@wingkwong wingkwong assigned IsDyh01 and unassigned wingkwong Oct 5, 2024
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.

[Feature Request] Add clear button to Textarea [BUG] - There are no isClearable at the Textarea component
3 participants