mirror of https://github.com/portainer/portainer
44 lines
912 B
TypeScript
44 lines
912 B
TypeScript
import { UISrefActive } from '@uirouter/react';
|
|
import { Children, ComponentProps, ReactNode } from 'react';
|
|
import _ from 'lodash';
|
|
|
|
import { Link as NavLink } from '@@/Link';
|
|
|
|
import styles from './Link.module.css';
|
|
|
|
interface Props extends ComponentProps<typeof NavLink> {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function Link({ children, to, options, params, title }: Props) {
|
|
const label = title || getLabel(children);
|
|
|
|
return (
|
|
<UISrefActive class={styles.active}>
|
|
<NavLink
|
|
to={to}
|
|
params={params}
|
|
className={styles.link}
|
|
title={label}
|
|
options={options}
|
|
>
|
|
{children}
|
|
</NavLink>
|
|
</UISrefActive>
|
|
);
|
|
}
|
|
|
|
function getLabel(children: ReactNode) {
|
|
return _.first(
|
|
_.compact(
|
|
Children.map(children, (child) => {
|
|
if (typeof child === 'string') {
|
|
return child;
|
|
}
|
|
|
|
return '';
|
|
})
|
|
)
|
|
);
|
|
}
|