mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 02:52:27 +08:00
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import React, { useEffect, useState } from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { Select } from '@grafana/ui';
|
|
|
|
import { QueryEditorRow } from '..';
|
|
import { SELECT_WIDTH } from '../../constants';
|
|
import CloudMonitoringDatasource from '../../datasource';
|
|
import { SLOQuery } from '../../types';
|
|
|
|
export interface Props {
|
|
refId: string;
|
|
onChange: (query: SLOQuery) => void;
|
|
query: SLOQuery;
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
datasource: CloudMonitoringDatasource;
|
|
}
|
|
|
|
export const Service = ({ refId, query, templateVariableOptions, onChange, datasource }: Props) => {
|
|
const [services, setServices] = useState<Array<SelectableValue<string>>>([]);
|
|
const { projectName } = query;
|
|
|
|
useEffect(() => {
|
|
if (!projectName) {
|
|
return;
|
|
}
|
|
|
|
datasource.getSLOServices(projectName).then((services: Array<SelectableValue<string>>) => {
|
|
setServices([
|
|
{
|
|
label: 'Template Variables',
|
|
options: templateVariableOptions,
|
|
},
|
|
...services,
|
|
]);
|
|
});
|
|
}, [datasource, projectName, templateVariableOptions]);
|
|
|
|
return (
|
|
<QueryEditorRow label="Service" htmlFor={`${refId}-slo-service`}>
|
|
<Select
|
|
inputId={`${refId}-slo-service`}
|
|
width={SELECT_WIDTH}
|
|
allowCustomValue
|
|
value={query?.serviceId && { value: query?.serviceId, label: query?.serviceName || query?.serviceId }}
|
|
placeholder="Select service"
|
|
options={services}
|
|
onChange={({ value: serviceId = '', label: serviceName = '' }) =>
|
|
onChange({ ...query, serviceId, serviceName, sloId: '' })
|
|
}
|
|
/>
|
|
</QueryEditorRow>
|
|
);
|
|
};
|