mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
110 lines
2.7 KiB
TypeScript
110 lines
2.7 KiB
TypeScript
import type { INodeProperties, IExecuteFunctions, IDataObject } from 'n8n-workflow';
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
import { bucketRLC, groupRLC, memberRLC, planRLC } from '../../descriptions';
|
|
import { microsoftApiRequest } from '../../transport';
|
|
import { DateTime } from 'luxon';
|
|
|
|
const properties: INodeProperties[] = [
|
|
groupRLC,
|
|
planRLC,
|
|
bucketRLC,
|
|
{
|
|
displayName: 'Title',
|
|
name: 'title',
|
|
required: true,
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'e.g. new task',
|
|
description: 'Title of the task',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
default: {},
|
|
placeholder: 'Add Option',
|
|
options: [
|
|
{
|
|
...memberRLC,
|
|
displayName: 'Assigned To',
|
|
name: 'assignedTo',
|
|
description: 'Who the task should be assigned to',
|
|
typeOptions: {
|
|
loadOptionsDependsOn: ['groupId.balue'],
|
|
},
|
|
},
|
|
{
|
|
displayName: 'Due Date Time',
|
|
name: 'dueDateTime',
|
|
type: 'string',
|
|
validateType: 'dateTime',
|
|
default: '',
|
|
description:
|
|
'Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.',
|
|
},
|
|
{
|
|
displayName: 'Percent Complete',
|
|
name: 'percentComplete',
|
|
type: 'number',
|
|
typeOptions: {
|
|
minValue: 0,
|
|
maxValue: 100,
|
|
},
|
|
default: 0,
|
|
placeholder: 'e.g. 75',
|
|
description:
|
|
'Percentage of task completion. When set to 100, the task is considered completed.',
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
resource: ['task'],
|
|
operation: ['create'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(this: IExecuteFunctions, i: number) {
|
|
//https://docs.microsoft.com/en-us/graph/api/planner-post-tasks?view=graph-rest-1.0&tabs=http
|
|
|
|
const planId = this.getNodeParameter('planId', i, '', { extractValue: true }) as string;
|
|
const bucketId = this.getNodeParameter('bucketId', i, '', { extractValue: true }) as string;
|
|
|
|
const title = this.getNodeParameter('title', i) as string;
|
|
const options = this.getNodeParameter('options', i);
|
|
|
|
const body: IDataObject = {
|
|
planId,
|
|
bucketId,
|
|
title,
|
|
};
|
|
|
|
if (options.assignedTo) {
|
|
options.assignedTo = this.getNodeParameter('options.assignedTo', i, '', {
|
|
extractValue: true,
|
|
}) as string;
|
|
}
|
|
|
|
if (options.dueDateTime && options.dueDateTime instanceof DateTime) {
|
|
options.dueDateTime = options.dueDateTime.toISO();
|
|
}
|
|
|
|
Object.assign(body, options);
|
|
|
|
if (body.assignedTo) {
|
|
body.assignments = {
|
|
[body.assignedTo as string]: {
|
|
'@odata.type': 'microsoft.graph.plannerAssignment',
|
|
orderHint: ' !',
|
|
},
|
|
};
|
|
delete body.assignedTo;
|
|
}
|
|
|
|
return await microsoftApiRequest.call(this, 'POST', '/v1.0/planner/tasks', body);
|
|
}
|