mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 02:34:43 +08:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { SelectableValue } from '@grafana/data';
|
|
import { Select } from '@grafana/ui';
|
|
import React, { useEffect, useMemo, useState } from 'react';
|
|
|
|
import { QueryEditorRow } from '.';
|
|
import { SELECT_WIDTH } from '../constants';
|
|
import CloudMonitoringDatasource from '../datasource';
|
|
|
|
export interface Props {
|
|
refId: string;
|
|
datasource: CloudMonitoringDatasource;
|
|
onChange: (projectName: string) => void;
|
|
templateVariableOptions: Array<SelectableValue<string>>;
|
|
projectName: string;
|
|
}
|
|
|
|
export function Project({ refId, projectName, datasource, onChange, templateVariableOptions }: Props) {
|
|
const [projects, setProjects] = useState<Array<SelectableValue<string>>>([]);
|
|
useEffect(() => {
|
|
datasource.getProjects().then((projects) => setProjects(projects));
|
|
}, [datasource]);
|
|
|
|
const projectsWithTemplateVariables = useMemo(
|
|
() => [
|
|
projects,
|
|
{
|
|
label: 'Template Variables',
|
|
options: templateVariableOptions,
|
|
},
|
|
...projects,
|
|
],
|
|
[projects, templateVariableOptions]
|
|
);
|
|
|
|
return (
|
|
<QueryEditorRow label="Project" htmlFor={`${refId}-project`}>
|
|
<Select
|
|
menuShouldPortal
|
|
width={SELECT_WIDTH}
|
|
allowCustomValue
|
|
formatCreateLabel={(v) => `Use project: ${v}`}
|
|
onChange={({ value }) => onChange(value!)}
|
|
options={projectsWithTemplateVariables}
|
|
value={{ value: projectName, label: projectName }}
|
|
placeholder="Select Project"
|
|
inputId={`${refId}-project`}
|
|
/>
|
|
</QueryEditorRow>
|
|
);
|
|
}
|