Skip to content

Commit

Permalink
✨ Add custom fields support
Browse files Browse the repository at this point in the history
done
  • Loading branch information
RicardoE105 committed Feb 3, 2020
1 parent 56c8d46 commit 624da2f
Show file tree
Hide file tree
Showing 5 changed files with 321 additions and 1 deletion.
39 changes: 38 additions & 1 deletion packages/nodes-base/nodes/ClickUp/ClickUp.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ import {
import {
clickupApiRequest,
clickupApiRequestAllItems,
validateJSON,
} from './GenericFunctions';
import {
taskFields,
taskOperations,
} from './TaskDescription';
import {
listFields,
listOperations,
} from './ListDescription';
import {
ITask,
} from './TaskInterface';
Expand Down Expand Up @@ -52,12 +57,18 @@ export class ClickUp implements INodeType {
name: 'Task',
value: 'task',
},
{
name: 'List',
value: 'list',
},
],
default: 'task',
description: 'Resource to consume.',
},
...taskOperations,
...taskFields,
...listOperations,
...listFields,
],
};

Expand Down Expand Up @@ -208,6 +219,7 @@ export class ClickUp implements INodeType {
if (operation === 'create') {
const listId = this.getNodeParameter('list', i) as string;
const name = this.getNodeParameter('name', i) as string;
const jsonActive = this.getNodeParameter('jsonParameters', i) as boolean;
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
const body: ITask = {
name,
Expand Down Expand Up @@ -252,7 +264,13 @@ export class ClickUp implements INodeType {
delete body.content;
body.markdown_content = additionalFields.content as string;
}

if (jsonActive) {
const customFields = validateJSON(this.getNodeParameter('customFieldsJson', i) as string);
if (customFields === undefined) {
throw new Error('Custom Fields: Invalid JSON');
}
body.custom_fields = customFields;
}
responseData = await clickupApiRequest.call(this, 'POST', `/list/${listId}/task`, body);
}
if (operation === 'update') {
Expand Down Expand Up @@ -351,11 +369,30 @@ export class ClickUp implements INodeType {
// responseData = responseData.tasks;
}
}
if (operation === 'setCustomField') {
const taskId = this.getNodeParameter('task', i) as string;
const fieldId = this.getNodeParameter('field', i) as string;
const value = this.getNodeParameter('value', i) as string;
const body: IDataObject = {};
body.value = value;
//@ts-ignore
if (!isNaN(value)) {
body.value = parseInt(value, 10);
}
responseData = await clickupApiRequest.call(this, 'POST', `/task/${taskId}/field/${fieldId}`, body);
}
if (operation === 'delete') {
const taskId = this.getNodeParameter('id', i) as string;
responseData = await clickupApiRequest.call(this, 'DELETE', `/task/${taskId}`, {});
}
}
if (resource === 'list') {
if (operation === 'customFields') {
const listId = this.getNodeParameter('list', i) as string;
responseData = await clickupApiRequest.call(this, 'GET', `/list/${listId}/field`);
responseData = responseData.fields;
}
}
if (Array.isArray(responseData)) {
returnData.push.apply(returnData, responseData as IDataObject[]);
} else {
Expand Down
10 changes: 10 additions & 0 deletions packages/nodes-base/nodes/ClickUp/GenericFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,13 @@ export async function clickupApiRequestAllItems(this: IHookFunctions | IExecuteF
);
return returnData;
}

export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
let result;
try {
result = JSON.parse(json!);
} catch (exception) {
result = undefined;
}
return result;
}
170 changes: 170 additions & 0 deletions packages/nodes-base/nodes/ClickUp/ListDescription.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
import { INodeProperties } from 'n8n-workflow';

export const listOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'list',
],
},
},
options: [
{
name: 'Custom Fields',
value: 'customFields',
description: `Retrieve list's custom fields`,
},
],
default: 'customFields',
description: 'The operation to perform.',
},
] as INodeProperties[];

export const listFields = [

/* -------------------------------------------------------------------------- */
/* list:customFields */
/* -------------------------------------------------------------------------- */
{
displayName: 'Team',
name: 'team',
type: 'options',
default: '',
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
},
},
typeOptions: {
loadOptionsMethod: 'getTeams',
},
required: true,
},
{
displayName: 'Space',
name: 'space',
type: 'options',
default: '',
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
},
},
typeOptions: {
loadOptionsMethod: 'getSpaces',
loadOptionsDependsOn: [
'team',
]
},
required: true,
},
{
displayName: 'Folderless List',
name: 'folderless',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
},
},
required: true,
},
{
displayName: 'Folder',
name: 'folder',
type: 'options',
default: '',
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
folderless: [
false,
],
},
},
typeOptions: {
loadOptionsMethod: 'getFolders',
loadOptionsDependsOn: [
'space',
],
},
required: true,
},
{
displayName: 'List',
name: 'list',
type: 'options',
default: '',
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
folderless: [
true,
],
},
},
typeOptions: {
loadOptionsMethod: 'getFolderlessLists',
loadOptionsDependsOn: [
'space',
],
},
required: true,
},
{
displayName: 'List',
name: 'list',
type: 'options',
default: '',
displayOptions: {
show: {
resource: [
'list',
],
operation: [
'customFields',
],
folderless: [
false,
],
},
},
typeOptions: {
loadOptionsMethod: 'getLists',
loadOptionsDependsOn: [
'folder',
]
},
required: true,
},
] as INodeProperties[];
Loading

0 comments on commit 624da2f

Please sign in to comment.