mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 12:38:58 +08:00
59ad48476b
* chore: add boime lint * fix lint * use files ignore * revert change * ignore clarity.js * fix some errors * fix some errors * fix some errors * fix some errors * add yml file * Update clarity.js Signed-off-by: afc163 <afc163@gmail.com> * add npm run lint:biome * add npm run lint:biome * fix test case * fix ts errors * fix ts errors * fix lint and add .lintstagedrc * shorten prop name * chore: update package.json * update biome.json * chore: remove stylelint * chore: useOptionalChain * fix lint * biome format * prettier all code * prettier all code * fix site test --------- Signed-off-by: afc163 <afc163@gmail.com>
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import type { MouseEvent, MouseEventHandler } from 'react';
|
|
import React, { forwardRef, useLayoutEffect, useTransition } from 'react';
|
|
import { Link as DumiLink, useLocation, useNavigate } from 'dumi';
|
|
import nprogress from 'nprogress';
|
|
|
|
export interface LinkProps {
|
|
to: string | { pathname?: string; search?: string; hash?: string };
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
onClick?: MouseEventHandler;
|
|
}
|
|
|
|
nprogress.configure({ showSpinner: false });
|
|
|
|
const Link = forwardRef<HTMLAnchorElement, React.PropsWithChildren<LinkProps>>((props, ref) => {
|
|
const { to, children, ...rest } = props;
|
|
const [isPending, startTransition] = useTransition();
|
|
const navigate = useNavigate();
|
|
const { pathname } = useLocation();
|
|
|
|
const href = React.useMemo<string>(() => {
|
|
if (typeof to === 'object') {
|
|
return `${to.pathname || pathname}${to.search || ''}${to.hash || ''}`;
|
|
}
|
|
return to;
|
|
}, [to]);
|
|
|
|
const handleClick = (e: MouseEvent<HTMLAnchorElement>) => {
|
|
props.onClick?.(e);
|
|
if (!href?.startsWith('http')) {
|
|
// Should support open in new tab
|
|
if (!e.metaKey && !e.ctrlKey && !e.shiftKey) {
|
|
e.preventDefault();
|
|
startTransition(() => {
|
|
if (href) {
|
|
navigate(href);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
useLayoutEffect(() => {
|
|
if (isPending) {
|
|
nprogress.start();
|
|
} else {
|
|
nprogress.done();
|
|
}
|
|
}, [isPending]);
|
|
|
|
return (
|
|
<DumiLink ref={ref} onClick={handleClick} {...rest} to={href} prefetch>
|
|
{children}
|
|
</DumiLink>
|
|
);
|
|
});
|
|
|
|
export default Link;
|