🎨 fix format

This commit is contained in:
Ben Hesseldieck 2020-07-09 17:16:45 +02:00
parent 9f39156994
commit 3bf34cffa9
4 changed files with 15 additions and 60 deletions

View file

@ -1,8 +1,4 @@
import { import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class QuestDB implements ICredentialType { export class QuestDB implements ICredentialType {
name = 'questdb'; name = 'questdb';
@ -59,7 +55,7 @@ export class QuestDB implements ICredentialType {
{ {
name: 'verify-full (not implemented)', name: 'verify-full (not implemented)',
value: 'verify-full', value: 'verify-full',
} },
], ],
default: 'disable', default: 'disable',
}, },

View file

@ -10,10 +10,7 @@ import pg = require('pg-promise/typescript/pg-subset');
* @param {string[]} properties The properties it should include * @param {string[]} properties The properties it should include
* @returns * @returns
*/ */
function getItemCopy( function getItemCopy(items: INodeExecutionData[], properties: string[]): IDataObject[] {
items: INodeExecutionData[],
properties: string[],
): IDataObject[] {
// Prepare the data to insert and copy it to be returned // Prepare the data to insert and copy it to be returned
let newItem: IDataObject; let newItem: IDataObject;
return items.map(item => { return items.map(item => {
@ -69,9 +66,7 @@ export async function pgInsert(
): Promise<Array<IDataObject[]>> { ): Promise<Array<IDataObject[]>> {
const table = getNodeParam('table', 0) as string; const table = getNodeParam('table', 0) as string;
const schema = getNodeParam('schema', 0) as string; const schema = getNodeParam('schema', 0) as string;
let returnFields = (getNodeParam('returnFields', 0) as string).split( let returnFields = (getNodeParam('returnFields', 0) as string).split(',') as string[];
',',
) as string[];
const columnString = getNodeParam('columns', 0) as string; const columnString = getNodeParam('columns', 0) as string;
const columns = columnString.split(',').map(column => column.trim()); const columns = columnString.split(',').map(column => column.trim());
@ -83,9 +78,7 @@ export async function pgInsert(
const insertItems = getItemCopy(items, columns); const insertItems = getItemCopy(items, columns);
// Generate the multi-row insert query and return the id of new row // Generate the multi-row insert query and return the id of new row
returnFields = returnFields returnFields = returnFields.map(value => value.trim()).filter(value => !!value);
.map(value => value.trim())
.filter(value => !!value);
const query = const query =
pgp.helpers.insert(insertItems, cs, te) + pgp.helpers.insert(insertItems, cs, te) +
(returnFields.length ? ` RETURNING ${returnFields.join(',')}` : ''); (returnFields.length ? ` RETURNING ${returnFields.join(',')}` : '');
@ -127,11 +120,7 @@ export async function pgUpdate(
// Generate the multi-row update query // Generate the multi-row update query
const query = const query =
pgp.helpers.update(updateItems, columns, table) + pgp.helpers.update(updateItems, columns, table) + ' WHERE v.' + updateKey + ' = t.' + updateKey;
' WHERE v.' +
updateKey +
' = t.' +
updateKey;
// Executing the query to update the data // Executing the query to update the data
await db.none(query); await db.none(query);

View file

@ -1,10 +1,5 @@
import { IExecuteFunctions } from 'n8n-core'; import { IExecuteFunctions } from 'n8n-core';
import { import { IDataObject, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
IDataObject,
INodeExecutionData,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
import * as pgPromise from 'pg-promise'; import * as pgPromise from 'pg-promise';
@ -130,8 +125,7 @@ export class Postgres implements INodeType {
}, },
}, },
default: '*', default: '*',
description: description: 'Comma separated list of the fields that the operation will return',
'Comma separated list of the fields that the operation will return',
}, },
// ---------------------------------- // ----------------------------------
@ -196,9 +190,7 @@ export class Postgres implements INodeType {
database: credentials.database as string, database: credentials.database as string,
user: credentials.user as string, user: credentials.user as string,
password: credentials.password as string, password: credentials.password as string,
ssl: !['disable', undefined].includes( ssl: !['disable', undefined].includes(credentials.ssl as string | undefined),
credentials.ssl as string | undefined,
),
sslmode: (credentials.ssl as string) || 'disable', sslmode: (credentials.ssl as string) || 'disable',
}; };
@ -222,12 +214,7 @@ export class Postgres implements INodeType {
// insert // insert
// ---------------------------------- // ----------------------------------
const [insertData, insertItems] = await pgInsert( const [insertData, insertItems] = await pgInsert(this.getNodeParameter, pgp, db, items);
this.getNodeParameter,
pgp,
db,
items,
);
// Add the id to the data // Add the id to the data
for (let i = 0; i < insertData.length; i++) { for (let i = 0; i < insertData.length; i++) {

View file

@ -1,18 +1,9 @@
import { IExecuteFunctions } from 'n8n-core'; import { IExecuteFunctions } from 'n8n-core';
import { import { IDataObject, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
IDataObject,
INodeExecutionData,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
import * as pgPromise from 'pg-promise'; import * as pgPromise from 'pg-promise';
import { import { pgInsert, pgQuery, pgUpdate } from '../Postgres/Postgres.node.functions';
pgInsert,
pgQuery,
pgUpdate,
} from '../Postgres/Postgres.node.functions';
export class QuestDB implements INodeType { export class QuestDB implements INodeType {
description: INodeTypeDescription = { description: INodeTypeDescription = {
@ -134,8 +125,7 @@ export class QuestDB implements INodeType {
}, },
}, },
default: '*', default: '*',
description: description: 'Comma separated list of the fields that the operation will return',
'Comma separated list of the fields that the operation will return',
}, },
// ---------------------------------- // ----------------------------------
@ -200,9 +190,7 @@ export class QuestDB implements INodeType {
database: credentials.database as string, database: credentials.database as string,
user: credentials.user as string, user: credentials.user as string,
password: credentials.password as string, password: credentials.password as string,
ssl: !['disable', undefined].includes( ssl: !['disable', undefined].includes(credentials.ssl as string | undefined),
credentials.ssl as string | undefined,
),
sslmode: (credentials.ssl as string) || 'disable', sslmode: (credentials.ssl as string) || 'disable',
}; };
@ -226,12 +214,7 @@ export class QuestDB implements INodeType {
// insert // insert
// ---------------------------------- // ----------------------------------
const [insertData, insertItems] = await pgInsert( const [insertData, insertItems] = await pgInsert(this.getNodeParameter, pgp, db, items);
this.getNodeParameter,
pgp,
db,
items,
);
// Add the id to the data // Add the id to the data
for (let i = 0; i < insertData.length; i++) { for (let i = 0; i < insertData.length; i++) {