added-followers-functions
This commit is contained in:
parent
6a17ab840b
commit
9057d8b2cf
|
@ -30,6 +30,7 @@ interface IProperyId {}
|
|||
|
||||
interface ICreatePlutioBody {
|
||||
assignedTo?: [string];
|
||||
followers?: [string];
|
||||
title?: string;
|
||||
name?: string;
|
||||
taskGroupId?: string;
|
||||
|
@ -290,6 +291,7 @@ export class Plutio implements INodeType {
|
|||
if ('task' === resource) {
|
||||
if ('create' === operation) {
|
||||
const assignees = this.getNodeParameter('assignees', i) as IDataObject;
|
||||
const followedBy = this.getNodeParameter('followers', i) as IDataObject;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
|
||||
if (options.projectId) {
|
||||
|
@ -382,7 +384,6 @@ export class Plutio implements INodeType {
|
|||
const metadata = (assignees as IDataObject).assignee as IDataObject[];
|
||||
let assignedTo: IProperyId[] = [];
|
||||
const users: IProperyId[] = [];
|
||||
|
||||
if (metadata) {
|
||||
|
||||
// Push all assignees to a single array.
|
||||
|
@ -413,11 +414,50 @@ export class Plutio implements INodeType {
|
|||
|
||||
body.assignedTo = assignedTo as [string];
|
||||
}
|
||||
|
||||
// add followers to user
|
||||
if (followedBy) {
|
||||
const metadata = (followedBy as IDataObject).follower as IDataObject[];
|
||||
let followers: IProperyId[] = [];
|
||||
const users: IProperyId[] = [];
|
||||
|
||||
if (metadata) {
|
||||
|
||||
// Push all assignees to a single array.
|
||||
for (const data of metadata) {
|
||||
followers.push(data.value as IDataObject);
|
||||
}
|
||||
|
||||
// flatten followers array.
|
||||
followers = followers.flatMap(a => a);
|
||||
|
||||
const customQs = {'status': 'active'};
|
||||
await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
|
||||
for (const id of followers) {
|
||||
for (const person of people) {
|
||||
const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
|
||||
if (id === person._id || id === userName) {
|
||||
users.push(person._id);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// remove duplicates.
|
||||
followers = users.filter((c, index) => {
|
||||
return users.indexOf(c) === index;
|
||||
});
|
||||
|
||||
body.followers = followers as [string];
|
||||
}
|
||||
|
||||
responseData = await plutioApiRequest.call(this, 'POST', '/tasks', body);
|
||||
}
|
||||
if ('update' === operation) {
|
||||
const _id = this.getNodeParameter('_id', 0) as string;
|
||||
const assignees = this.getNodeParameter('assignees', i) as IDataObject;
|
||||
const followedBy = this.getNodeParameter('followers', i) as IDataObject;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
|
||||
if (_id) {
|
||||
|
@ -510,6 +550,7 @@ export class Plutio implements INodeType {
|
|||
let assignedTo: IProperyId[] = [];
|
||||
const users: IProperyId[] = [];
|
||||
|
||||
if (metadata) {
|
||||
// Push all assignees to a single array.
|
||||
for (const data of metadata) {
|
||||
assignedTo.push(data.value as IDataObject);
|
||||
|
@ -529,6 +570,7 @@ export class Plutio implements INodeType {
|
|||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// remove duplicates.
|
||||
assignedTo = users.filter((c, index) => {
|
||||
|
@ -537,8 +579,47 @@ export class Plutio implements INodeType {
|
|||
|
||||
body.assignedTo = assignedTo as [string];
|
||||
}
|
||||
|
||||
// add followers to user
|
||||
if (followedBy) {
|
||||
const metadata = (followedBy as IDataObject).follower as IDataObject[];
|
||||
let followers: IProperyId[] = [];
|
||||
const users: IProperyId[] = [];
|
||||
|
||||
if (metadata) {
|
||||
|
||||
// Push all assignees to a single array.
|
||||
for (const data of metadata) {
|
||||
followers.push(data.value as IDataObject);
|
||||
}
|
||||
|
||||
// flatten followers array.
|
||||
followers = followers.flatMap(a => a);
|
||||
|
||||
const customQs = {'status': 'active'};
|
||||
await plutioApiRequest.call(this, 'GET', '/people', {}, customQs).then(people => {
|
||||
for (const id of followers) {
|
||||
for (const person of people) {
|
||||
const userName = (person.name.last) ? `${person.name.first} ${person.name.last}` : `${person.name.first}`;
|
||||
if (id === person._id || id === userName) {
|
||||
users.push(person._id);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// remove duplicates.
|
||||
followers = users.filter((c, index) => {
|
||||
return users.indexOf(c) === index;
|
||||
});
|
||||
|
||||
body.followers = followers as [string];
|
||||
}
|
||||
|
||||
responseData = await plutioApiRequest.call(this, 'PUT', '/tasks', body);
|
||||
}
|
||||
|
||||
if ('get' === operation) {
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
|
||||
|
@ -647,6 +728,8 @@ export class Plutio implements INodeType {
|
|||
responseData = await plutioApiRequest.call(this, 'DELETE', '/tasks', body);
|
||||
}
|
||||
}
|
||||
|
||||
// Execute Comments.
|
||||
if ('comment' === resource) {
|
||||
if ('create' === operation) {
|
||||
const entityId = this.getNodeParameter('entityId', i) as string;
|
||||
|
@ -697,6 +780,8 @@ export class Plutio implements INodeType {
|
|||
responseData = await plutioApiRequest.call(this, 'DELETE', '/comments', body);
|
||||
}
|
||||
}
|
||||
|
||||
// execute Invoice.
|
||||
if ('invoice' === resource) {
|
||||
if ('create' === operation) {
|
||||
const taxUi = this.getNodeParameter('taxUi', i) as IDataObject;
|
||||
|
|
|
@ -242,6 +242,46 @@ export const taskDescription: INodeProperties[] = [
|
|||
],
|
||||
description: 'Name or ID of the user to whom the task has been assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'Followers: Name or ID',
|
||||
name: 'followers',
|
||||
type: 'fixedCollection',
|
||||
default: [],
|
||||
placeholder: 'Add Person',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'task',
|
||||
],
|
||||
operation: [
|
||||
'update',
|
||||
'create',
|
||||
],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Follower',
|
||||
name: 'follower',
|
||||
values: [
|
||||
{
|
||||
displayName: 'Followers: Name or ID',
|
||||
name: 'value',
|
||||
type: 'options',
|
||||
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
||||
default: '',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
description: 'Name or ID of the user to who follows this task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.',
|
||||
},
|
||||
// move & copy task operation
|
||||
{
|
||||
displayName: 'Task Group Name or ID',
|
||||
|
|
|
@ -7,8 +7,7 @@
|
|||
],
|
||||
"license": "MIT",
|
||||
"homepage": "https://chykalophia.com",
|
||||
"contributors":
|
||||
[
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Peter Krzyzek",
|
||||
"email": "peter@chykalophia.com",
|
||||
|
|
Loading…
Reference in New Issue