mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
34 lines
967 B
TypeScript
34 lines
967 B
TypeScript
import React, { FunctionComponent, useEffect, useState } from 'react';
|
|
import { AnnotationQuery, EventBus } from '@grafana/data';
|
|
import { AnnotationPicker } from './AnnotationPicker';
|
|
|
|
interface Props {
|
|
events: EventBus;
|
|
annotations: AnnotationQuery[];
|
|
onAnnotationChanged: (annotation: any) => void;
|
|
}
|
|
|
|
export const Annotations: FunctionComponent<Props> = ({ annotations, onAnnotationChanged, events }) => {
|
|
const [visibleAnnotations, setVisibleAnnotations] = useState<AnnotationQuery[]>([]);
|
|
useEffect(() => {
|
|
setVisibleAnnotations(annotations.filter((annotation) => annotation.hide !== true));
|
|
}, [annotations]);
|
|
|
|
if (visibleAnnotations.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{visibleAnnotations.map((annotation) => (
|
|
<AnnotationPicker
|
|
events={events}
|
|
annotation={annotation}
|
|
onEnabledChanged={onAnnotationChanged}
|
|
key={annotation.name}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
};
|