mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
395c549049
* chore: init measure * chore: out of space * refactor: Multiple render * chore: auto cut * feat: render split * fix: ellipsis logic of suffix * fix: ref missing * fix: Tooltip missing * test: snapshot * chore: opt for textarea * test: back part of ellipsis * chore: back of ellipsis logic * ellipsis logic * fix: init ellipsis measure * fix: ellipsis event * chore: clean up * test: Update snapshot * fix: test * test: Update snapshot * chore: lazy ellipsis * fix: check css ellipsis logic * test: Update snapshot * test: back of coverage * chore: clean up * test: ignore else * test: clean up
38 lines
983 B
TypeScript
38 lines
983 B
TypeScript
import * as React from 'react';
|
|
import devWarning from '../_util/devWarning';
|
|
import Base, { BlockProps } from './Base';
|
|
|
|
export interface LinkProps
|
|
extends BlockProps,
|
|
Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'type'> {
|
|
ellipsis?: boolean;
|
|
}
|
|
|
|
const Link: React.ForwardRefRenderFunction<HTMLElement, LinkProps> = (
|
|
{ ellipsis, rel, ...restProps },
|
|
ref,
|
|
) => {
|
|
devWarning(
|
|
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);
|