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

@@ -5,9 +5,7 @@ import {
NodeOperationError,
} from 'n8n-workflow';
import {
apiRequest,
} from '../transport';
import { apiRequest } from '../transport';
// Get all the available channels
export async function getChannels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
@@ -21,11 +19,13 @@ export async function getChannels(this: ILoadOptionsFunctions): Promise<INodePro
const returnData: INodePropertyOptions[] = [];
let name: string;
for (const data of responseData) {
if (data.delete_at !== 0 || (!data.display_name || !data.name)) {
if (data.delete_at !== 0 || !data.display_name || !data.name) {
continue;
}
name = `${data.team_display_name} - ${data.display_name || data.name} (${data.type === 'O' ? 'public' : 'private'})`;
name = `${data.team_display_name} - ${data.display_name || data.name} (${
data.type === 'O' ? 'public' : 'private'
})`;
returnData.push({
name,
@@ -34,8 +34,12 @@ export async function getChannels(this: ILoadOptionsFunctions): Promise<INodePro
}
returnData.sort((a, b) => {
if (a.name < b.name) { return -1; }
if (a.name > b.name) { return 1; }
if (a.name < b.name) {
return -1;
}
if (a.name > b.name) {
return 1;
}
return 0;
});
@@ -43,7 +47,9 @@ export async function getChannels(this: ILoadOptionsFunctions): Promise<INodePro
}
// Get all the channels in a team
export async function getChannelsInTeam(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
export async function getChannelsInTeam(
this: ILoadOptionsFunctions,
): Promise<INodePropertyOptions[]> {
const teamId = this.getCurrentNodeParameter('teamId');
const endpoint = `users/me/teams/${teamId}/channels`;
const responseData = await apiRequest.call(this, 'GET', endpoint, {});
@@ -55,15 +61,15 @@ export async function getChannelsInTeam(this: ILoadOptionsFunctions): Promise<IN
const returnData: INodePropertyOptions[] = [];
let name: string;
for (const data of responseData) {
if (data.delete_at !== 0 || (!data.display_name || !data.name)) {
if (data.delete_at !== 0 || !data.display_name || !data.name) {
continue;
}
const channelTypes: IDataObject = {
'D': 'direct',
'G': 'group',
'O': 'public',
'P': 'private',
D: 'direct',
G: 'group',
O: 'public',
P: 'private',
};
name = `${data.display_name} (${channelTypes[data.type as string]})`;
@@ -75,8 +81,12 @@ export async function getChannelsInTeam(this: ILoadOptionsFunctions): Promise<IN
}
returnData.sort((a, b) => {
if (a.name < b.name) { return -1; }
if (a.name > b.name) { return 1; }
if (a.name < b.name) {
return -1;
}
if (a.name > b.name) {
return 1;
}
return 0;
});
@@ -94,7 +104,6 @@ export async function getTeams(this: ILoadOptionsFunctions): Promise<INodeProper
const returnData: INodePropertyOptions[] = [];
let name: string;
for (const data of responseData) {
if (data.delete_at !== 0) {
continue;
}
@@ -108,8 +117,12 @@ export async function getTeams(this: ILoadOptionsFunctions): Promise<INodeProper
}
returnData.sort((a, b) => {
if (a.name < b.name) { return -1; }
if (a.name > b.name) { return 1; }
if (a.name < b.name) {
return -1;
}
if (a.name > b.name) {
return 1;
}
return 0;
});
@@ -126,7 +139,6 @@ export async function getUsers(this: ILoadOptionsFunctions): Promise<INodeProper
const returnData: INodePropertyOptions[] = [];
for (const data of responseData) {
if (data.delete_at !== 0) {
continue;
}
@@ -138,11 +150,14 @@ export async function getUsers(this: ILoadOptionsFunctions): Promise<INodeProper
}
returnData.sort((a, b) => {
if (a.name < b.name) { return -1; }
if (a.name > b.name) { return 1; }
if (a.name < b.name) {
return -1;
}
if (a.name > b.name) {
return 1;
}
return 0;
});
return returnData;
}