ToolJet/frontend/src/Editor/QueryManager/Transformation.jsx

72 lines
2.5 KiB
React
Raw Normal View History

import React, { useState } from 'react';
2021-05-03 14:27:32 +00:00
import 'codemirror/theme/base16-light.css';
// import { 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
export const Transformation = ({ changeOption, currentState, options, darkMode }) => {
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);
const [enableTransformation, setEnableTransformation] = useState(() => options.enableTransformation);
// let suggestions = useMemo(() => getSuggestionKeys(currentState), [currentState.components, currentState.queries]);
function codeChanged(value) {
setValue(() => value);
2021-05-03 14:27:32 +00:00
changeOption('transformation', value);
}
function toggleEnableTransformation() {
setEnableTransformation((prev) => !prev);
changeOption('enableTransformation', !enableTransformation);
}
2021-04-30 06:31:32 +00:00
return (
<div className="field mb-2 transformation-editor">
<label className="form-check form-switch my-2">
2021-04-30 06:31:32 +00:00
<input
className="form-check-input"
2021-04-30 06:31:32 +00:00
type="checkbox"
onClick={toggleEnableTransformation}
checked={enableTransformation}
2021-04-30 06:31:32 +00:00
/>
<span className="form-check-label">Transformations</span>
2021-04-30 06:31:32 +00:00
</label>
{!enableTransformation && (
2021-06-03 07:26:35 +00:00
<div>
<div className="alert alert-success" role="alert">
Transformations can be used to transform the results of queries. All the app variables are accessible from
transformers and supports JS libraries such as Lodash & Moment.{' '}
<a href="https://docs.tooljet.io/docs/tutorial/transformations" target="_blank" rel="noreferrer">
Read documentation
</a>
.
2021-06-03 07:26:35 +00:00
</div>
2021-04-10 02:06:17 +00:00
</div>
2021-04-30 06:31:32 +00:00
)}
<br></br>
{enableTransformation && (
<div>
2021-06-03 05:59:13 +00:00
<CodeHinter
currentState={currentState}
initialValue={value}
mode="javascript"
theme={darkMode ? 'monokai' : 'base16-light'}
lineNumbers={true}
className="query-hinter"
ignoreBraces={true}
onChange={(value) => codeChanged(value)}
/>
</div>
2021-04-30 06:31:32 +00:00
)}
</div>
);
};