Skip to content

Conversation

@decipher-cs
Copy link
Contributor

@decipher-cs decipher-cs commented Aug 23, 2024

  • Added a very basic version of the component
  • Added storybook for said component
  • Fixed <Button/> props

Summary by CodeRabbit

  • New Features

    • Introduced a Collapsible component allowing users to expand and contract content sections with customizable triggers and titles.
    • Added Storybook stories for the Collapsible component, showcasing various configurations and enhancing developer visibility.
    • Updated the Button component to accept standard HTML button attributes and improved prop handling for better usability.
  • Bug Fixes

    • Ensured the size prop in the Button component defaults to 'medium' for consistent appearance.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 23, 2024

Walkthrough

The changes involve updates to the Button and Collapsible components. The Button component's props were enhanced to include detailed HTML attributes, while the size prop's default was adjusted. A new Collapsible component was introduced, featuring props for controlling its state and appearance, along with Storybook stories to showcase its usage.

Changes

File Change Summary
src/components/ui/Button/Button.tsx Expanded ButtonProps to include standard HTML attributes; adjusted destructured props, changing size default to 'medium', and repositioned color prop for clarity.
src/components/ui/Collapsible/*.tsx Introduced a new Collapsible component with props for open, title, and trigger; implemented internal state management with SVG icons; added Storybook stories for various usages.

Poem

🐰 In code we hop and dance with glee,
New buttons and collapsibles, oh what a spree!
With props that expand and stories to tell,
In our UI garden, everything’s swell!
Let’s code and create, our joy will not cease,
Together we flourish, in this rabbit's peace! 🌼


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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

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.

@decipher-cs decipher-cs marked this pull request as ready for review August 23, 2024 11:48
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 UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between bb41624 and 7cf8116.

Files selected for processing (3)
  • src/components/ui/Button/Button.tsx (2 hunks)
  • src/components/ui/Collapsible/Collapsible.stories.tsx (1 hunks)
  • src/components/ui/Collapsible/Collapsible.tsx (1 hunks)
Additional comments not posted (6)
src/components/ui/Button/Button.tsx (2)

15-15: LGTM! Enhanced flexibility for ButtonProps.

The inclusion of DetailedHTMLProps and PropsWithChildren improves the component's flexibility by allowing it to accept standard HTML button attributes and children.


17-17: LGTM! Improved Button component usability.

The adjustments to the Button component's props, including setting the default size to 'medium', enhance its usability and clarity.

src/components/ui/Collapsible/Collapsible.tsx (1)

28-57: LGTM! Well-structured Collapsible component.

The Collapsible component is well-structured, providing expandable/collapsible functionality with support for custom triggers and default icons.

src/components/ui/Collapsible/Collapsible.stories.tsx (3)

19-32: LGTM! Clear Default story for Collapsible.

The Default story effectively demonstrates the basic usage and default behavior of the Collapsible component.


34-47: LGTM! Effective WithTitle story for Collapsible.

The WithTitle story clearly demonstrates the usage of the Collapsible component with a title.


49-72: LGTM! Comprehensive ExternalTrigger story for Collapsible.

The ExternalTrigger story effectively demonstrates the usage of the Collapsible component with an external trigger, showcasing its flexibility.

*
* */

export type CollapsibleProps = { open?: boolean, title?: string, trigger?: ReactNode} & PropsWithChildren;
Copy link
Contributor

@coderabbitai coderabbitai bot Aug 23, 2024

Choose a reason for hiding this comment

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

Consider implementing checklist features.

The checklist indicates missing features such as RTL support, animations, and positioning. Consider implementing these for a more robust component.

Would you like help implementing these features or opening a GitHub issue to track them?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Would you like help implementing these features or opening a GitHub issue to track them?

nah man, I'm good.

Copy link
Contributor

Choose a reason for hiding this comment

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

@decipher-cs, understood! If you need any assistance in the future, feel free to reach out. 😊

@kotAPI kotAPI merged commit 04baf65 into rad-ui:main Aug 24, 2024
@codecov
Copy link

codecov bot commented Aug 24, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 94.44%. Comparing base (0cd3fa6) to head (7cf8116).
Report is 4 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #407   +/-   ##
=======================================
  Coverage   94.44%   94.44%           
=======================================
  Files          10       10           
  Lines          54       54           
  Branches        9        9           
=======================================
  Hits           51       51           
  Misses          3        3           

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants