2025-04-01 10:38:02 +09:00

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