n8n/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts

288 lines
5.1 KiB
TypeScript
Raw Normal View History

2020-04-04 07:04:25 -07:00
import { INodeProperties } from 'n8n-workflow';
export const collectionOperations: INodeProperties[] = [
2020-04-04 07:04:25 -07:00
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'collection',
2020-04-04 07:04:25 -07:00
],
},
},
options: [
{
name: 'Create an Entry',
value: 'create',
2020-04-04 07:04:25 -07:00
description: 'Create a collection entry',
},
{
name: 'Get all Entries',
value: 'getAll',
2020-04-04 07:04:25 -07:00
description: 'Get all collection entries',
},
{
name: 'Update an Entry',
2020-04-04 07:04:25 -07:00
value: 'update',
description: 'Update a collection entry',
2020-04-04 07:04:25 -07:00
},
],
default: 'getAll',
2020-04-04 07:04:25 -07:00
description: 'The operation to perform.',
},
];
2020-04-04 07:04:25 -07:00
export const collectionFields: INodeProperties[] = [
{
displayName: 'Collection',
name: 'collection',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getCollections',
},
displayOptions: {
show: {
resource: [
'collection',
],
},
},
required: true,
2020-10-22 06:46:03 -07:00
description: 'Name of the collection to operate on.',
},
// Collection:entry:getAll
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'collection',
],
},
},
default: false,
description: 'If all results should be returned or only up to a given limit.',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'collection',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 500,
},
default: 100,
description: 'How many results to return.',
},
2020-04-04 07:04:25 -07:00
{
displayName: 'Options',
name: 'options',
2020-04-04 07:04:25 -07:00
type: 'collection',
placeholder: 'Add Option',
2020-04-04 07:04:25 -07:00
default: {},
displayOptions: {
show: {
resource: [
'collection',
2020-04-04 07:04:25 -07:00
],
operation: [
'getAll',
2020-10-22 06:46:03 -07:00
],
2020-04-04 07:04:25 -07:00
},
},
options: [
{
displayName: 'Fields',
name: 'fields',
type: 'string',
2020-04-04 07:04:25 -07:00
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
placeholder: '_id,name',
refactor: Apply `eslint-plugin-n8n-nodes-base` autofixable rules (#3174) * :zap: Initial setup * :shirt: Update `.eslintignore` * :shirt: Autofix node-param-default-missing (#3173) * :fire: Remove duplicate key * :shirt: Add exceptions * :package: Update package-lock.json * :shirt: Apply `node-class-description-inputs-wrong-trigger-node` (#3176) * :shirt: Apply `node-class-description-inputs-wrong-regular-node` (#3177) * :shirt: Apply `node-class-description-outputs-wrong` (#3178) * :shirt: Apply `node-execute-block-double-assertion-for-items` (#3179) * :shirt: Apply `node-param-default-wrong-for-collection` (#3180) * :shirt: Apply node-param-default-wrong-for-boolean (#3181) * Autofixed default missing * Autofixed booleans, worked well * :zap: Fix params * :rewind: Undo exempted autofixes * :package: Update package-lock.json * :shirt: Apply node-class-description-missing-subtitle (#3182) * :zap: Fix missing comma * :shirt: Apply `node-param-default-wrong-for-fixed-collection` (#3184) * :shirt: Add exception for `node-class-description-missing-subtitle` * :shirt: Apply `node-param-default-wrong-for-multi-options` (#3185) * :shirt: Apply `node-param-collection-type-unsorted-items` (#3186) * Missing coma * :shirt: Apply `node-param-default-wrong-for-simplify` (#3187) * :shirt: Apply `node-param-description-comma-separated-hyphen` (#3190) * :shirt: Apply `node-param-description-empty-string` (#3189) * :shirt: Apply `node-param-description-excess-inner-whitespace` (#3191) * Rule looks good * Add whitespace rule in eslint config * :zao: fix * :shirt: Apply `node-param-description-identical-to-display-name` (#3193) * :shirt: Apply `node-param-description-missing-for-ignore-ssl-issues` (#3195) * :rewind: Revert ":zao: fix" This reverts commit ef8a76f3dfedffd1bdccf3178af8a8d90cf5a55c. * :shirt: Apply `node-param-description-missing-for-simplify` (#3196) * :shirt: Apply `node-param-description-missing-final-period` (#3194) * Rule working as intended * Add rule to eslint * :shirt: Apply node-param-description-missing-for-return-all (#3197) * :zap: Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: agobrech <ael.gobrecht@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com>
2022-04-22 09:29:51 -07:00
description: 'Comma-separated list of fields to get.',
2020-04-04 07:04:25 -07:00
},
{
displayName: 'Filter Query',
2020-04-04 07:04:25 -07:00
name: 'filter',
type: 'json',
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
placeholder: '{"name": "Jim"}',
description: 'Filter query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>.',
2020-04-04 07:04:25 -07:00
},
{
displayName: 'Language',
name: 'language',
type: 'string',
2020-04-04 07:04:25 -07:00
default: '',
description: 'Return normalized language fields.',
2020-04-04 07:04:25 -07:00
},
{
displayName: 'Populate',
name: 'populate',
type: 'boolean',
required: true,
default: true,
description: 'Resolve linked collection items.',
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
description: `Returns the data exactly in the way it got received from the API.`,
},
2020-04-04 07:04:25 -07:00
{
displayName: 'Skip',
name: 'skip',
type: 'number',
2020-04-04 07:04:25 -07:00
default: '',
description: 'Skip number of entries.',
},
{
displayName: 'Sort Query',
name: 'sort',
type: 'json',
default: '',
placeholder: '{"price": -1}',
description: 'Sort query in <a href="https://jeroen.github.io/mongolite/query-data.html">Mongolite format</a>.',
2020-04-04 07:04:25 -07:00
},
],
},
// Collection:entry:update
2020-04-04 07:04:25 -07:00
{
displayName: 'Entry ID',
name: 'id',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: [
'collection',
2020-04-04 07:04:25 -07:00
],
operation: [
'update',
2020-10-22 06:46:03 -07:00
],
2020-04-04 07:04:25 -07:00
},
},
},
2020-04-11 11:24:51 -07:00
// Collection:entry:create
// Collection:entry:update
{
displayName: 'JSON Data fields',
name: 'jsonDataFields',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: [
'collection',
],
operation: [
'create',
'update',
2020-10-22 06:46:03 -07:00
],
2020-04-11 11:24:51 -07:00
},
},
description: 'If new entry fields should be set via the value-key pair UI or JSON.',
},
2020-04-04 07:04:25 -07:00
{
displayName: 'Entry Data',
2020-04-11 11:24:51 -07:00
name: 'dataFieldsJson',
2020-04-04 07:04:25 -07:00
type: 'json',
default: '',
typeOptions: {
alwaysOpenEditWindow: true,
},
displayOptions: {
show: {
2020-04-11 11:24:51 -07:00
jsonDataFields: [
true,
],
resource: [
'collection',
],
operation: [
'create',
'update',
2020-10-22 06:46:03 -07:00
],
2020-04-11 11:24:51 -07:00
},
},
description: 'Entry data to send as JSON.',
2020-04-11 11:24:51 -07:00
},
{
displayName: 'Entry Data',
2020-04-11 11:24:51 -07:00
name: 'dataFieldsUi',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
default: {},
displayOptions: {
show: {
jsonDataFields: [
false,
],
2020-04-04 07:04:25 -07:00
resource: [
'collection',
2020-04-04 07:04:25 -07:00
],
operation: [
2020-04-11 11:24:51 -07:00
'create',
2020-04-04 07:04:25 -07:00
'update',
2020-10-22 06:46:03 -07:00
],
2020-04-04 07:04:25 -07:00
},
},
2020-04-11 11:24:51 -07:00
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: 'Entry data to send.',
2020-04-04 07:04:25 -07:00
},
];