mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { Button } from '@grafana/ui';
|
|
|
|
import { ExemplarTraceIdDestination } from '../types';
|
|
|
|
import ExemplarSetting from './ExemplarSetting';
|
|
|
|
type Props = {
|
|
options?: ExemplarTraceIdDestination[];
|
|
onChange: (value: ExemplarTraceIdDestination[]) => void;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export function ExemplarsSettings({ options, onChange, disabled }: Props) {
|
|
return (
|
|
<>
|
|
<h3 className="page-heading">Exemplars</h3>
|
|
|
|
{options &&
|
|
options.map((option, index) => {
|
|
return (
|
|
<ExemplarSetting
|
|
key={index}
|
|
value={option}
|
|
onChange={(newField) => {
|
|
const newOptions = [...options];
|
|
newOptions.splice(index, 1, newField);
|
|
onChange(newOptions);
|
|
}}
|
|
onDelete={() => {
|
|
const newOptions = [...options];
|
|
newOptions.splice(index, 1);
|
|
onChange(newOptions);
|
|
}}
|
|
disabled={disabled}
|
|
/>
|
|
);
|
|
})}
|
|
|
|
{!disabled && (
|
|
<Button
|
|
variant="secondary"
|
|
aria-label={selectors.components.DataSource.Prometheus.configPage.exemplarsAddButton}
|
|
className={css`
|
|
margin-bottom: 10px;
|
|
`}
|
|
icon="plus"
|
|
onClick={(event) => {
|
|
event.preventDefault();
|
|
const newOptions = [...(options || []), { name: 'traceID' }];
|
|
onChange(newOptions);
|
|
}}
|
|
>
|
|
Add
|
|
</Button>
|
|
)}
|
|
</>
|
|
);
|
|
}
|