mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
import React, { useCallback, useRef } from 'react';
|
|
import { CodeEditor, Monaco } from '@grafana/ui';
|
|
import language from '../metric-math/definition';
|
|
import { registerLanguage } from '../monarch/register';
|
|
import type * as monacoType from 'monaco-editor/esm/vs/editor/editor.api';
|
|
import { TRIGGER_SUGGEST } from '../monarch/commands';
|
|
import { CloudWatchDatasource } from '../datasource';
|
|
|
|
export interface Props {
|
|
onChange: (query: string) => void;
|
|
onRunQuery: () => void;
|
|
expression: string;
|
|
datasource: CloudWatchDatasource;
|
|
}
|
|
|
|
export function MathExpressionQueryField({
|
|
expression: query,
|
|
onChange,
|
|
onRunQuery,
|
|
datasource,
|
|
}: React.PropsWithChildren<Props>) {
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const onEditorMount = useCallback(
|
|
(editor: monacoType.editor.IStandaloneCodeEditor, monaco: Monaco) => {
|
|
editor.onDidFocusEditorText(() => editor.trigger(TRIGGER_SUGGEST.id, TRIGGER_SUGGEST.id, {}));
|
|
editor.addCommand(monaco.KeyMod.Shift | monaco.KeyCode.Enter, () => {
|
|
const text = editor.getValue();
|
|
onChange(text);
|
|
onRunQuery();
|
|
});
|
|
|
|
// auto resizes the editor to be the height of the content it holds
|
|
// this code comes from the Prometheus query editor.
|
|
// We may wish to consider abstracting it into the grafana/ui repo in the future
|
|
const updateElementHeight = () => {
|
|
const containerDiv = containerRef.current;
|
|
if (containerDiv !== null && editor.getContentHeight() < 200) {
|
|
const pixelHeight = editor.getContentHeight();
|
|
containerDiv.style.height = `${pixelHeight}px`;
|
|
containerDiv.style.width = '100%';
|
|
const pixelWidth = containerDiv.clientWidth;
|
|
editor.layout({ width: pixelWidth, height: pixelHeight });
|
|
}
|
|
};
|
|
|
|
editor.onDidContentSizeChange(updateElementHeight);
|
|
updateElementHeight();
|
|
},
|
|
[onChange, onRunQuery]
|
|
);
|
|
|
|
return (
|
|
<div ref={containerRef}>
|
|
<CodeEditor
|
|
monacoOptions={{
|
|
// without this setting, the auto-resize functionality causes an infinite loop, don't remove it!
|
|
scrollBeyondLastLine: false,
|
|
|
|
// These additional options are style focused and are a subset of those in the query editor in Prometheus
|
|
fontSize: 14,
|
|
lineNumbers: 'off',
|
|
renderLineHighlight: 'none',
|
|
scrollbar: {
|
|
vertical: 'hidden',
|
|
horizontal: 'hidden',
|
|
},
|
|
suggestFontSize: 12,
|
|
wordWrap: 'on',
|
|
}}
|
|
language={language.id}
|
|
value={query}
|
|
onBlur={(value) => {
|
|
if (value !== query) {
|
|
onChange(value);
|
|
onRunQuery();
|
|
}
|
|
}}
|
|
onBeforeEditorMount={(monaco: Monaco) =>
|
|
registerLanguage(monaco, language, datasource.metricMathCompletionItemProvider)
|
|
}
|
|
onEditorDidMount={onEditorMount}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|