mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
Add data fields to forms
This commit is contained in:
parent
fe3cca5344
commit
348afdaf5c
|
@ -44,21 +44,88 @@ export const formFields = [
|
||||||
|
|
||||||
// Form:submit
|
// Form:submit
|
||||||
{
|
{
|
||||||
displayName: 'Form data',
|
displayName: 'JSON Data fields',
|
||||||
name: 'form',
|
name: 'jsonDataFields',
|
||||||
|
type: 'boolean',
|
||||||
|
default: false,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'form',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'submit',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'If form fields should be set via the value-key pair UI or JSON.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Form fields',
|
||||||
|
name: 'dataFieldsJson',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
required: true,
|
|
||||||
default: '',
|
default: '',
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
alwaysOpenEditWindow: true,
|
alwaysOpenEditWindow: true,
|
||||||
},
|
},
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
|
jsonDataFields: [
|
||||||
|
true,
|
||||||
|
],
|
||||||
resource: [
|
resource: [
|
||||||
'form',
|
'form',
|
||||||
],
|
],
|
||||||
|
operation: [
|
||||||
|
'submit',
|
||||||
|
]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The data to save.',
|
description: 'Form to send as JSON.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Data fields',
|
||||||
|
name: 'dataFieldsUi',
|
||||||
|
type: 'fixedCollection',
|
||||||
|
typeOptions: {
|
||||||
|
multipleValues: true,
|
||||||
|
},
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
jsonDataFields: [
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
resource: [
|
||||||
|
'form',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'submit',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Field',
|
||||||
|
name: 'field',
|
||||||
|
values: [
|
||||||
|
{
|
||||||
|
displayName: 'Name',
|
||||||
|
name: 'name',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Name of the field.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Value',
|
||||||
|
name: 'value',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Value of the field.',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
description: 'Form field to send.',
|
||||||
},
|
},
|
||||||
] as INodeProperties[];
|
] as INodeProperties[];
|
||||||
|
|
|
@ -9,7 +9,7 @@ import { cockpitApiRequest } from './GenericFunctions';
|
||||||
|
|
||||||
export async function submitForm(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, resourceName: string, form: IDataObject) {
|
export async function submitForm(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, resourceName: string, form: IDataObject) {
|
||||||
const body: IForm = {
|
const body: IForm = {
|
||||||
form: JSON.parse(form.toString())
|
form
|
||||||
};
|
};
|
||||||
|
|
||||||
return cockpitApiRequest.call(this, 'post', `/forms/submit/${resourceName}`, body);
|
return cockpitApiRequest.call(this, 'post', `/forms/submit/${resourceName}`, body);
|
||||||
|
|
Loading…
Reference in a new issue