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 : Button component onClick and href prop #10156

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

nidhish-srivastava
Copy link

@nidhish-srivastava nidhish-srivastava commented Jan 20, 2024

Fixes Issue

#10141

Changes proposed

Added onClick and href prop to the button component since they are the most used props while using the Button component so we get better intellisense while developing.

Check List (Check all the applicable boxes)

  • My code follows the code style of this project.
  • My change requires changes to the documentation.
  • I have updated the documentation accordingly.
  • All new and existing tests passed.
  • This PR does not contain plagiarized content.
  • The title of my pull request is a short description of the requested changes.

Screenshots

Note to reviewers

@@ -34,6 +36,8 @@ export default function Button({

const button = (
<button
href={href}
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
href={href}

Shouldn't we move the href prop to Link?
It seems like the intention was to use the href prop to determine whether to render a Link or a button. However, the return statement (return restProps.href ? link : button;) will always return a link (without an href) in this case.

Maybe we should move the href prop to the Link component. This way, when href is present, the Link component will be rendered with the href attribute, and when href is not present, a button will be rendered instead.

<Link
      href={href}

Also we should change the return statement to href ? link : button;

Copy link
Author

Choose a reason for hiding this comment

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

i was thinking of the same thing as well

@ArvindParekh
Copy link
Member

Also, could you please edit your PR description and link your issue below the heading, with a hash, like this: #10141

@nidhish-srivastava nidhish-srivastava changed the title feat: added onClick and href prop in Button component feat : Button component onClick and href prop Jan 21, 2024
@SaraJaoude SaraJaoude added the issue linked Pull Request has issue linked label Jan 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
issue linked Pull Request has issue linked
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE] Adding onClick prop in the Button component for better intellisense
3 participants