2020-08-12 06:27:35 +00:00
|
|
|
import React from "react";
|
|
|
|
|
import { formValueSelector, change } from "redux-form";
|
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
|
import BaseControl, { ControlProps } from "./BaseControl";
|
|
|
|
|
import { ControlType } from "constants/PropertyControlConstants";
|
|
|
|
|
import DynamicTextField from "components/editorComponents/form/fields/DynamicTextField";
|
|
|
|
|
import {
|
|
|
|
|
EditorSize,
|
|
|
|
|
EditorModes,
|
2020-08-18 06:45:09 +00:00
|
|
|
TabBehaviour,
|
2020-08-12 06:27:35 +00:00
|
|
|
} from "components/editorComponents/CodeEditor/EditorConfig";
|
|
|
|
|
import { QUERY_EDITOR_FORM_NAME } from "constants/forms";
|
|
|
|
|
import { AppState } from "reducers";
|
|
|
|
|
import styled from "styled-components";
|
|
|
|
|
import TemplateMenu from "pages/Editor/QueryEditor/TemplateMenu";
|
|
|
|
|
import { QUERY_BODY_FIELD } from "constants/QueryEditorConstants";
|
|
|
|
|
import { getPluginResponseTypes } from "selectors/entitiesSelector";
|
2020-08-19 09:21:32 +00:00
|
|
|
import history from "utils/history";
|
|
|
|
|
import {
|
|
|
|
|
convertObjectToQueryParams,
|
|
|
|
|
getQueryParams,
|
|
|
|
|
} from "utils/AppsmithUtils";
|
2020-08-12 06:27:35 +00:00
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
|
.dynamic-text-field {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: 14px;
|
2020-11-02 09:31:00 +00:00
|
|
|
min-height: calc(100vh / 4);
|
2020-08-12 06:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&& {
|
|
|
|
|
.CodeMirror-lines {
|
2020-10-21 07:54:10 +00:00
|
|
|
padding: 10px;
|
2020-08-12 06:27:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
interface DynamicTextControlState {
|
|
|
|
|
showTemplateMenu: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class DynamicTextControl extends BaseControl<
|
|
|
|
|
DynamicTextFieldProps,
|
|
|
|
|
DynamicTextControlState
|
|
|
|
|
> {
|
|
|
|
|
constructor(props: DynamicTextFieldProps) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
|
showTemplateMenu: true,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getControlType(): ControlType {
|
|
|
|
|
return "QUERY_DYNAMIC_TEXT";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
const { responseType } = this.props;
|
|
|
|
|
const isNewQuery =
|
2020-08-19 09:21:32 +00:00
|
|
|
new URLSearchParams(window.location.search).get("showTemplate") ===
|
|
|
|
|
"true";
|
2020-08-12 06:27:35 +00:00
|
|
|
const showTemplate =
|
|
|
|
|
isNewQuery && this.state.showTemplateMenu && this.props.pluginId;
|
|
|
|
|
const mode =
|
|
|
|
|
responseType === "TABLE"
|
|
|
|
|
? EditorModes.SQL_WITH_BINDING
|
|
|
|
|
: EditorModes.JSON_WITH_BINDING;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Wrapper>
|
|
|
|
|
{showTemplate ? (
|
|
|
|
|
<TemplateMenu
|
2020-12-24 04:32:25 +00:00
|
|
|
createTemplate={(templateString) => {
|
2020-08-12 06:27:35 +00:00
|
|
|
this.setState(
|
|
|
|
|
{
|
|
|
|
|
showTemplateMenu: false,
|
|
|
|
|
},
|
|
|
|
|
() => this.props.createTemplate(templateString),
|
|
|
|
|
);
|
|
|
|
|
}}
|
|
|
|
|
pluginId={this.props.pluginId}
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<DynamicTextField
|
|
|
|
|
size={EditorSize.EXTENDED}
|
|
|
|
|
name={this.props.configProperty}
|
|
|
|
|
dataTreePath={`${this.props.actionName}.config.body`}
|
|
|
|
|
className="dynamic-text-field"
|
|
|
|
|
mode={mode}
|
2020-08-18 06:45:09 +00:00
|
|
|
tabBehaviour={TabBehaviour.INDENT}
|
2020-08-12 06:27:35 +00:00
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</Wrapper>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface DynamicTextFieldProps extends ControlProps {
|
|
|
|
|
actionName: string;
|
2020-11-02 09:31:00 +00:00
|
|
|
createTemplate: (template: any) => any;
|
2020-08-12 06:27:35 +00:00
|
|
|
pluginId: string;
|
|
|
|
|
responseType: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const valueSelector = formValueSelector(QUERY_EDITOR_FORM_NAME);
|
|
|
|
|
const mapStateToProps = (state: AppState) => {
|
|
|
|
|
const actionName = valueSelector(state, "name");
|
|
|
|
|
const pluginId = valueSelector(state, "datasource.pluginId");
|
|
|
|
|
const responseTypes = getPluginResponseTypes(state);
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
actionName,
|
|
|
|
|
pluginId,
|
|
|
|
|
responseType: responseTypes[pluginId],
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch: any) => ({
|
|
|
|
|
createTemplate: (template: any) => {
|
2020-08-19 09:21:32 +00:00
|
|
|
const params = getQueryParams();
|
|
|
|
|
if (params.showTemplate) {
|
|
|
|
|
params.showTemplate = "false";
|
|
|
|
|
}
|
|
|
|
|
history.replace({
|
|
|
|
|
...window.location,
|
|
|
|
|
search: convertObjectToQueryParams(params),
|
|
|
|
|
});
|
2020-08-12 06:27:35 +00:00
|
|
|
dispatch(change(QUERY_EDITOR_FORM_NAME, QUERY_BODY_FIELD, template));
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(DynamicTextControl);
|