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

Fix node autocomplete suggetions on custom nodes #11653

Merged
merged 4 commits into from
Apr 30, 2021

Conversation

zeusongit
Copy link
Contributor

@zeusongit zeusongit commented Apr 28, 2021

Purpose

The node-autocomplete feature was unable to identify the input type for custom nodes, thereby displaying default suggestions for all custom node inputs. That was fixed by casting node model to appropriate custom node class and extracting the type info of the input port to be used by the node-autocomplete search.

cusac2

Declarations

Check these if you believe they are true

  • The codebase is in a better state after this PR
  • Is documented according to the standards
  • The level of testing this PR includes is appropriate
  • User facing strings, if any, are extracted into *.resx files
  • All tests pass using the self-service CI.
  • Snapshot of UI changes, if any.

Reviewers

@DynamoDS/dynamo

@@ -430,6 +430,16 @@ internal string GetInputPortType()
return type;
}

var cusNode = Owner as CustomNodes.Function;
if (cusNode != null)
Copy link
Contributor

Choose a reason for hiding this comment

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

I think @mjkkirschner suggested to use a is check on @reddyashish 's PR, you may want to give it a try to simplify the code as well here

@zeusongit zeusongit requested a review from QilongTang April 29, 2021 18:36
@QilongTang
Copy link
Contributor

QilongTang commented Apr 30, 2021

@zeusongit Would you take a look as to what is failing on self serve? I dont think this would affect existing unit tests but let's confirm that. Otherwise, looks good to me

@zeusongit zeusongit merged commit e736f30 into DynamoDS:master Apr 30, 2021
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.

3 participants