Files
grafana/public/app/features/alerting/unified/components/AnnotationDetailsField.tsx

77 lines
1.9 KiB
TypeScript

import { css } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2, textUtil } from '@grafana/data';
import { Tooltip, useStyles2 } from '@grafana/ui';
import { Annotation, annotationLabels } from '../utils/constants';
import { DetailsField } from './DetailsField';
import { Tokenize } from './Tokenize';
import { Well } from './Well';
const wellableAnnotationKeys = ['message', 'description'];
interface Props {
annotationKey: string;
value: string;
valueLink?: string;
}
export const AnnotationDetailsField = ({ annotationKey, value, valueLink }: Props) => {
const label = annotationLabels[annotationKey as Annotation] ? (
<Tooltip content={annotationKey} placement="top" theme="info">
<span>{annotationLabels[annotationKey as Annotation]}</span>
</Tooltip>
) : (
annotationKey
);
return (
<DetailsField label={label} horizontal={true}>
<AnnotationValue annotationKey={annotationKey} value={value} valueLink={valueLink} />
</DetailsField>
);
};
const AnnotationValue = ({ annotationKey, value, valueLink }: Props) => {
const styles = useStyles2(getStyles);
const needsWell = wellableAnnotationKeys.includes(annotationKey);
const needsExternalLink = value && value.startsWith('http');
const tokenizeValue = <Tokenize input={value} delimiter={['{{', '}}']} />;
if (valueLink) {
return (
<a href={textUtil.sanitizeUrl(valueLink)} className={styles.link}>
{value}
</a>
);
}
if (needsWell) {
return <Well className={styles.well}>{tokenizeValue}</Well>;
}
if (needsExternalLink) {
return (
<a href={textUtil.sanitizeUrl(value)} target="__blank" className={styles.link}>
{value}
</a>
);
}
return <>{tokenizeValue}</>;
};
export const getStyles = (theme: GrafanaTheme2) => ({
well: css`
word-break: break-word;
`,
link: css`
word-break: break-all;
color: ${theme.colors.primary.text};
`,
});