n8n/packages/nodes-base/nodes/Supabase/RowDescription.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
2022-07-10 23:50:51 +03:00

328 lines
6.7 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
import {
getFilters,
} from './GenericFunctions';
export const rowOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'row',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new row',
action: 'Create a row',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a row',
action: 'Delete a row',
},
{
name: 'Get',
value: 'get',
description: 'Get a row',
action: 'Get a row',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all rows',
action: 'Get all rows',
},
{
name: 'Update',
value: 'update',
description: 'Update a row',
action: 'Update a row',
},
],
default: 'create',
},
];
export const rowFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* row:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Table Name or ID',
name: 'tableId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsMethod: 'getTables',
},
required: true,
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'create',
'delete',
'get',
'getAll',
'update',
],
},
},
default: '',
},
...getFilters(
['row'],
['update'],
{
includeNoneOption: false,
filterTypeDisplayName: 'Select Type',
filterStringDisplayName: 'Select Condition (String)',
filterFixedCollectionDisplayName: 'Select Conditions',
mustMatchOptions: [
{
name: 'Any Select Condition',
value: 'anyFilter',
},
{
name: 'All Select Conditions',
value: 'allFilters',
},
],
}),
{
displayName: 'Data to Send',
name: 'dataToSend',
type: 'options',
options: [
{
name: 'Auto-Map Input Data to Columns',
value: 'autoMapInputData',
description: 'Use when node input properties match destination column names',
},
{
name: 'Define Below for Each Column',
value: 'defineBelow',
description: 'Set the value for each destination column',
},
],
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'create',
'update',
],
},
},
default: 'defineBelow',
},
{
displayName: 'Inputs to Ignore',
name: 'inputsToIgnore',
type: 'string',
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'create',
'update',
],
dataToSend: [
'autoMapInputData',
],
},
},
default: '',
description: 'List of input properties to avoid sending, separated by commas. Leave empty to send all properties.',
placeholder: 'Enter properties...',
},
{
displayName: 'Fields to Send',
name: 'fieldsUi',
placeholder: 'Add Field',
type: 'fixedCollection',
typeOptions: {
multipleValueButtonText: 'Add Field to Send',
multipleValues: true,
},
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'create',
'update',
],
dataToSend: [
'defineBelow',
],
},
},
default: {},
options: [
{
displayName: 'Field',
name: 'fieldValues',
values: [
{
displayName: 'Field Name or ID',
name: 'fieldId',
type: 'options',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
typeOptions: {
loadOptionsDependsOn: [
'tableId',
],
loadOptionsMethod: 'getTableColumns',
},
default: '',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
},
],
},
],
},
/* -------------------------------------------------------------------------- */
/* row:delete */
/* -------------------------------------------------------------------------- */
...getFilters(
['row'],
['delete'],
{
includeNoneOption: false,
filterTypeDisplayName: 'Select Type',
filterStringDisplayName: 'Select Condition (String)',
filterFixedCollectionDisplayName: 'Select Conditions',
mustMatchOptions: [
{
name: 'Any Select Condition',
value: 'anyFilter',
},
{
name: 'All Select Conditions',
value: 'allFilters',
},
]}),
/* -------------------------------------------------------------------------- */
/* row:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Select Conditions',
name: 'filters',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'get',
],
},
},
default: {},
placeholder: 'Add Condition',
options: [
{
displayName: 'Conditions',
name: 'conditions',
values: [
{
displayName: 'Name or ID',
name: 'keyName',
type: 'options',
typeOptions: {
loadOptionsDependsOn: [
'tableId',
],
loadOptionsMethod: 'getTableColumns',
},
default: '',
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
},
{
displayName: 'Value',
name: 'keyValue',
type: 'string',
default: '',
},
],
},
],
},
/* -------------------------------------------------------------------------- */
/* row:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'getAll',
],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: [
'row',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
},
default: 50,
description: 'Max number of results to return',
},
...getFilters(['row'], ['getAll'], {}),
];