mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 10:42:20 +08:00

* i18n: removes useTranslate hook * chore: fix duplicate imports * chore: fix import sorting and hook dependencies
117 lines
4.3 KiB
TypeScript
117 lines
4.3 KiB
TypeScript
import { useCallback, useEffect, useRef } from 'react';
|
|
|
|
import { DataSourceApi, QueryEditorProps, SelectableValue } from '@grafana/data';
|
|
import { t } from '@grafana/i18n';
|
|
import { InlineField, Select } from '@grafana/ui';
|
|
|
|
import { ClassicConditions } from './components/ClassicConditions';
|
|
import { Math } from './components/Math';
|
|
import { Reduce } from './components/Reduce';
|
|
import { Resample } from './components/Resample';
|
|
import { SqlExpr } from './components/SqlExpr';
|
|
import { Threshold } from './components/Threshold';
|
|
import { ExpressionQuery, ExpressionQueryType, expressionTypes } from './types';
|
|
import { getDefaults } from './utils/expressionTypes';
|
|
|
|
type Props = QueryEditorProps<DataSourceApi<ExpressionQuery>, ExpressionQuery>;
|
|
|
|
const labelWidth = 15;
|
|
|
|
type NonClassicExpressionType = Exclude<ExpressionQueryType, ExpressionQueryType.classic>;
|
|
type ExpressionTypeConfigStorage = Partial<Record<NonClassicExpressionType, string>>;
|
|
|
|
function useExpressionsCache() {
|
|
const expressionCache = useRef<ExpressionTypeConfigStorage>({});
|
|
|
|
const getCachedExpression = useCallback((queryType: ExpressionQueryType) => {
|
|
switch (queryType) {
|
|
case ExpressionQueryType.math:
|
|
case ExpressionQueryType.reduce:
|
|
case ExpressionQueryType.resample:
|
|
case ExpressionQueryType.threshold:
|
|
case ExpressionQueryType.sql:
|
|
return expressionCache.current[queryType];
|
|
case ExpressionQueryType.classic:
|
|
return undefined;
|
|
}
|
|
}, []);
|
|
|
|
const setCachedExpression = useCallback((queryType: ExpressionQueryType, value: string | undefined) => {
|
|
switch (queryType) {
|
|
case ExpressionQueryType.math:
|
|
expressionCache.current.math = value;
|
|
break;
|
|
|
|
// We want to use the same value for Reduce, Resample and Threshold
|
|
case ExpressionQueryType.reduce:
|
|
case ExpressionQueryType.resample:
|
|
case ExpressionQueryType.threshold:
|
|
expressionCache.current.reduce = value;
|
|
expressionCache.current.resample = value;
|
|
expressionCache.current.threshold = value;
|
|
break;
|
|
case ExpressionQueryType.sql:
|
|
expressionCache.current.sql = value;
|
|
}
|
|
}, []);
|
|
|
|
return { getCachedExpression, setCachedExpression };
|
|
}
|
|
|
|
export function ExpressionQueryEditor(props: Props) {
|
|
const { query, queries, onRunQuery, onChange, app } = props;
|
|
const { getCachedExpression, setCachedExpression } = useExpressionsCache();
|
|
|
|
useEffect(() => {
|
|
setCachedExpression(query.type, query.expression);
|
|
}, [query.expression, query.type, setCachedExpression]);
|
|
|
|
const onSelectExpressionType = useCallback(
|
|
(item: SelectableValue<ExpressionQueryType>) => {
|
|
const cachedExpression = getCachedExpression(item.value!);
|
|
const defaults = getDefaults({ ...query, type: item.value! });
|
|
|
|
onChange({ ...defaults, expression: cachedExpression ?? defaults.expression });
|
|
},
|
|
[query, onChange, getCachedExpression]
|
|
);
|
|
|
|
const renderExpressionType = () => {
|
|
const refIds = queries!.filter((q) => query.refId !== q.refId).map((q) => ({ value: q.refId, label: q.refId }));
|
|
|
|
switch (query.type) {
|
|
case ExpressionQueryType.math:
|
|
return <Math onChange={onChange} query={query} labelWidth={labelWidth} onRunQuery={onRunQuery} />;
|
|
|
|
case ExpressionQueryType.reduce:
|
|
return <Reduce refIds={refIds} onChange={onChange} labelWidth={labelWidth} query={query} app={app} />;
|
|
|
|
case ExpressionQueryType.resample:
|
|
return <Resample query={query} labelWidth={labelWidth} onChange={onChange} refIds={refIds} />;
|
|
|
|
case ExpressionQueryType.classic:
|
|
return <ClassicConditions onChange={onChange} query={query} refIds={refIds} />;
|
|
|
|
case ExpressionQueryType.threshold:
|
|
return <Threshold onChange={onChange} query={query} labelWidth={labelWidth} refIds={refIds} />;
|
|
|
|
case ExpressionQueryType.sql:
|
|
return <SqlExpr onChange={onChange} query={query} refIds={refIds} />;
|
|
}
|
|
};
|
|
|
|
const selected = expressionTypes.find((o) => o.value === query.type);
|
|
|
|
return (
|
|
<div>
|
|
<InlineField
|
|
label={t('expressions.expression-query-editor.label-operation', 'Operation')}
|
|
labelWidth={labelWidth}
|
|
>
|
|
<Select options={expressionTypes} value={selected} onChange={onSelectExpressionType} width={25} />
|
|
</InlineField>
|
|
{renderExpressionType()}
|
|
</div>
|
|
);
|
|
}
|