3
0
mirror of https://github.com/grafana/grafana.git synced 2025-02-25 18:55:37 -06:00
grafana/public/app/plugins/datasource/elasticsearch/configuration/ConfigEditor.tsx
Ivana Huckova 712c505251
Divider: Remove core component and replace with grafana/ui components ()
* Divider: Remove core component and replace with grafana/ui components

* Update gap

* Bump experimental in tempo

---------

Co-authored-by: Fabrizio <fabrizio.casati@grafana.com>
2024-01-16 13:27:51 +02:00

120 lines
3.8 KiB
TypeScript

import React, { useEffect } from 'react';
import { SIGV4ConnectionConfig } from '@grafana/aws-sdk';
import { DataSourcePluginOptionsEditorProps } from '@grafana/data';
import {
AdvancedHttpSettings,
Auth,
AuthMethod,
ConfigSection,
ConnectionSettings,
convertLegacyAuthProps,
DataSourceDescription,
} from '@grafana/experimental';
import { Alert, SecureSocksProxySettings, Divider, Stack } from '@grafana/ui';
import { config } from 'app/core/config';
import { ElasticsearchOptions } from '../types';
import { DataLinks } from './DataLinks';
import { ElasticDetails } from './ElasticDetails';
import { LogsConfig } from './LogsConfig';
import { coerceOptions, isValidOptions } from './utils';
export type Props = DataSourcePluginOptionsEditorProps<ElasticsearchOptions>;
export const ConfigEditor = (props: Props) => {
const { options, onOptionsChange } = props;
useEffect(() => {
if (!isValidOptions(options)) {
onOptionsChange(coerceOptions(options));
}
}, [onOptionsChange, options]);
const authProps = convertLegacyAuthProps({
config: options,
onChange: onOptionsChange,
});
if (config.sigV4AuthEnabled) {
authProps.customMethods = [
{
id: 'custom-sigv4',
label: 'SigV4 auth',
description: 'AWS Signature Version 4 authentication',
component: <SIGV4ConnectionConfig inExperimentalAuthComponent={true} {...props} />,
},
];
authProps.selectedMethod = options.jsonData.sigV4Auth ? 'custom-sigv4' : authProps.selectedMethod;
}
return (
<>
{options.access === 'direct' && (
<Alert title="Error" severity="error">
Browser access mode in the Elasticsearch datasource is no longer available. Switch to server access mode.
</Alert>
)}
<DataSourceDescription
dataSourceName="Elasticsearch"
docsLink="https://grafana.com/docs/grafana/latest/datasources/elasticsearch"
hasRequiredFields={false}
/>
<Divider spacing={4} />
<ConnectionSettings config={options} onChange={onOptionsChange} urlPlaceholder="http://localhost:9200" />
<Divider spacing={4} />
<Auth
{...authProps}
onAuthMethodSelect={(method) => {
onOptionsChange({
...options,
basicAuth: method === AuthMethod.BasicAuth,
withCredentials: method === AuthMethod.CrossSiteCredentials,
jsonData: {
...options.jsonData,
sigV4Auth: method === 'custom-sigv4',
oauthPassThru: method === AuthMethod.OAuthForward,
},
});
}}
/>
<Divider spacing={4} />
<ConfigSection
title="Additional settings"
description="Additional settings are optional settings that can be configured for more control over your data source."
isCollapsible={true}
isInitiallyOpen
>
<Stack gap={5} direction="column">
<AdvancedHttpSettings config={options} onChange={onOptionsChange} />
{config.secureSocksDSProxyEnabled && (
<SecureSocksProxySettings options={options} onOptionsChange={onOptionsChange} />
)}
<ElasticDetails value={options} onChange={onOptionsChange} />
<LogsConfig
value={options.jsonData}
onChange={(newValue) =>
onOptionsChange({
...options,
jsonData: newValue,
})
}
/>
<DataLinks
value={options.jsonData.dataLinks}
onChange={(newValue) => {
onOptionsChange({
...options,
jsonData: {
...options.jsonData,
dataLinks: newValue,
},
});
}}
/>
</Stack>
</ConfigSection>
</>
);
};