mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import type { IDataObject, ILoadOptionsFunctions, ResourceMapperFields } from 'n8n-workflow';
|
|
import { GoogleSheet } from '../helpers/GoogleSheet';
|
|
import 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 columnData: ResourceMapperFields = {
|
|
fields: columns.map((col) => ({
|
|
id: col,
|
|
displayName: col,
|
|
required: false,
|
|
defaultMatch: col === 'id',
|
|
display: true,
|
|
type: 'string',
|
|
canBeUsedToMatch: true,
|
|
})),
|
|
};
|
|
|
|
return columnData;
|
|
}
|