refactor: Format nodes-base package (A-F) (#3800)

* 🔨 prettier formated nodes - A

* 🔨 prettier formated nodes - B

*  prettier formated nodes - C

*  prettier formated nodes - D

*  prettier formated nodes - E-F

* 🎨 Adjust nodes-base formatting command (#3805)

* Format additional files in nodes A-F (#3811)

*  fixes

* 🎨 Add Mindee to ignored dirs

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
Michael Kret
2022-08-01 23:47:55 +03:00
committed by GitHub
parent 2c17e6f3ca
commit 0ecbb4a19d
411 changed files with 12906 additions and 20148 deletions

View File

@@ -1,11 +1,6 @@
import {
OptionsWithUri,
} from 'request';
import { OptionsWithUri } from 'request';
import {
IExecuteFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { NodeApiError } from 'n8n-workflow';
export async function apiTemplateIoApiRequest(
@@ -38,7 +33,11 @@ export async function apiTemplateIoApiRequest(
}
try {
const response = await this.helpers.requestWithAuthentication.call(this, 'apiTemplateIoApi',options);
const response = await this.helpers.requestWithAuthentication.call(
this,
'apiTemplateIoApi',
options,
);
if (response.status === 'error') {
throw new NodeApiError(this.getNode(), response.message);
}
@@ -48,21 +47,21 @@ export async function apiTemplateIoApiRequest(
}
}
export async function loadResource(
this: ILoadOptionsFunctions,
resource: 'image' | 'pdf',
) {
export async function loadResource(this: ILoadOptionsFunctions, resource: 'image' | 'pdf') {
const target = resource === 'image' ? ['JPEG', 'PNG'] : ['PDF'];
const templates = await apiTemplateIoApiRequest.call(this, 'GET', '/list-templates');
const filtered = templates.filter(({ format }: { format: 'PDF' | 'JPEG' | 'PNG' }) => target.includes(format));
const filtered = templates.filter(({ format }: { format: 'PDF' | 'JPEG' | 'PNG' }) =>
target.includes(format),
);
return filtered.map(({ format, name, id }: { format: string, name: string, id: string }) => ({
return filtered.map(({ format, name, id }: { format: string; name: string; id: string }) => ({
name: `${name} (${format})`,
value: id,
}));
}
export function validateJSON(json: string | object | undefined): any { // tslint:disable-line:no-any
// tslint:disable-next-line:no-any
export function validateJSON(json: string | object | undefined): any {
let result;
if (typeof json === 'object') {
return json;
@@ -75,7 +74,6 @@ export function validateJSON(json: string | object | undefined): any { // tslint
return result;
}
export function downloadImage(this: IExecuteFunctions, url: string) {
return this.helpers.request({
uri: url,