mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
105 lines
2.5 KiB
TypeScript
105 lines
2.5 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
|
import type {
|
|
IExecuteFunctions,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
INodeExecutionData,
|
|
} from 'n8n-workflow';
|
|
import { NodeConnectionTypes } from 'n8n-workflow';
|
|
|
|
import {
|
|
setCheckIfEvaluatingProperties,
|
|
setMetricsProperties,
|
|
setOutputProperties,
|
|
} from './Description.node';
|
|
import { authentication } from '../../Google/Sheet/v2/actions/versionDescription';
|
|
import { listSearch, loadOptions } from '../methods';
|
|
import { checkIfEvaluating, setMetrics, setOutputs, setOutput } from '../utils/evaluationUtils';
|
|
|
|
export class Evaluation implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Evaluation',
|
|
icon: 'fa:check-double',
|
|
name: 'evaluation',
|
|
group: ['transform'],
|
|
version: 4.6,
|
|
description: 'Runs an evaluation',
|
|
eventTriggerDescription: '',
|
|
subtitle: '={{$parameter["operation"]}}',
|
|
defaults: {
|
|
name: 'Evaluation',
|
|
color: '#c3c9d5',
|
|
},
|
|
inputs: [NodeConnectionTypes.Main],
|
|
outputs: `={{(${setOutputs})($parameter)}}`,
|
|
codex: {
|
|
alias: ['Test', 'Metrics', 'Evals', 'Set Output', 'Set Metrics'],
|
|
},
|
|
credentials: [
|
|
{
|
|
name: 'googleApi',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['serviceAccount'],
|
|
operation: ['setOutputs'],
|
|
},
|
|
},
|
|
testedBy: 'googleApiCredentialTest',
|
|
},
|
|
{
|
|
name: 'googleSheetsOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
authentication: ['oAuth2'],
|
|
operation: ['setOutputs'],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Set Outputs',
|
|
value: 'setOutputs',
|
|
},
|
|
{
|
|
name: 'Set Metrics',
|
|
value: 'setMetrics',
|
|
},
|
|
{
|
|
name: 'Check If Evaluating',
|
|
value: 'checkIfEvaluating',
|
|
},
|
|
],
|
|
default: 'setOutputs',
|
|
},
|
|
authentication,
|
|
...setOutputProperties,
|
|
...setMetricsProperties,
|
|
...setCheckIfEvaluatingProperties,
|
|
],
|
|
};
|
|
|
|
methods = { loadOptions, listSearch };
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
if (operation === 'setOutputs') {
|
|
return await setOutput.call(this);
|
|
} else if (operation === 'setMetrics') {
|
|
return await setMetrics.call(this);
|
|
} else {
|
|
// operation === 'checkIfEvaluating'
|
|
return await checkIfEvaluating.call(this);
|
|
}
|
|
}
|
|
}
|