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.
38 lines
1000 B
38 lines
1000 B
import * as React from 'react';
|
|
import warning from '../_util/warning';
|
|
import type { BlockProps } from './Base';
|
|
import Base from './Base';
|
|
|
|
export interface LinkProps
|
|
extends BlockProps,
|
|
Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'type'> {
|
|
ellipsis?: boolean;
|
|
}
|
|
|
|
const Link: React.ForwardRefRenderFunction<HTMLElement, LinkProps> = (
|
|
{ ellipsis, rel, ...restProps },
|
|
ref,
|
|
) => {
|
|
warning(
|
|
typeof ellipsis !== 'object',
|
|
'Typography.Link',
|
|
'`ellipsis` only supports boolean value.',
|
|
);
|
|
|
|
const baseRef = React.useRef<any>(null);
|
|
|
|
React.useImperativeHandle(ref, () => baseRef.current);
|
|
|
|
const mergedProps = {
|
|
...restProps,
|
|
rel: rel === undefined && restProps.target === '_blank' ? 'noopener noreferrer' : rel,
|
|
};
|
|
|
|
// https://github.com/ant-design/ant-design/issues/26622
|
|
// @ts-ignore
|
|
delete mergedProps.navigate;
|
|
|
|
return <Base {...mergedProps} ref={baseRef} ellipsis={!!ellipsis} component="a" />;
|
|
};
|
|
|
|
export default React.forwardRef(Link);
|
|
|