1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 02:28:57 +03:00

Add SpaceID in Create Work Item for Kitemaker

This commit is contained in:
Leo Lou 2021-12-18 19:05:29 +08:00
parent e505eea1bd
commit 902a75bd18
No known key found for this signature in database
GPG Key ID: C4880302790B9652
3 changed files with 30 additions and 1 deletions

View File

@ -119,10 +119,16 @@ export class Kitemaker implements INodeType {
},
async getStatuses(this: ILoadOptionsFunctions) {
const spaceId = this.getNodeParameter('spaceId', 0) as string;
if (!spaceId.length) {
throw new Error('Please choose a space to set for the work item to create.');
}
const responseData = await kitemakerRequest.call(this, { query: getStatuses });
const { data: { organization: { spaces } } } = responseData;
const space = spaces.find((e: { [x: string]: string; }) => e.id == spaceId)
return createLoadOptions(spaces[0].statuses);
return createLoadOptions(space.statuses);
},
async getUsers(this: ILoadOptionsFunctions) {

View File

@ -59,11 +59,33 @@ export const workItemFields: INodeProperties[] = [
},
},
},
{
displayName: 'Space ID',
name: 'spaceId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getSpaces',
},
default: [],
required: true,
description: 'ID of the space to retrieve the work items from.',
displayOptions: {
show: {
resource: [
'workItem',
],
operation: [
'create',
],
},
},
},
{
displayName: 'Status ID',
name: 'statusId',
type: 'options',
typeOptions: {
loadOptionsDependsOn: ['spaceId'],
loadOptionsMethod: 'getStatuses',
},
default: [],

View File

@ -84,6 +84,7 @@ export const getStatuses = `
query {
organization {
spaces {
id
statuses {
id
name