Giter Club home page Giter Club logo

Comments (6)

galimovkirill avatar galimovkirill commented on May 31, 2024

@melloware Do I understand correctly, that after this PR fix I can create a link with passed href to my <PrimeButton /> component?

from primereact.

melloware avatar melloware commented on May 31, 2024

I have to study the code and see what PrimeTek original intent of this and what PrimeVue is doing. But right now this code does not look like it is doing as it was intended.

from primereact.

nitrogenous avatar nitrogenous commented on May 31, 2024

What specific changes or enhancements are you aiming to make to the button component in your application, particularly in terms of its appearance and functionality? The showcase seems fine to me can you be more elaborate?

from primereact.

melloware avatar melloware commented on May 31, 2024

@galimovkirill i think this is just confusion over what you want to do and I just updated the docs. There are 3 scenarios.

Button Rendered As Link

This renders the buttons as Link and navigates you to https://react.dev on Click.

<Button label="Link" link onClick={() => window.open('https://react.dev', '_blank')} />

Link Rendered as Button

This is a normal HTML link that just is "styled" to look like a button

<a href="https://react.dev" target="_blank" rel="noopener noreferrer" className="p-button font-bold">
       Navigate
</a>

What you want is something more like this....

Button pretending to be a Link

This is a normal button with all the behaviors like "disabled" etc it just simply performs a navigation.

// open a new URL
<Button label="Open URL" link onClick={() => window.open('https://react.dev', '_blank')} />

// use NextJS Router to go to another URL
<Button label="Navigate In App" link onClick={() =>  router.push('/desired-url');} />
```

from primereact.

galimovkirill avatar galimovkirill commented on May 31, 2024

I think that current button implementation cannot provide functionality for my needs.
I meant that I need normal HTML link which looks like button without setting any additional classes.

You can see example at MUI's component: https://mui.com/material-ui/react-button/#text-button

The 3rd button is a link, but we render it with <Button/> component and can pass any prop like variant to change styling of button (which is link actually). So, just because we pass href prop, it decide itself that it should render specific HTML tag.

from primereact.

melloware avatar melloware commented on May 31, 2024

@galimovkirill yes the equivalent in PR.

MUI:

<Button href="#text-buttons">Link</Button>

PR:

<Button label="Open URL" link onClick={() => window.location.hash = "#text-buttons";} />

from primereact.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.