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(textarea): introduce isClearable #3477

Open
wants to merge 30 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

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 documentation with a new section detailing the clear button functionality.
    • Introduced a header wrapper property to the input component for improved layout styling.
    • Added a new trash icon to the shared icons library.
  • Bug Fixes

    • Updated the Textarea Props documentation to include the new isClearable property.
  • Chores

    • Updated the peer dependency for the @nextui-org/theme package to require a newer version.

Copy link

changeset-bot bot commented Jul 15, 2024

🦋 Changeset detected

Latest commit: c2b16d4

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

This PR includes changesets to release 17 packages
Name Type
@nextui-org/input Patch
@nextui-org/shared-icons Patch
@nextui-org/theme Patch
@nextui-org/accordion Patch
@nextui-org/autocomplete Patch
@nextui-org/modal Patch
@nextui-org/select Patch
@nextui-org/react Patch
@nextui-org/alert Patch
@nextui-org/breadcrumbs Patch
@nextui-org/calendar Patch
@nextui-org/chip Patch
@nextui-org/date-picker Patch
@nextui-org/link Patch
@nextui-org/pagination Patch
@nextui-org/snippet Patch
@nextui-org/table 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 Nov 1, 2024 4:06am
nextui-storybook-v2 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 1, 2024 4:06am

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 documentation, detailing its functionality when the isClearable property is set to true. A new headerWrapper slot has been added to enhance the component's structure. Additionally, the package.json for the @nextui-org/input package has been updated to require a newer version of the @nextui-org/theme peer dependency. The useInput hook has been modified to support new methods and conditional class applications.

Changes

File Change Summary
apps/docs/content/docs/components/textarea.mdx Added documentation for the clear button functionality and updated Textarea Props to include isClearable.
packages/components/input/package.json Updated peer dependency version for @nextui-org/theme from >=2.1.0 to >=2.2.12.
packages/components/input/src/use-input.ts Added getHeaderWrapperProps method and updated existing methods for conditional class handling based on isMultiline.
packages/core/theme/src/components/input.ts Introduced headerWrapper slot for layout customization in the input component.
packages/utilities/shared-icons/src/index.ts Added export for the trash icon from the ./trash module.

Assessment against linked issues

Objective Addressed Explanation
Add clear button to Textarea (2348)
Implement isClearable in Textarea (2112)

Possibly related PRs

Suggested labels

👀 Status: In Review, 📋 Scope : Docs

Suggested reviewers

  • wingkwong
  • ryo-manba

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.
  3. currently the scrollbar will overlap with the clearbutton. please try to add a pr-4 -mr-4 to move the scrollbar without losing space.

@wingkwong wingkwong removed their assignment Oct 16, 2024
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

🧹 Outside diff range and nitpick comments (3)
packages/components/input/src/textarea.tsx (2)

125-127: LGTM with a minor suggestion: clearButtonContent implementation

The implementation of clearButtonContent using useMemo is correct and efficiently handles the conditional rendering of the clear button. However, there's a minor improvement to be made:

Add endContent to the dependency array of the useMemo hook to ensure it updates correctly when endContent changes:

-    }, [isClearable, getClearButtonProps]);
+    }, [isClearable, getClearButtonProps, endContent]);

This change will prevent potential stale renders if endContent is updated.


147-154: LGTM with a minor suggestion: Rendering logic for clear button

The conditional rendering for the clear button is well-implemented and correctly handles different cases. However, there's a small improvement that can be made:

Remove the empty label when isClearable is true and shouldLabelBeInside is false:

-              {shouldLabelBeInside ? labelContent : <label {...getLabelProps()}>{}</label>}
+              {shouldLabelBeInside ? labelContent : null}

This change will eliminate an unnecessary empty label element when it's not needed.

packages/core/theme/src/components/input.ts (1)

72-72: LGTM! Consider updating documentation.

The addition of the headerWrapper slot is a good enhancement that allows for more flexible layouts in the input component. This change aligns well with the PR objectives to introduce a clear button functionality.

To ensure proper usage of this new slot, consider updating the component's documentation to include:

  1. The purpose of the headerWrapper slot
  2. Example usage demonstrating how to utilize this new slot in various scenarios

This will help developers understand and correctly implement the new functionality in their projects.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between ac1ff15 and 6295aad.

📒 Files selected for processing (3)
  • packages/components/input/src/textarea.tsx (5 hunks)
  • packages/components/input/src/use-input.ts (4 hunks)
  • packages/core/theme/src/components/input.ts (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/components/input/src/use-input.ts
🧰 Additional context used
🔇 Additional comments (4)
packages/components/input/src/textarea.tsx (4)

6-6: LGTM: TrashIcon import added

The import of TrashIcon is correctly placed and aligns with the new clear button functionality.


18-18: LGTM: OmittedInputProps updated

The addition of "isClearButtonFocusVisible" to OmittedInputProps is consistent with the new clear button functionality and prevents this prop from being passed to the HTML element.


88-90: LGTM: New props added for clear button functionality

The addition of isClearable, getClearButtonProps, and getHeaderWrapperProps to the destructured props is consistent with the implementation of the clear button functionality.


Line range hint 1-171: Overall assessment: Well-implemented clear button functionality

The changes successfully introduce the clear button functionality to the Textarea component. The implementation is consistent with the existing codebase and follows good practices. A few minor suggestions have been made to further improve the code:

  1. Add endContent to the dependency array of the useMemo hook for clearButtonContent.
  2. Remove the empty label when isClearable is true and shouldLabelBeInside is false.

These small adjustments will enhance the overall quality and efficiency of the component.

.changeset/five-adults-protect.md Outdated Show resolved Hide resolved
packages/core/theme/src/components/input.ts Show resolved Hide resolved
packages/components/input/src/textarea.tsx Outdated Show resolved Hide resolved
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.

@IsDyh01
Copy link
Author

IsDyh01 commented Oct 31, 2024

I'm very sorry for the late revision. I had something to do in the last two weeks

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

🧹 Outside diff range and nitpick comments (1)
packages/components/input/src/use-input.ts (1)

523-529: Consider simplifying the clear button styles.

Based on previous discussions, some of these classes might be redundant. Consider testing which ones are actually needed for proper positioning.

Try removing redundant classes:

-isMultiline ? "relative block opacity-100 p-0 -m-0 end-0" : ""
+isMultiline ? "relative end-0" : ""
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 811f214 and 7b136d9.

📒 Files selected for processing (4)
  • apps/docs/content/docs/components/textarea.mdx (3 hunks)
  • packages/components/input/package.json (2 hunks)
  • packages/components/input/src/use-input.ts (4 hunks)
  • packages/core/theme/src/components/input.ts (1 hunks)
🔇 Additional comments (7)
packages/components/input/package.json (1)

39-39: LGTM! Verify theme package version.

The peer dependency version bump is appropriate for the new textarea clear button feature.

Let's verify that version 2.1.1 of the theme package exists:

✅ Verification successful

Version bump to >=2.1.1 is appropriate and safe

The theme package version in the workspace is 2.2.11, which is higher than the required version 2.1.1. This version bump is safe and aligns with the package's current state.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the required theme package version exists
# Expected: Should find version 2.1.1 or higher in the workspace

# Check the theme package version in the monorepo
cat packages/components/theme/package.json | jq -r .version

Length of output: 132


Script:

#!/bin/bash
# Let's try different approaches to locate the theme package and its version

# First, find any package.json files that might contain the theme package
fd package.json --type f --exec grep -l "@nextui-org/theme" {}

# Then, let's check if the theme package exists in the workspace
fd "theme" --type d

# Also check for any lerna or workspace configuration that might list the packages
find . -maxdepth 1 -type f -name "package.json" -o -name "lerna.json" -o -name "pnpm-workspace.yaml" | xargs cat

Length of output: 8092


Script:

#!/bin/bash
# Let's check the version in the core theme package
cat packages/core/theme/package.json | jq -r .version

# Also check the dependencies of other components to see what version they're using
fd package.json --type f --exec grep -A 1 -B 1 '"@nextui-org/theme"' {}

Length of output: 9178

packages/components/input/src/use-input.ts (2)

373-373: LGTM! Proper use of logical properties for RTL support.

The use of pe-0 (padding-end) follows the modern approach for handling RTL layouts.


415-419: LGTM! Proper layout handling for multiline mode.

The flex column layout with items-start ensures proper alignment of elements in multiline mode.

apps/docs/content/docs/components/textarea.mdx (3)

92-97: LGTM! Clear Button section is well documented.

The new section clearly explains the clear button functionality and its visibility conditions. The inclusion of a code demo helps users understand the implementation.


110-110: LGTM! headerWrapper slot is properly documented.

The slot description accurately explains its purpose of wrapping the label and clear button components.


174-174: LGTM! isClearable prop is well documented.

The property is correctly documented with its type, description, and default value, maintaining consistency with the existing API documentation style.

packages/core/theme/src/components/input.ts (1)

72-72: LGTM! Remember to update the documentation.

The headerWrapper slot implementation looks good. The flex layout with proper spacing and alignment will effectively handle the label and clear button positioning. As mentioned in the previous review, please ensure this new slot is documented in the Textarea component's documentation under the Slots section.

Let's verify the documentation update:

✅ Verification successful

Documentation is properly updated with the new headerWrapper slot

The headerWrapper slot is already documented in the Textarea component's documentation at apps/docs/content/docs/components/textarea.mdx. The documentation clearly lists it under the Slots section with the description:

headerWrapper: Wraps the label and the clearButton.

This matches exactly with the implementation in the theme configuration file. No further documentation updates are needed.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check if the headerWrapper slot is documented
rg -A 5 "headerWrapper" "docs/"

Length of output: 75


Script:

#!/bin/bash
# Let's first find where the documentation might be located
fd -t f "README|DOCUMENTATION|docs|guide" -i

# Also check for markdown files that might contain component documentation
fd -e md

Length of output: 9878


Script:

#!/bin/bash
# Let's check the textarea documentation in the docs app and components
rg -A 5 "textarea" "apps/docs/"
rg -A 5 "textarea" "packages/components/input/README.md"

# Also check if there's a dedicated textarea component documentation
fd "textarea" packages/components/

Length of output: 33998

packages/components/input/src/use-input.ts Outdated Show resolved Hide resolved
packages/components/input/package.json Outdated Show resolved Hide resolved
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

🧹 Outside diff range and nitpick comments (1)
packages/components/input/src/use-input.ts (1)

523-529: Consider simplifying clear button styles.

The clear button styles for multiline inputs contain potentially redundant classes:

  • block is unnecessary with relative
  • -m-0 can be removed as it's equivalent to m-0
-isMultiline ? "relative block opacity-100 p-0 -m-0 end-0" : "",
+isMultiline ? "relative opacity-100 p-0 m-0 end-0" : "",
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 80eead7 and d57ed70.

📒 Files selected for processing (1)
  • packages/components/input/src/use-input.ts (4 hunks)
🔇 Additional comments (4)
packages/components/input/src/use-input.ts (4)

373-373: LGTM: Padding adjustment for multiline inputs.

The pe-0 class removes padding from the end edge, which helps prevent scrollbar overlap issues in multiline inputs.


415-419: LGTM: Layout adjustments for multiline inputs.

The flex column layout with gap-0 ensures proper vertical stacking of elements in multiline mode.


576-576: LGTM: Exposing header wrapper props.

Properly exports the new getHeaderWrapperProps method for external use.


536-544: ⚠️ Potential issue

Add missing dependencies to useCallback.

The useCallback hook is missing dependencies that could lead to stale closures.

-  }, [slots, classNames?.headerWrapper]);
+  }, [slots, classNames?.headerWrapper, props?.className]);

Likely invalid or redundant comment.

@IsDyh01
Copy link
Author

IsDyh01 commented Nov 4, 2024

@wingkwong I've merged the latest code.

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

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between a457246 and c2b16d4.

📒 Files selected for processing (3)
  • .changeset/five-adults-protect.md (1 hunks)
  • packages/components/input/package.json (2 hunks)
  • packages/components/input/src/textarea.tsx (5 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/components/input/package.json
🔇 Additional comments (4)
.changeset/five-adults-protect.md (1)

7-7: LGTM!

The description follows the conventional commit format and properly references the related issues.

packages/components/input/src/textarea.tsx (3)

6-6: LGTM: Import and type changes are appropriate

The changes correctly set up the clear button functionality by importing the requested X icon and updating the type definition.

Also applies to: 18-18


88-90: LGTM: Clear button implementation is well-structured

The clear button implementation is properly memoized and follows the component's patterns by using the hook's props and methods.

Also applies to: 125-127


147-154: 🛠️ Refactor suggestion

Remove unnecessary empty label element

When isClearable is true and shouldLabelBeInside is false, an empty label is rendered. This should be removed as it adds unnecessary DOM elements.

Apply this change:

-              {shouldLabelBeInside ? labelContent : <label {...getLabelProps()}>{}</label>}
+              {shouldLabelBeInside ? labelContent : null}

Likely invalid or redundant comment.

Comment on lines +1 to +5
---
"@nextui-org/input": patch
"@nextui-org/shared-icons": patch
"@nextui-org/theme": patch
---
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue

Update version type for @nextui-org/input

Since adding isClearable is a new feature rather than a bug fix, the version bump for @nextui-org/input should be minor instead of patch according to semantic versioning.

Apply this diff:

---
-"@nextui-org/input": patch
+"@nextui-org/input": minor
"@nextui-org/shared-icons": patch
"@nextui-org/theme": patch
---
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
"@nextui-org/input": patch
"@nextui-org/shared-icons": patch
"@nextui-org/theme": patch
---
---
"@nextui-org/input": minor
"@nextui-org/shared-icons": patch
"@nextui-org/theme": patch
---

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
4 participants