mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
|
import { INodeType, INodeTypeData, INodeTypes, NodeHelpers } from 'n8n-workflow';
|
||
|
|
||
|
class NodeTypesClass implements INodeTypes {
|
||
|
nodeTypes: INodeTypeData = {
|
||
|
'test.set': {
|
||
|
sourcePath: '',
|
||
|
type: {
|
||
|
description: {
|
||
|
displayName: 'Set',
|
||
|
name: 'set',
|
||
|
group: ['input'],
|
||
|
version: 1,
|
||
|
description: 'Sets a value',
|
||
|
defaults: {
|
||
|
name: 'Set',
|
||
|
color: '#0000FF',
|
||
|
},
|
||
|
inputs: ['main'],
|
||
|
outputs: ['main'],
|
||
|
properties: [
|
||
|
{
|
||
|
displayName: 'Value1',
|
||
|
name: 'value1',
|
||
|
type: 'string',
|
||
|
default: 'default-value1',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Value2',
|
||
|
name: 'value2',
|
||
|
type: 'string',
|
||
|
default: 'default-value2',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
async init(nodeTypes: INodeTypeData): Promise<void> {}
|
||
|
|
||
|
getAll(): INodeType[] {
|
||
|
console.log('1234');
|
||
|
return Object.values(this.nodeTypes).map((data) => NodeHelpers.getVersionedNodeType(data.type));
|
||
|
}
|
||
|
|
||
|
getByName(nodeType: string): INodeType {
|
||
|
return this.getByNameAndVersion(nodeType);
|
||
|
}
|
||
|
|
||
|
getByNameAndVersion(nodeType: string, version?: number): INodeType {
|
||
|
return NodeHelpers.getVersionedNodeType(this.nodeTypes[nodeType].type, version);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let nodeTypesInstance: NodeTypesClass | undefined;
|
||
|
|
||
|
export function NodeTypes(): NodeTypesClass {
|
||
|
if (nodeTypesInstance === undefined) {
|
||
|
nodeTypesInstance = new NodeTypesClass();
|
||
|
}
|
||
|
|
||
|
return nodeTypesInstance;
|
||
|
}
|