n8n/packages/nodes-base/nodes/ExecuteWorkflow/methods/resourceMapping.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-11-25 14:33:43 -08:00
import type {
2024-11-28 09:59:01 -08:00
FieldType,
2024-11-25 14:33:43 -08:00
ILoadOptionsFunctions,
ResourceMapperField,
ResourceMapperFields,
} from 'n8n-workflow';
2024-11-28 09:59:01 -08:00
import { getWorkflowInfo } from '../GenericFunctions';
2024-11-25 14:33:43 -08:00
export async function getWorkflowInputs(
this: ILoadOptionsFunctions,
): Promise<ResourceMapperFields> {
2024-11-28 09:59:01 -08:00
const source = this.getNodeParameter('source', 0) as string;
const executeWorkflowInfo = await getWorkflowInfo.call(this, source);
if (executeWorkflowInfo.code === undefined) {
// executeWorkflowInfo.code = await getWorkflowById.call(this, executeWorkflowInfo.id as string);
}
const workflowInputs = (
Array.isArray(
executeWorkflowInfo.code?.nodes.find(
(node) => node.type === 'n8n-nodes-base.executeWorkflowTrigger',
)?.parameters.workflowInputs,
)
? executeWorkflowInfo.code?.nodes.find(
(node) => node.type === 'n8n-nodes-base.executeWorkflowTrigger',
)?.parameters.workflowInputs
: []
) as Array<{ name: string; type: FieldType }>;
2024-11-25 14:33:43 -08:00
2024-11-28 09:59:01 -08:00
const fields: ResourceMapperField[] = workflowInputs.map((currentWorkflowInput) => ({
id: currentWorkflowInput.name,
displayName: currentWorkflowInput.name,
2024-11-25 14:33:43 -08:00
required: false,
defaultMatch: true,
2024-11-25 14:33:43 -08:00
display: true,
2024-11-28 09:59:01 -08:00
type: currentWorkflowInput.type || 'string',
2024-11-25 14:33:43 -08:00
canBeUsedToMatch: true,
}));
return { fields };
}