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

remoção do link no header ao entrar nos detalhes/edição do abrigo #282

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ const Header = React.forwardRef<HTMLDivElement, IHeader>((props, ref) => {
>
<div className="flex gap-1 items-center">
{startAdornment}
<Link className="font-medium text-white" to="/">
{title}
</Link>
{title === 'SOS Rio Grande do Sul' ? (
<Link className="font-medium text-white" to="/">
{title}
</Link>
) : (
<span className="font-medium text-white">
{title}
</span>
Copy link

Choose a reason for hiding this comment

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

Será que conseguimos manter o comportamento de voltar, já presente na setinha/chevron, também no título?

Copy link
Author

Choose a reason for hiding this comment

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

eu tentei essa possibilidade, mas quando o EditShelterSupply enviar os parâmetros para o header

<Header title="Editar Itens" className="bg-white [&_*]:text-zinc-800 border-b-[1px] border-b-border" startAdornment={ <Button variant="ghost" className="[&_svg]:stroke-blue-500" onClick={() => navigate(/abrigo/${shelterId})} > <ChevronLeft size={20} /> </Button> } />

neste momento, eu não achei como poderia enviar/receber o navigate como é feito com o button para o header e mudar a rota no link

então para não arrumar uma coisa e estragar a outra achei melhor desta forma, ate porque tenho pouca experiência em projeto tão extenso

Choose a reason for hiding this comment

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

Será que conseguimos manter o comportamento de voltar, já presente na setinha/chevron, também no título?

Atualize a interface IHeader para incluir a propriedade to:

export interface IHeader extends React.ComponentPropsWithoutRef<'div'> {
  title: string;
  startAdornment?: React.ReactNode;
  endAdornment?: React.ReactNode;
  to?: string;
}

Modifique o componente Header para renderizar condicionalmente o título como um link se a propriedade to for fornecida:

const Header = React.forwardRef<HTMLDivElement, IHeader>((props, ref) => {
  const {
    endAdornment,
    startAdornment,
    title,
    className = '',
    to,
    ...rest
  } = props;
{to ? (
   <Link className="font-medium text-white" to={to}>
     {title}
   </Link>
) : (
   <span className="font-medium text-white">{title}</span>
)} 

Certifique-se de refatorar outros arquivos que usam o componente Header para passar a propriedade to conforme necessário.

Copy link
Author

Choose a reason for hiding this comment

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

sua explicação me ajudou muito a melhorar o código, obrigado!

)}
</div>
<div className="flex items-center">
<div className="cursor-pointer ">{endAdornment}</div>
Expand Down