fix(variables): Improve getNodeUsedVars
implementation details (#21987)
This commit is contained in:
@@ -975,6 +975,7 @@ export const getNodeUsedVars = (node: Node): ValueSelector[] => {
|
||||
res = (data as IfElseNodeType).conditions?.map((c) => {
|
||||
return c.variable_selector || []
|
||||
}) || []
|
||||
res.push(...((data as IfElseNodeType).cases || []).flatMap(c => (c.conditions || [])).map(c => c.variable_selector || []))
|
||||
break
|
||||
}
|
||||
case BlockEnum.Code: {
|
||||
@@ -994,6 +995,9 @@ export const getNodeUsedVars = (node: Node): ValueSelector[] => {
|
||||
res = [payload.query_variable_selector]
|
||||
const varInInstructions = matchNotSystemVars([payload.instruction || ''])
|
||||
res.push(...varInInstructions)
|
||||
|
||||
const classes = payload.classes.map(c => c.name)
|
||||
res.push(...matchNotSystemVars(classes))
|
||||
break
|
||||
}
|
||||
case BlockEnum.HttpRequest: {
|
||||
|
Reference in New Issue
Block a user