mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
⚡ Minor improvements on loading parameters on demand
This commit is contained in:
parent
37f787d7b2
commit
53162ba462
|
@ -715,11 +715,12 @@ class App {
|
||||||
const allNodes = nodeTypes.getAll();
|
const allNodes = nodeTypes.getAll();
|
||||||
|
|
||||||
allNodes.forEach((nodeData) => {
|
allNodes.forEach((nodeData) => {
|
||||||
// Make a copy of the object. If we don't do this, then when
|
// Make a copy of the object. If we don't do this, then when
|
||||||
// The method below is called the properties are removed for good
|
// The method below is called the properties are removed for good
|
||||||
// This happens because nodes are returned as reference.
|
// This happens because nodes are returned as reference.
|
||||||
let nodeInfo: INodeTypeDescription = {...nodeData.description};
|
const nodeInfo: INodeTypeDescription = {...nodeData.description};
|
||||||
if (!['true', '1'].includes(req.query.includeProperties as string)) {
|
if (req.query.includeProperties !== 'true') {
|
||||||
|
// @ts-ignore
|
||||||
delete nodeInfo.properties;
|
delete nodeInfo.properties;
|
||||||
}
|
}
|
||||||
returnData.push(nodeInfo);
|
returnData.push(nodeInfo);
|
||||||
|
@ -731,10 +732,16 @@ class App {
|
||||||
|
|
||||||
// Returns node information baesd on namese
|
// Returns node information baesd on namese
|
||||||
this.app.post(`/${this.restEndpoint}/node-types`, ResponseHelper.send(async (req: express.Request, res: express.Response): Promise<INodeTypeDescription[]> => {
|
this.app.post(`/${this.restEndpoint}/node-types`, ResponseHelper.send(async (req: express.Request, res: express.Response): Promise<INodeTypeDescription[]> => {
|
||||||
const nodeNames = _.get(req, 'body.nodeNames', []);
|
const nodeNames = _.get(req, 'body.nodeNames', []) as string[];
|
||||||
const nodeTypes = NodeTypes();
|
const nodeTypes = NodeTypes();
|
||||||
const allNodes = nodeTypes.getAll();
|
|
||||||
return allNodes.filter(node => nodeNames.includes(node.description.name)).map(node => node.description);
|
return nodeNames.map(name => {
|
||||||
|
try {
|
||||||
|
return nodeTypes.getByName(name);
|
||||||
|
} catch (e) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}).filter(nodeData => !!nodeData).map(nodeData => nodeData!.description);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue