2021-05-03 16:04:54 +00:00
|
|
|
import React, { useState, useEffect, useMemo } from 'react';
|
2021-04-10 02:06:17 +00:00
|
|
|
import CodeMirror from '@uiw/react-codemirror';
|
2021-05-03 14:27:32 +00:00
|
|
|
import 'codemirror/theme/base16-light.css';
|
2021-05-03 16:04:54 +00:00
|
|
|
import { handleChange, onBeforeChange, getSuggestionKeys } from '../CodeBuilder/utils';
|
2021-05-03 14:27:32 +00:00
|
|
|
import 'codemirror/mode/javascript/javascript';
|
|
|
|
|
import 'codemirror/addon/hint/show-hint';
|
|
|
|
|
import 'codemirror/addon/search/match-highlighter';
|
|
|
|
|
import 'codemirror/addon/hint/show-hint.css';
|
2021-06-03 05:59:13 +00:00
|
|
|
import { CodeHinter } from '../CodeBuilder/CodeHinter';
|
2021-04-10 02:06:17 +00:00
|
|
|
|
2021-05-03 14:27:32 +00:00
|
|
|
export const Transformation = ({ changeOption, options, currentState }) => {
|
2021-04-30 08:10:57 +00:00
|
|
|
const defaultValue = options.transformation
|
|
|
|
|
|| `// write your code here
|
2021-04-10 02:06:17 +00:00
|
|
|
// return value will be set as data and the original data will be available as rawData
|
|
|
|
|
return data.filter(row => row.amount > 1000);`;
|
|
|
|
|
|
2021-06-03 05:59:13 +00:00
|
|
|
const [value, setValue] = useState(defaultValue);
|
2021-04-18 13:17:55 +00:00
|
|
|
|
2021-06-03 05:59:13 +00:00
|
|
|
useEffect(() => {
|
|
|
|
|
setValue(defaultValue);
|
|
|
|
|
}, [defaultValue]);
|
2021-04-18 13:17:55 +00:00
|
|
|
|
2021-05-03 14:27:32 +00:00
|
|
|
function codeChanged(value) {
|
|
|
|
|
changeOption('transformation', value);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-03 16:04:54 +00:00
|
|
|
let suggestions = useMemo(() => getSuggestionKeys(currentState), [currentState.components, currentState.queries]);
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
return (
|
2021-05-02 06:10:28 +00:00
|
|
|
<div className="field mb-2 transformation-editor">
|
2021-04-30 08:10:57 +00:00
|
|
|
<label className="form-check form-switch my-2">
|
2021-04-30 06:31:32 +00:00
|
|
|
<input
|
2021-04-30 08:10:57 +00:00
|
|
|
className="form-check-input"
|
2021-04-30 06:31:32 +00:00
|
|
|
type="checkbox"
|
|
|
|
|
onClick={() => changeOption('enableTransformation', !options.enableTransformation)}
|
|
|
|
|
checked={options.enableTransformation}
|
|
|
|
|
/>
|
2021-04-30 08:10:57 +00:00
|
|
|
<span className="form-check-label">Transformations</span>
|
2021-04-30 06:31:32 +00:00
|
|
|
</label>
|
|
|
|
|
{!options.enableTransformation && (
|
2021-05-03 14:27:32 +00:00
|
|
|
<div className="alert alert-info" role="alert">
|
2021-04-30 06:31:32 +00:00
|
|
|
Transformations can be used to transform the results of queries.
|
2021-04-10 02:06:17 +00:00
|
|
|
</div>
|
2021-04-30 06:31:32 +00:00
|
|
|
)}
|
|
|
|
|
<br></br>
|
|
|
|
|
{options.enableTransformation && (
|
2021-06-03 05:59:13 +00:00
|
|
|
<div style={{height: '240px'}}>
|
|
|
|
|
<CodeHinter
|
|
|
|
|
currentState={currentState}
|
|
|
|
|
initialValue={value}
|
|
|
|
|
mode="javascript"
|
|
|
|
|
theme="base16-light"
|
|
|
|
|
lineNumbers={true}
|
|
|
|
|
className="query-hinter"
|
|
|
|
|
onChange={(value) => changeOption('transformation', value)}
|
2021-05-02 06:10:28 +00:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
2021-04-30 06:31:32 +00:00
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|