mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
149 lines
3.6 KiB
TypeScript
149 lines
3.6 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeProperties,
|
|
IExecuteFunctions,
|
|
} from 'n8n-workflow';
|
|
|
|
import { updateDisplayOptions, wrapData } from '../../../../../utils/utilities';
|
|
import { webflowApiRequest } from '../../../GenericFunctions';
|
|
|
|
const properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Site Name or ID',
|
|
name: 'siteId',
|
|
type: 'options',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getSites',
|
|
},
|
|
default: '',
|
|
description:
|
|
'ID of the site containing the collection whose items to add to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Collection Name or ID',
|
|
name: 'collectionId',
|
|
type: 'options',
|
|
required: true,
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCollections',
|
|
loadOptionsDependsOn: ['siteId'],
|
|
},
|
|
default: '',
|
|
description:
|
|
'ID of the collection to add an item to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Item ID',
|
|
name: 'itemId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
description: 'ID of the item to update',
|
|
},
|
|
{
|
|
displayName: 'Live',
|
|
name: 'live',
|
|
type: 'boolean',
|
|
required: true,
|
|
default: false,
|
|
description: 'Whether the item should be published on the live site',
|
|
},
|
|
{
|
|
displayName: 'Fields',
|
|
name: 'fieldsUi',
|
|
placeholder: 'Add Field',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Field',
|
|
name: 'fieldValues',
|
|
values: [
|
|
{
|
|
displayName: 'Field Name or ID',
|
|
name: 'fieldId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getFields',
|
|
loadOptionsDependsOn: ['collectionId'],
|
|
},
|
|
default: '',
|
|
description:
|
|
'Field to set for the item to create. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'fieldValue',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value to set for the item to create',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['item'],
|
|
operation: ['update'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(
|
|
this: IExecuteFunctions,
|
|
items: INodeExecutionData[],
|
|
): Promise<INodeExecutionData[]> {
|
|
const returnData: INodeExecutionData[] = [];
|
|
let responseData;
|
|
for (let i = 0; i < items.length; i++) {
|
|
try {
|
|
const collectionId = this.getNodeParameter('collectionId', i) as string;
|
|
const itemId = this.getNodeParameter('itemId', i) as string;
|
|
|
|
const uiFields = this.getNodeParameter('fieldsUi.fieldValues', i, []) as IDataObject[];
|
|
|
|
const live = this.getNodeParameter('live', i) as boolean;
|
|
|
|
const fieldData = {} as IDataObject;
|
|
|
|
uiFields.forEach((data) => (fieldData[data.fieldId as string] = data.fieldValue));
|
|
|
|
const body: IDataObject = {
|
|
fieldData,
|
|
};
|
|
|
|
responseData = await webflowApiRequest.call(
|
|
this,
|
|
'PATCH',
|
|
`/collections/${collectionId}/items/${itemId}`,
|
|
body,
|
|
{ live },
|
|
);
|
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
wrapData(responseData.body as IDataObject[]),
|
|
{ itemData: { item: i } },
|
|
);
|
|
|
|
returnData.push(...executionData);
|
|
} catch (error) {
|
|
if (this.continueOnFail()) {
|
|
returnData.push({ json: { message: error.message, error } });
|
|
continue;
|
|
}
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
return returnData;
|
|
}
|