-
Joel Jeremy Marquez authored
* Remove usages of glamor CSSProperties * Cleanup * Re-add CellButton className prop * More removal of glamor CSSProperties * Release notes * Fix vrt test failures * Use React CSSProperties in View * Custom CSSProperties type * Settings UI regression fix * Fix type check errors * Address PR comments * CategorySpendingGraph style * Fix rebase mistake
Joel Jeremy Marquez authored* Remove usages of glamor CSSProperties * Cleanup * Re-add CellButton className prop * More removal of glamor CSSProperties * Release notes * Fix vrt test failures * Use React CSSProperties in View * Custom CSSProperties type * Settings UI regression fix * Fix type check errors * Address PR comments * CategorySpendingGraph style * Fix rebase mistake
ButtonLink.tsx 721 B
import React, { type ComponentProps } from 'react';
import { useMatch, useNavigate } from 'react-router-dom';
import { type CSSProperties } from '../../style';
import Button from './Button';
type ButtonLinkProps = ComponentProps<typeof Button> & {
to: string;
activeStyle?: CSSProperties;
};
export default function ButtonLink({
to,
style,
activeStyle,
...props
}: ButtonLinkProps) {
const navigate = useNavigate();
const match = useMatch({ path: to });
return (
<Button
style={{
...style,
...(match ? activeStyle : {}),
}}
activeStyle={activeStyle}
{...props}
onClick={e => {
props.onClick?.(e);
navigate(to);
}}
/>
);
}