1
0
Fork 0
mirror of synced 2024-06-14 08:24:48 +12:00

Allow template to be used when changed body blank

This commit is contained in:
Mel O'Hagan 2022-10-12 16:20:11 +01:00
parent 8fd592d6d0
commit 910991eb8c
2 changed files with 17 additions and 9 deletions

View file

@ -44,9 +44,12 @@
}
function setEditorTemplate(fromKey, toKey, index) {
const currentValue = query.fields.steps[index].value.value
if (
!currentValue ||
currentValue.toString().replace("\\s", "").length < 3 ||
schema.steps.filter(step => step.key === fromKey)[0]?.template ===
query.fields.steps[index].value.value
currentValue
) {
query.fields.steps[index].value.value = schema.steps.filter(
step => step.key === toKey

View file

@ -138,11 +138,16 @@ const SCHEMA: Integration = {
{
key: "$geoNear",
template: `{
"near": { "type": "Point", "coordinates": [ -73.98142 , 40.71782 ] },
"near": {
"type": "Point",
"coordinates": [
-73.98142, 40.71782
]
},
"key": "location",
"distanceField": "dist.calculated",
"query": { "category": "Parks" }
}`
}`,
},
{
key: "$graphLookup",
@ -155,7 +160,7 @@ const SCHEMA: Integration = {
"maxDepth": 1,
"depthField": "",
"restrictSearchWithMatch": {}
}`
}`,
},
{
key: "$group",
@ -186,7 +191,7 @@ const SCHEMA: Integration = {
"localField": "",
"foreignField": "",
"as": ""
}`
}`,
},
{
key: "$match",
@ -199,14 +204,14 @@ const SCHEMA: Integration = {
"on": "_id",
"whenMatched": "replace",
"whenNotMatched": "insert"
}`
}`,
},
{
key: "$out",
template: `{
"db": "",
"coll": ""
}`
}`,
},
{
key: "$planCacheStats",
@ -261,7 +266,7 @@ const SCHEMA: Integration = {
template: `{
"coll": "",
"pipeline": []
}`
}`,
},
{
key: "$unset",
@ -273,7 +278,7 @@ const SCHEMA: Integration = {
"path": "",
"includeArrayIndex": "",
"preserveNullAndEmptyArrays": true
}`
}`,
},
],
},