ToolJet/frontend/src/Editor/QueryManager/QueryEditors/Elasticsearch.jsx
2021-05-09 08:47:19 +05:30

111 lines
3 KiB
JavaScript

import React from 'react';
import CodeMirror from '@uiw/react-codemirror';
import 'codemirror/theme/duotone-light.css';
import SelectSearch, { fuzzySearch } from 'react-select-search';
import { CodeHinter } from '../../CodeBuilder/CodeHinter';
class Elasticsearch extends React.Component {
constructor(props) {
super(props);
this.state = {
options: this.props.options
};
}
componentDidMount() {
this.setState({
options: this.props.options
});
}
changeOption = (option, value) => {
this.setState(
{
options: {
...this.state.options,
[option]: value
}
},
() => {
this.props.optionsChanged(this.state.options);
}
);
}
changeOperation = (operation) => {
this.setState(
{
options: {
...this.state.options,
operation
}
},
() => {
this.props.optionsChanged(this.state.options);
}
);
};
render() {
const { options } = this.state;
return (
<div>
{options && (
<div>
<div className="mb-3 mt-2">
<label className="form-label">Operation</label>
<SelectSearch
options={[
{ value: 'search', name: 'Search' }
// { value: 'index', name: 'Index'},
// { value: 'create', name: 'Create'},
// { value: 'update', name: 'Update'},
]}
value={this.state.options.operation}
search={false}
onChange={(value) => {
this.changeOperation(value);
}}
filterOptions={fuzzySearch}
placeholder="Select.."
/>
</div>
{options.operation === 'search' && (
<div>
<div className="mb-3 mt-2">
<label className="form-label text-muted">Index</label>
<CodeHinter
currentState={this.props.currentState}
initialValue={this.state.options.index}
onChange={(value) => this.changeOption('index', value)}
/>
</div>
<div className="mb-3 mt-2">
<label className="form-label text-reset">Query</label>
<CodeMirror
height="auto"
fontSize="2"
placeholder={'{ "name": "" }'}
value={options.query}
onChange={(instance) => this.changeOption('query', instance.getValue())}
options={{
theme: 'duotone-light',
mode: 'javascript',
lineWrapping: true,
scrollbarStyle: null
}}
/>
</div>
</div>
)}
</div>
)}
</div>
);
}
}
export { Elasticsearch };