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

feat(core): Add special @tool displayOption #14318

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Conversation

CharlieKolb
Copy link
Contributor

@CharlieKolb CharlieKolb commented Apr 1, 2025

Summary

Add a new @tool option to displayOptions: { 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:

{
		displayName: 'Alive',
		type: 'notice',
		name: 'alive',
		default: 'hello',
		displayOptions: {
			show: {
				'@tool': [true],
			},
		},
	},

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

  • PR title and summary are descriptive. (conventions)
  • Docs updated or follow-up ticket created.
  • Tests included.
  • PR Labeled with release/backport (if the PR is an urgent fix that needs to be backported)

@CharlieKolb CharlieKolb changed the title feat(core): Add @tool show displayOption feat(core): Add special @tool displayOption Apr 1, 2025
parentType?: string,
parameterDependencies?: IParameterDependencies,
nodeTypeDescription: INodeTypeDescription | null,
options?: GetNodeParametersOptions,
Copy link
Contributor Author

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?

@n8n-assistant n8n-assistant bot added core Enhancement outside /nodes-base and /editor-ui n8n team Authored by the n8n team node/improvement New feature or request labels Apr 1, 2025
@@ -338,8 +338,7 @@ export function getGenericHints({
true,
false,
node,
undefined,
Copy link
Contributor Author

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.

@CharlieKolb CharlieKolb force-pushed the nodeDescription_in_NodeHelpers branch from babf6f7 to e7f7967 Compare April 1, 2025 12:43
@@ -4513,4 +4531,413 @@ describe('NodeHelpers', () => {
});
}
});
describe('displayParameter', () => {
Copy link
Contributor Author

@CharlieKolb CharlieKolb Apr 1, 2025

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.

@CharlieKolb CharlieKolb marked this pull request as ready for review April 1, 2025 13:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core Enhancement outside /nodes-base and /editor-ui n8n team Authored by the n8n team node/improvement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant