PromucFlow_constructor/app/client/src/components/propertyControls/CodeEditorControl.tsx

55 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-01-02 13:36:35 +00:00
import React, { ChangeEvent } from "react";
2019-11-05 05:09:50 +00:00
import BaseControl, { ControlProps } from "./BaseControl";
import CodeEditor from "components/editorComponents/CodeEditor";
2020-01-02 13:36:35 +00:00
import { EventOrValueHandler } from "redux-form";
import {
EditorModes,
EditorSize,
EditorTheme,
TabBehaviour,
} from "components/editorComponents/CodeEditor/EditorConfig";
2019-11-05 05:09:50 +00:00
class CodeEditorControl extends BaseControl<ControlProps> {
render() {
2020-06-04 13:49:22 +00:00
const {
2020-06-10 12:16:50 +00:00
validationMessage,
2020-06-04 13:49:22 +00:00
expected,
propertyValue,
isValid,
dataTreePath,
2020-06-10 12:16:50 +00:00
evaluatedValue,
2020-06-04 13:49:22 +00:00
} = this.props;
const props: Partial<ControlProps> = {};
if (dataTreePath) props.dataTreePath = dataTreePath;
if (evaluatedValue) props.evaluatedValue = evaluatedValue;
if (expected) props.expected = expected;
2020-06-10 12:16:50 +00:00
2019-11-05 05:09:50 +00:00
return (
<CodeEditor
theme={EditorTheme.DARK}
input={{ value: propertyValue, onChange: this.onChange }}
meta={{
2020-06-10 12:16:50 +00:00
error: isValid ? "" : validationMessage,
touched: true,
}}
size={EditorSize.EXTENDED}
mode={EditorModes.TEXT_WITH_BINDING}
tabBehaviour={TabBehaviour.INDENT}
{...props}
/>
2019-11-05 05:09:50 +00:00
);
}
2020-01-02 13:36:35 +00:00
onChange: EventOrValueHandler<ChangeEvent<any>> = (
value: string | ChangeEvent,
) => {
2019-11-05 05:09:50 +00:00
this.updateProperty(this.props.propertyName, value);
};
static getControlType() {
2019-11-05 05:09:50 +00:00
return "CODE_EDITOR";
}
}
export default CodeEditorControl;