You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
709 B
31 lines
709 B
import type { MouseEvent } from 'react';
|
|
import React, { forwardRef, startTransition } from 'react';
|
|
import { useNavigate } from 'dumi';
|
|
|
|
export type LinkProps = {
|
|
to?: string;
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
};
|
|
|
|
const Link = forwardRef<HTMLAnchorElement, LinkProps>((props, ref) => {
|
|
const { to, children, ...rest } = props;
|
|
const navigate = useNavigate();
|
|
|
|
const handleClick = (e: MouseEvent<HTMLAnchorElement>) => {
|
|
if (!to.startsWith('http')) {
|
|
e.preventDefault();
|
|
startTransition(() => {
|
|
navigate(to);
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<a ref={ref} href={to} onClick={handleClick} {...rest}>
|
|
{children}
|
|
</a>
|
|
);
|
|
});
|
|
|
|
export default Link;
|
|
|