feat(Airtable Node): Overhaul (#6200)

This commit is contained in:
Michael Kret
2023-07-17 19:42:30 +03:00
committed by GitHub
parent fc8ed55c0d
commit b69d20c12e
42 changed files with 3989 additions and 871 deletions

View File

@@ -0,0 +1,83 @@
import type { IDataObject, NodeApiError } from 'n8n-workflow';
import type { UpdateRecord } from './interfaces';
export function removeIgnored(data: IDataObject, ignore: string | string[]) {
if (ignore) {
let ignoreFields: string[] = [];
if (typeof ignore === 'string') {
ignoreFields = ignore.split(',').map((field) => field.trim());
} else {
ignoreFields = ignore;
}
const newData: IDataObject = {};
for (const field of Object.keys(data)) {
if (!ignoreFields.includes(field)) {
newData[field] = data[field];
}
}
return newData;
} else {
return data;
}
}
export function findMatches(
data: UpdateRecord[],
keys: string[],
fields: IDataObject,
updateAll?: boolean,
) {
if (updateAll) {
const matches = data.filter((record) => {
for (const key of keys) {
if (record.fields[key] !== fields[key]) {
return false;
}
}
return true;
});
if (!matches?.length) {
throw new Error('No records match provided keys');
}
return matches;
} else {
const match = data.find((record) => {
for (const key of keys) {
if (record.fields[key] !== fields[key]) {
return false;
}
}
return true;
});
if (!match) {
throw new Error('Record matching provided keys was not found');
}
return [match];
}
}
export function processAirtableError(error: NodeApiError, id?: string) {
if (error.description === 'NOT_FOUND' && id) {
error.description = `${id} is not a valid Record ID`;
}
if (error.description?.includes('You must provide an array of up to 10 record objects') && id) {
error.description = `${id} is not a valid Record ID`;
}
return error;
}
export const flattenOutput = (record: IDataObject) => {
const { fields, ...rest } = record;
return {
...rest,
...(fields as IDataObject),
};
};