mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 17:14:05 -08:00
d8531a53b9
Github issue / Community forum post (link here to close automatically):
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
ILoadOptionsFunctions,
|
|
ResourceMapperField,
|
|
ResourceMapperFields,
|
|
} from 'n8n-workflow';
|
|
import { GoogleSheet } from '../helpers/GoogleSheet';
|
|
import { ROW_NUMBER, type ResourceLocator } from '../helpers/GoogleSheets.types';
|
|
import { getSpreadsheetId } from '../helpers/GoogleSheets.utils';
|
|
|
|
export async function getMappingColumns(
|
|
this: ILoadOptionsFunctions,
|
|
): Promise<ResourceMapperFields> {
|
|
const { mode, value } = this.getNodeParameter('documentId', 0) as IDataObject;
|
|
const spreadsheetId = getSpreadsheetId(mode as ResourceLocator, value as string);
|
|
|
|
const sheet = new GoogleSheet(spreadsheetId, this);
|
|
let sheetWithinDocument = this.getNodeParameter('sheetName', undefined, {
|
|
extractValue: true,
|
|
}) as string;
|
|
|
|
if (sheetWithinDocument === 'gid=0') {
|
|
sheetWithinDocument = '0';
|
|
}
|
|
|
|
const sheetName = await sheet.spreadsheetGetSheetNameById(sheetWithinDocument);
|
|
const sheetData = await sheet.getData(`${sheetName}!1:1`, 'FORMATTED_VALUE');
|
|
|
|
const columns = sheet.testFilter(sheetData || [], 0, 0).filter((col) => col !== '');
|
|
|
|
const fields: ResourceMapperField[] = columns.map((col) => ({
|
|
id: col,
|
|
displayName: col,
|
|
required: false,
|
|
defaultMatch: col === 'id',
|
|
display: true,
|
|
type: 'string',
|
|
canBeUsedToMatch: true,
|
|
}));
|
|
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
if (operation === 'update') {
|
|
fields.push({
|
|
id: ROW_NUMBER,
|
|
displayName: ROW_NUMBER,
|
|
required: false,
|
|
defaultMatch: false,
|
|
display: true,
|
|
type: 'string',
|
|
canBeUsedToMatch: true,
|
|
readOnly: true,
|
|
removed: true,
|
|
});
|
|
}
|
|
|
|
return { fields };
|
|
}
|