mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
|
|
import React, { FC } from 'react';
|
||
|
|
import { Icon, IconName, Tooltip } from '@grafana/ui';
|
||
|
|
import { sanitize, sanitizeUrl } from '@grafana/data/src/text/sanitize';
|
||
|
|
import { DashboardsDropdown } from './DashboardsDropdown';
|
||
|
|
import { getLinkSrv } from '../../../panel/panellinks/link_srv';
|
||
|
|
|
||
|
|
import { DashboardModel } from '../../state';
|
||
|
|
import { DashboardLink } from '../../state/DashboardModel';
|
||
|
|
import { iconMap } from '../DashLinks/DashLinksEditorCtrl';
|
||
|
|
|
||
|
|
export interface Props {
|
||
|
|
dashboard: DashboardModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const DashboardLinks: FC<Props> = ({ dashboard }) => {
|
||
|
|
return (
|
||
|
|
dashboard.links.length > 0 && (
|
||
|
|
<>
|
||
|
|
{dashboard.links.map((link: DashboardLink, index: number) => {
|
||
|
|
const linkInfo = getLinkSrv().getAnchorInfo(link);
|
||
|
|
const key = `${link.title}-$${index}`;
|
||
|
|
|
||
|
|
if (link.asDropdown) {
|
||
|
|
return <DashboardsDropdown key={key} link={link} linkInfo={linkInfo} dashboardId={dashboard.id} />;
|
||
|
|
}
|
||
|
|
|
||
|
|
const linkElement = (
|
||
|
|
<a className="gf-form-label" href={sanitizeUrl(linkInfo.href)} target={link.target}>
|
||
|
|
<Icon name={iconMap[link.icon] as IconName} />
|
||
|
|
<span>{sanitize(linkInfo.title)}</span>
|
||
|
|
</a>
|
||
|
|
);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div key={key} className="gf-form">
|
||
|
|
{link.tooltip ? <Tooltip content={link.tooltip}>{linkElement}</Tooltip> : linkElement}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
})}
|
||
|
|
</>
|
||
|
|
)
|
||
|
|
);
|
||
|
|
};
|