mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import React, { FC } from 'react';
|
|
import { Field, InputControl } from '@grafana/ui';
|
|
import { RuleEditorSection } from './RuleEditorSection';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import { RuleFormType, RuleFormValues } from '../../types/rule-form';
|
|
import { ExpressionEditor } from './ExpressionEditor';
|
|
import { GrafanaQueryEditor } from './GrafanaQueryEditor';
|
|
import { isArray } from 'lodash';
|
|
|
|
// @TODO get proper query editors in
|
|
export const QueryStep: FC = () => {
|
|
const { control, watch, errors } = useFormContext<RuleFormValues>();
|
|
const type = watch('type');
|
|
const dataSourceName = watch('dataSourceName');
|
|
return (
|
|
<RuleEditorSection stepNo={2} title="Create a query to be alerted on">
|
|
{type === RuleFormType.system && dataSourceName && (
|
|
<Field error={errors.expression?.message} invalid={!!errors.expression?.message}>
|
|
<InputControl
|
|
name="expression"
|
|
dataSourceName={dataSourceName}
|
|
as={ExpressionEditor}
|
|
control={control}
|
|
rules={{
|
|
required: { value: true, message: 'A valid expression is required' },
|
|
}}
|
|
/>
|
|
</Field>
|
|
)}
|
|
{type === RuleFormType.threshold && (
|
|
<Field
|
|
invalid={!!errors.queries}
|
|
error={(!!errors.queries && 'Must provide at least one valid query.') || undefined}
|
|
>
|
|
<InputControl
|
|
name="queries"
|
|
as={GrafanaQueryEditor}
|
|
control={control}
|
|
rules={{
|
|
validate: (queries) => isArray(queries) && !!queries.length,
|
|
}}
|
|
/>
|
|
</Field>
|
|
)}
|
|
</RuleEditorSection>
|
|
);
|
|
};
|