mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import type * as monacoType from 'monaco-editor/esm/vs/editor/editor.api';
|
|
import React, { FunctionComponent, useCallback, useEffect } from 'react';
|
|
|
|
import { CodeEditor, Monaco } from '@grafana/ui';
|
|
|
|
import language from '../cloudwatch-sql/definition';
|
|
import { CloudWatchDatasource } from '../datasource';
|
|
import { TRIGGER_SUGGEST } from '../monarch/commands';
|
|
import { registerLanguage } from '../monarch/register';
|
|
|
|
export interface Props {
|
|
region: string;
|
|
sql: string;
|
|
onChange: (sql: string) => void;
|
|
onRunQuery: () => void;
|
|
datasource: CloudWatchDatasource;
|
|
}
|
|
|
|
export const SQLCodeEditor: FunctionComponent<Props> = ({ region, sql, onChange, onRunQuery, datasource }) => {
|
|
useEffect(() => {
|
|
datasource.sqlCompletionItemProvider.setRegion(region);
|
|
}, [region, datasource]);
|
|
|
|
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();
|
|
});
|
|
},
|
|
[onChange, onRunQuery]
|
|
);
|
|
|
|
return (
|
|
<CodeEditor
|
|
height={'150px'}
|
|
language={language.id}
|
|
value={sql}
|
|
onBlur={(value) => {
|
|
if (value !== sql) {
|
|
onChange(value);
|
|
}
|
|
}}
|
|
showMiniMap={false}
|
|
showLineNumbers={true}
|
|
onBeforeEditorMount={(monaco: Monaco) => registerLanguage(monaco, language, datasource.sqlCompletionItemProvider)}
|
|
onEditorDidMount={onEditorMount}
|
|
/>
|
|
);
|
|
};
|