97 lines
2.9 KiB
JavaScript
97 lines
2.9 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import IntegrationForm from './IntegrationForm';
|
|
import { withRequest } from 'HOCs';
|
|
import { edit } from 'Duck/integrations/actions';
|
|
import DocLink from 'Shared/DocLink/DocLink';
|
|
import IntegrationModalCard from 'Components/Client/Integrations/IntegrationModalCard';
|
|
|
|
@connect(
|
|
(state) => ({
|
|
config: state.getIn(['elasticsearch', 'instance'])
|
|
}),
|
|
{ edit }
|
|
)
|
|
@withRequest({
|
|
dataName: 'isValid',
|
|
initialData: false,
|
|
dataWrapper: (data) => data.state,
|
|
requestName: 'validateConfig',
|
|
endpoint: '/integrations/elasticsearch/test',
|
|
method: 'POST'
|
|
})
|
|
export default class ElasticsearchForm extends React.PureComponent {
|
|
componentWillReceiveProps(newProps) {
|
|
const {
|
|
config: { host, port, apiKeyId, apiKey }
|
|
} = this.props;
|
|
const { loading, config } = newProps;
|
|
const valuesChanged = host !== config.host || port !== config.port || apiKeyId !== config.apiKeyId || apiKey !== config.apiKey;
|
|
if (!loading && valuesChanged && newProps.config.validateKeys() && newProps) {
|
|
this.validateConfig(newProps);
|
|
}
|
|
}
|
|
|
|
validateConfig = (newProps) => {
|
|
const { config } = newProps;
|
|
this.props
|
|
.validateConfig({
|
|
host: config.host,
|
|
port: config.port,
|
|
apiKeyId: config.apiKeyId,
|
|
apiKey: config.apiKey
|
|
})
|
|
.then((res) => {
|
|
const { isValid } = this.props;
|
|
this.props.edit('elasticsearch', { isValid: isValid });
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const props = this.props;
|
|
return (
|
|
<div className='bg-white h-screen overflow-y-auto' style={{ width: '350px' }}>
|
|
<IntegrationModalCard title='Elasticsearch' icon='integrations/elasticsearch'
|
|
description='Integrate Elasticsearch with session replays to seamlessly observe backend errors.' />
|
|
|
|
<div className='p-5 border-b mb-4'>
|
|
<div className='font-medium mb-1'>How it works?</div>
|
|
<ol className="list-decimal list-inside">
|
|
<li>Create a new Elastic API key</li>
|
|
<li>Enter the API key below</li>
|
|
<li>Propagate openReplaySessionToken</li>
|
|
</ol>
|
|
<DocLink className='mt-4' label='Integrate Elasticsearch'
|
|
url='https://docs.openreplay.com/integrations/elastic' />
|
|
</div>
|
|
<IntegrationForm
|
|
{...props}
|
|
name='elasticsearch'
|
|
formFields={[
|
|
{
|
|
key: 'host',
|
|
label: 'Host'
|
|
},
|
|
{
|
|
key: 'apiKeyId',
|
|
label: 'API Key ID'
|
|
},
|
|
{
|
|
key: 'apiKey',
|
|
label: 'API Key'
|
|
},
|
|
{
|
|
key: 'indexes',
|
|
label: 'Indexes'
|
|
},
|
|
{
|
|
key: 'port',
|
|
label: 'Port',
|
|
type: 'number'
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
}
|