Keep meta context variables when importing #1187
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Meta context variables denote those which have special meaning outside the context of the Jinjava template. In HubL, this includes variables like
content
.If these are manually overridden, such as inside a set tag or a for tag, then the lose their special functionality. This is mirrored by the set of
metaContextVariables
which can have keys removed inside of a set tag or for tag.If a meta context variable is removed and then an import tag is run, the meta context variable will re-appear due to the
prepareContext
method getting run again, which is used to re-add meta context variables.This PR adds a new method
getComputedMetaContextVariables()
and deprecates the oldgetMetaContextVariables()
method. This allows overrides to be added and removed without affecting the coremetaContextVariables
. So runningprepareContext
again does not cause issues as the core set ofmetaContextVariables
won't have had any elements removed since any previousprepareContext
runs.