Added Expand window button and code editor in subflow

This commit is contained in:
monilprajapati
2024-07-06 13:42:39 +05:30
parent 0e16815872
commit cd52d12f60
3 changed files with 205 additions and 111 deletions
+7 -1
View File
@@ -3162,7 +3162,13 @@ const ParsedAction = (props) => {
if (parsedvalue === undefined || parsedvalue === null) {
parsedvalue = ""
}
console.log("Data sending to codeeditor(Action): ", {
"name": data.name,
"value": parsedvalue,
"field_number": count,
"actionlist": actionlist,
"field_id": clickedFieldId,
} )
setEditorData({
"name": data.name,
"value": parsedvalue,
@@ -1767,6 +1767,7 @@ const CodeEditor = (props) => {
// This is to make it so we don't need to handle these fixes on the
// backend by itself
var fixedcodedata = localcodedata
console.log("Fixedcodedata: ", fixedcodedata)
const valid = validateJson(localcodedata, true)
if (valid.valid) {
fixedcodedata = JSON.stringify(valid.result, null, 2)
@@ -1779,6 +1780,11 @@ const CodeEditor = (props) => {
setcodedata(fixedcodedata);
setExpansionModalOpen(false)
} else if (changeActionParameterCodeMirror !== undefined) {
console.log("Entering in Submit onCLick")
console.log("Data passing to chnageActionParameterCodeMirror: ", fixedcodedata)
console.log("Fieldcount: ", fieldCount)
console.log("Actionlist: ", actionlist)
console.log("Event: ", event)
//changeActionParameterCodeMirror(event, fieldCount, fixedcodedata)
changeActionParameterCodeMirror(event, fieldCount, fixedcodedata, actionlist)
setExpansionModalOpen(false)