Skip to content
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

Fixed an issue where the 'root' may be the component that does not have a getComponent method. #5673

Merged
merged 2 commits into from
Sep 10, 2024

Conversation

travist
Copy link
Member

@travist travist commented Jul 3, 2024

https://formio.atlassian.net/browse/FIO-8802

Description

The tests in formio CSVExporter are failing because it creates the components with Component.create(). The issue is that this will crash if the component has a simple conditional since the component does not have a method getComponent.

Checklist:

  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation (if applicable)
  • My changes generate no new warnings
  • My changes include tests that prove my fix is effective (or that my feature works as intended)
  • New and existing unit/integration tests pass locally with my changes
  • Any dependent changes have corresponding PRs that are listed above

Comment on lines 27 to 31
let conditionTriggerComponent = null;

if (instance && instance.root) {
if (instance?.root?.getComponent) {
conditionTriggerComponent = instance.root.getComponent(conditionComponentPath);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use optional chaining on functions as well.

let conditionTriggerComponent = instance?.root?.getComponent?.(conditionalComponentPath)

Copy link
Contributor

@johnformio johnformio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved, but made an optional suggestion.

@johnformio johnformio merged commit 1697376 into master Sep 10, 2024
5 checks passed
lane-formio pushed a commit that referenced this pull request Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants