-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixing child components being displayed when they should be removed when clearOnHide is set #120
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,6 @@ import { | |
isJSONConditional | ||
} from 'utils/conditions'; | ||
|
||
const skipOnServer = (context: ConditionsContext): boolean => { | ||
const { component, config } = context; | ||
const clearOnHide = component.hasOwnProperty('clearOnHide') ? component.clearOnHide : true; | ||
if (config?.server && !clearOnHide) { | ||
// No need to run conditionals on server unless clearOnHide is set. | ||
return true; | ||
} | ||
return false; | ||
}; | ||
Comment on lines
-15
to
-23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no longer used |
||
|
||
const hasCustomConditions = (context: ConditionsContext): boolean => { | ||
const { component } = context; | ||
|
@@ -102,17 +93,14 @@ export const conditionalProcess = (context: ConditionsContext, isHidden: Conditi | |
scope.conditionals.push(conditionalComp); | ||
} | ||
|
||
if (skipOnServer(context)) { | ||
return false; | ||
} | ||
|
||
conditionalComp.conditionallyHidden = conditionalComp.conditionallyHidden || isHidden(context); | ||
if (conditionalComp.conditionallyHidden) { | ||
const info = componentInfo(component); | ||
if (info.hasColumns || info.hasComps || info.hasRows) { | ||
// If this is a container component, we need to add all the child components as conditionally hidden as well. | ||
Utils.eachComponentData([component], row, (comp: Component, data: any, compRow: any, compPath: string) => { | ||
if (comp !== component) { | ||
// the path set here is not the absolute path, but the path relative to the parent component | ||
scope.conditionals?.push({ path: getComponentPath(comp, compPath), conditionallyHidden: true }); | ||
Comment on lines
+103
to
104
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this sets a partial path to the parent |
||
} | ||
set(comp, 'hidden', true); | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the path set in the conditionals is partial, relaxing the check from exact match to component path contains the conditional path