mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
122 lines
2.8 KiB
TypeScript
122 lines
2.8 KiB
TypeScript
import { NodeConnectionType } from 'n8n-workflow';
|
|
import type {
|
|
INodeTypeBaseDescription,
|
|
IExecuteFunctions,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import { removeDuplicateInputItems } from '../utils';
|
|
|
|
const versionDescription: INodeTypeDescription = {
|
|
displayName: 'Remove Duplicates',
|
|
name: 'removeDuplicates',
|
|
icon: 'file:removeDuplicates.svg',
|
|
group: ['transform'],
|
|
subtitle: '',
|
|
version: [1, 1.1],
|
|
description: 'Delete items with matching field values',
|
|
defaults: {
|
|
name: 'Remove Duplicates',
|
|
},
|
|
inputs: [NodeConnectionType.Main],
|
|
outputs: [NodeConnectionType.Main],
|
|
properties: [
|
|
{
|
|
displayName: 'Compare',
|
|
name: 'compare',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'All Fields',
|
|
value: 'allFields',
|
|
},
|
|
{
|
|
name: 'All Fields Except',
|
|
value: 'allFieldsExcept',
|
|
},
|
|
{
|
|
name: 'Selected Fields',
|
|
value: 'selectedFields',
|
|
},
|
|
],
|
|
default: 'allFields',
|
|
description: 'The fields of the input items to compare to see if they are the same',
|
|
},
|
|
{
|
|
displayName: 'Fields To Exclude',
|
|
name: 'fieldsToExclude',
|
|
type: 'string',
|
|
placeholder: 'e.g. email, name',
|
|
requiresDataPath: 'multiple',
|
|
description: 'Fields in the input to exclude from the comparison',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
compare: ['allFieldsExcept'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Fields To Compare',
|
|
name: 'fieldsToCompare',
|
|
type: 'string',
|
|
placeholder: 'e.g. email, name',
|
|
requiresDataPath: 'multiple',
|
|
description: 'Fields in the input to add to the comparison',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
compare: ['selectedFields'],
|
|
},
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
compare: ['allFieldsExcept', 'selectedFields'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Disable Dot Notation',
|
|
name: 'disableDotNotation',
|
|
type: 'boolean',
|
|
default: false,
|
|
description:
|
|
'Whether to disallow referencing child fields using `parent.child` in the field name',
|
|
},
|
|
{
|
|
displayName: 'Remove Other Fields',
|
|
name: 'removeOtherFields',
|
|
type: 'boolean',
|
|
default: false,
|
|
description:
|
|
'Whether to remove any fields that are not being compared. If disabled, will keep the values from the first of the duplicates.',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
export class RemoveDuplicatesV1 implements INodeType {
|
|
description: INodeTypeDescription;
|
|
|
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
|
this.description = {
|
|
...baseDescription,
|
|
...versionDescription,
|
|
};
|
|
}
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
return removeDuplicateInputItems(this, items);
|
|
}
|
|
}
|