mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
|
import { ReactNode } from 'react';
|
||
|
import { Link, LinkProps, styled, TooltipProps } from '@mui/material';
|
||
|
import { HtmlTooltip, IHtmlTooltipProps } from '../HtmlTooltip/HtmlTooltip';
|
||
|
|
||
|
const StyledLink = styled(Link, {
|
||
|
shouldForwardProp: prop => prop !== 'highlighted',
|
||
|
})<{ highlighted?: boolean }>(({ theme, highlighted }) => ({
|
||
|
backgroundColor: highlighted ? theme.palette.highlight : 'transparent',
|
||
|
color: theme.palette.text.primary,
|
||
|
textDecorationColor: theme.palette.text.disabled,
|
||
|
textDecorationStyle: 'dashed',
|
||
|
textUnderlineOffset: theme.spacing(0.5),
|
||
|
}));
|
||
|
|
||
|
interface ITooltipLinkProps extends LinkProps {
|
||
|
tooltip: ReactNode;
|
||
|
highlighted?: boolean;
|
||
|
tooltipProps?: Omit<IHtmlTooltipProps, 'title' | 'children'>;
|
||
|
children: ReactNode;
|
||
|
}
|
||
|
|
||
|
export const TooltipLink = ({
|
||
|
tooltip,
|
||
|
highlighted,
|
||
|
tooltipProps,
|
||
|
children,
|
||
|
...props
|
||
|
}: ITooltipLinkProps) => (
|
||
|
<HtmlTooltip title={tooltip} {...tooltipProps}>
|
||
|
<StyledLink highlighted={highlighted} {...props}>
|
||
|
{children}
|
||
|
</StyledLink>
|
||
|
</HtmlTooltip>
|
||
|
);
|