25 lines
611 B
TypeScript
25 lines
611 B
TypeScript
import { memo } from 'react';
|
|
|
|
import { CoreApp } from '@grafana/data';
|
|
|
|
import { LokiQueryEditor } from './LokiQueryEditor';
|
|
import { LokiQueryEditorForAlerting } from './LokiQueryEditorForAlerting';
|
|
import { LokiQueryEditorProps } from './types';
|
|
|
|
export function LokiQueryEditorByApp(props: LokiQueryEditorProps) {
|
|
const { app } = props;
|
|
|
|
switch (app) {
|
|
case CoreApp.CloudAlerting:
|
|
return <LokiQueryEditorForAlerting {...props} />;
|
|
default:
|
|
return <LokiQueryEditor {...props} />;
|
|
}
|
|
}
|
|
|
|
export default memo(LokiQueryEditorByApp);
|
|
|
|
export const testIds = {
|
|
editor: 'loki-editor',
|
|
};
|