grafana/public/app/plugins/datasource/loki/components/LokiQueryEditorByApp.tsx
2022-10-20 14:49:55 +02:00

25 lines
618 B
TypeScript

import React, { 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',
};