-
Notifications
You must be signed in to change notification settings - Fork 19.6k
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
feat(core): Add special @tool
displayOption
#14318
base: master
Are you sure you want to change the base?
Conversation
@tool
show displayOption@tool
displayOption
parentType?: string, | ||
parameterDependencies?: IParameterDependencies, | ||
nodeTypeDescription: INodeTypeDescription | null, | ||
options?: GetNodeParametersOptions, |
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.
On second thought this might be considered a breaking change? At least for consumers of our code base. Do we care?
@@ -338,8 +338,7 @@ export function getGenericHints({ | |||
true, | |||
false, | |||
node, | |||
undefined, |
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.
This seemed to set onlySimpleTypes
to undefined
rather than the default false
. Old signature:
node: Pick<INode, 'typeVersion'> | null,
onlySimpleTypes = false,
dataIsResolved = false,
nodeValuesRoot?: INodeParameters,
parentType?: string,
parameterDependencies?: IParameterDependencies,
): INodeParameters | null {
Only usage in the body is if (onlySimpleTypes) {
so this should be safe to drop.
babf6f7
to
e7f7967
Compare
@@ -4513,4 +4531,413 @@ describe('NodeHelpers', () => { | |||
}); | |||
} | |||
}); | |||
describe('displayParameter', () => { |
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.
I only saw the NodeHelpers.conditions.test.ts
file after this, which does also test this function indirectly. There's some overlap especially for show, but besides @tool
tests these do cover other edge cases like using nodeValuesRoot
as well, would like to keep them.
Codecov ReportAttention: Patch coverage is 📢 Thoughts on this report? Let us know! |
Summary
Add a new
@tool
option todisplayOptions: { show: { '@tool': [true] } }
which shows the property based on whether the node is being used as a tool.Had to expose the nodeDescription to workflow/NodeHelpers for this, unfortunately not all calls provide the parameters via the nodeType, so I couldn't replace that argument with the description and had to add a new one instead.
Took the chance to refactor all the optional parameters on
getNodeParameters
into an options bag.Test property:
Remember to add
usableAsTool
to the node you add this in if it doesn't already have it.Related Linear tickets, Github issues, and Community forum posts
https://linear.app/n8n/issue/ADO-3389/add-tool-displayoption
Review / Merge checklist
release/backport
(if the PR is an urgent fix that needs to be backported)