n8n-3867-progressively-apply-prettier-to-all (#3873)

* 🔨 formatting nodes with prettier
This commit is contained in:
Michael Kret
2022-08-17 18:50:24 +03:00
committed by GitHub
parent f2d326c7f0
commit 91d7e16c81
1072 changed files with 42357 additions and 59109 deletions

View File

@@ -1,9 +1,6 @@
import * as formidable from 'formidable';
import {
IHookFunctions,
IWebhookFunctions,
} from 'n8n-core';
import { IHookFunctions, IWebhookFunctions } from 'n8n-core';
import {
IDataObject,
@@ -14,10 +11,7 @@ import {
IWebhookResponseData,
} from 'n8n-workflow';
import {
jotformApiRequest,
} from './GenericFunctions';
import { jotformApiRequest } from './GenericFunctions';
interface IQuestionData {
name: string;
@@ -62,7 +56,8 @@ export class JotFormTrigger implements INodeType {
loadOptionsMethod: 'getForms',
},
default: '',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
},
{
displayName: 'Resolve Data',
@@ -70,7 +65,8 @@ export class JotFormTrigger implements INodeType {
type: 'boolean',
default: true,
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
description: 'By default does the webhook-data use internal keys instead of the names. If this option gets activated, it will resolve the keys automatically to the actual names.',
description:
'By default does the webhook-data use internal keys instead of the names. If this option gets activated, it will resolve the keys automatically to the actual names.',
},
{
displayName: 'Only Answers',
@@ -80,7 +76,6 @@ export class JotFormTrigger implements INodeType {
description: 'Whether to return only the answers of the form and not any of the other data',
},
],
};
methods = {
@@ -91,7 +86,7 @@ export class JotFormTrigger implements INodeType {
const returnData: INodePropertyOptions[] = [];
const qs: IDataObject = {
limit: 1000,
};
};
const forms = await jotformApiRequest.call(this, 'GET', '/user/forms', {}, qs);
for (const form of forms.content) {
const formName = form.title;
@@ -149,7 +144,7 @@ export class JotFormTrigger implements INodeType {
const endpoint = `/form/${formId}/webhooks/${webhookData.webhookId}`;
try {
responseData = await jotformApiRequest.call(this, 'DELETE', endpoint);
} catch(error) {
} catch (error) {
return false;
}
if (responseData.message !== 'success') {
@@ -171,9 +166,7 @@ export class JotFormTrigger implements INodeType {
const form = new formidable.IncomingForm({});
return new Promise((resolve, reject) => {
form.parse(req, async (err, data, files) => {
const rawRequest = JSON.parse(data.rawRequest as string);
data.rawRequest = rawRequest;
@@ -186,9 +179,7 @@ export class JotFormTrigger implements INodeType {
}
resolve({
workflowData: [
this.helpers.returnJsonArray(returnData),
],
workflowData: [this.helpers.returnJsonArray(returnData)],
});
}
@@ -227,12 +218,9 @@ export class JotFormTrigger implements INodeType {
}
resolve({
workflowData: [
this.helpers.returnJsonArray(returnData),
],
workflowData: [this.helpers.returnJsonArray(returnData)],
});
});
});
}
}