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

53 lines
1.3 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;
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 }}
2020-06-04 13:49:22 +00:00
dataTreePath={dataTreePath}
expected={expected}
2020-06-10 12:16:50 +00:00
evaluatedValue={evaluatedValue}
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}
/>
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;