Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

105 lines
2.8 KiB
TypeScript

import type { IDataObject, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
import { NodeOperationError } from 'n8n-workflow';
import { apiRequest } from '../transport';
export async function getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const base = this.getNodeParameter('base', undefined, {
extractValue: true,
}) as string;
const tableId = encodeURI(
this.getNodeParameter('table', undefined, {
extractValue: true,
}) as string,
);
const response = await apiRequest.call(this, 'GET', `meta/bases/${base}/tables`);
const tableData = ((response.tables as IDataObject[]) || []).find((table: IDataObject) => {
return table.id === tableId;
});
if (!tableData) {
throw new NodeOperationError(this.getNode(), 'Table information could not be found!', {
level: 'warning',
});
}
const result: INodePropertyOptions[] = [];
for (const field of tableData.fields as IDataObject[]) {
result.push({
name: field.name as string,
value: field.name as string,
description: `Type: ${field.type}`,
});
}
return result;
}
export async function getColumnsWithRecordId(
this: ILoadOptionsFunctions,
): Promise<INodePropertyOptions[]> {
const returnData = await getColumns.call(this);
return [
{
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased-id, n8n-nodes-base/node-param-display-name-miscased
name: 'id',
value: 'id' as string,
description: 'Type: primaryFieldId',
},
...returnData,
];
}
export async function getColumnsWithoutColumnToMatchOn(
this: ILoadOptionsFunctions,
): Promise<INodePropertyOptions[]> {
const columnToMatchOn = this.getNodeParameter('columnToMatchOn') as string;
const returnData = await getColumns.call(this);
return returnData.filter((column) => column.value !== columnToMatchOn);
}
export async function getAttachmentColumns(
this: ILoadOptionsFunctions,
): Promise<INodePropertyOptions[]> {
const base = this.getNodeParameter('base', undefined, {
extractValue: true,
}) as string;
const tableId = encodeURI(
this.getNodeParameter('table', undefined, {
extractValue: true,
}) as string,
);
const response = await apiRequest.call(this, 'GET', `meta/bases/${base}/tables`);
const tableData = ((response.tables as IDataObject[]) || []).find((table: IDataObject) => {
return table.id === tableId;
});
if (!tableData) {
throw new NodeOperationError(this.getNode(), 'Table information could not be found!', {
level: 'warning',
});
}
const result: INodePropertyOptions[] = [];
for (const field of tableData.fields as IDataObject[]) {
if (!(field.type as string)?.toLowerCase()?.includes('attachment')) {
continue;
}
result.push({
name: field.name as string,
value: field.name as string,
description: `Type: ${field.type}`,
});
}
return result;
}