n8n/packages/nodes-base/nodes/Odoo/descriptions/CustomResourceDescription.ts
Michael Kret fbdb5eb0fa
Add Odoo Node (#2601)
* added odoo scaffolding

* update getting data from odoo instance

* added scaffolding for main loop and request functions

* added functions for CRUD opperations

* improoved error handling for odooJSONRPCRequest

* updated odoo node and fixing nodelinter issues

* fixed alpabetical order

* fixed types in odoo node

* fixing linter errors

* fixing linter errors

* fixed data shape returned from man loop

* updated node input types, added fields list to models

* update when custom resource is selected options for fields list will be populated dynamicly

* minor fixes

* 🔨 fixed credential test, updating CRUD methods

* 🔨 added additional fields to crm resource

* 🔨 added descriptions, fixed credentials test bug

* 🔨 standardize node and descriptions design

* 🔨 removed comments

* 🔨 added pagination to getAll operation

*  removed leftover function from previous implementation, removed required from optional fields

*  fixed id field, added indication of type and if required to field description, replaced string input in filters to fetched list of fields

* 🔨 fetching list of models from odoo, added selection of fields to be returned to predefined models, fixes accordingly to review

*  Small improvements

* 🔨 extracted adress fields into collection, changed fields to include in descriptions, minor tweaks

*  Improvements

* 🔨 working on review

* 🔨 fixed linter errors

* 🔨 review wip

* 🔨 review wip

* 🔨 review wip

*  updated display name for URL in credentials

* 🔨 added checks for valid id to delete and update

*  Minor improvements

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2022-03-05 20:33:42 +01:00

376 lines
6.8 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const customResourceOperations: INodeProperties[] = [
{
displayName: 'Custom Resource',
name: 'customResource',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getModels',
},
displayOptions: {
show: {
resource: [
'custom',
],
},
},
},
{
displayName: 'Operation',
name: 'operation',
type: 'options',
default: 'create',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'custom',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new item',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an item',
},
{
name: 'Get',
value: 'get',
description: 'Get an item',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all items',
},
{
name: 'Update',
value: 'update',
description: 'Update an item',
},
],
},
];
export const customResourceDescription: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* custom:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Fields',
name: 'fieldsToCreateOrUpdate',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add Field',
},
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
operation: [
'create',
],
resource: [
'custom',
],
},
},
options: [
{
displayName: 'Field Record:',
name: 'fields',
values: [
{
displayName: 'Field Name',
name: 'fieldName',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getModelFields',
},
},
{
displayName: 'New Value',
name: 'fieldValue',
type: 'string',
default: '',
},
],
},
],
},
/* -------------------------------------------------------------------------- */
/* custom:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Custom Resource ID',
name: 'customResourceId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
operation: [
'get',
'delete',
],
resource: [
'custom',
],
},
},
},
/* -------------------------------------------------------------------------- */
/* custom:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: [
'custom',
],
operation: [
'getAll',
],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
displayOptions: {
show: {
resource: [
'custom',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 1000,
},
description: 'Max number of results to return',
},
{
displayName: 'Options',
name: 'options',
type: 'collection',
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
operation: [
'getAll',
'get',
],
resource: [
'custom',
],
},
},
options: [
{
displayName: 'Fields To Include',
name: 'fieldsList',
type: 'multiOptions',
default: [],
typeOptions: {
loadOptionsMethod: 'getModelFields',
loadOptionsDependsOn: [
'customResource',
],
},
},
],
},
{
displayName: 'Filters',
name: 'filterRequest',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add Filter',
},
default: {},
description: 'Filter request by applying filters',
placeholder: 'Add condition',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'custom',
],
},
},
options: [
{
name: 'filter',
displayName: 'Filter',
values: [
{
displayName: 'Field',
name: 'fieldName',
type: 'options',
default: '',
typeOptions: {
loadOptionsDependsOn: [
'customResource',
],
loadOptionsMethod: 'getModelFields',
},
},
{
displayName: 'Operator',
name: 'operator',
type: 'options',
default: 'equal',
description: 'Specify an operator',
options: [
{
name: '!=',
value: 'notEqual',
},
{
name: '<',
value: 'lesserThen',
},
{
name: '=',
value: 'equal',
},
{
name: '<=',
value: 'lesserOrEqual',
},
{
name: '>',
value: 'greaterThen',
},
{
name: '>=',
value: 'greaterOrEqual',
},
{
name: ' Child of',
value: 'childOf',
},
{
name: 'In',
value: 'in',
},
{
name: 'Like',
value: 'like',
},
{
name: 'Not In',
value: 'notIn',
},
],
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Specify value for comparison',
},
],
},
],
},
/* -------------------------------------------------------------------------- */
/* custom:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Custom Resource ID',
name: 'customResourceId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
operation: [
'update',
],
resource: [
'custom',
],
},
},
},
{
displayName: 'Update Fields',
name: 'fieldsToCreateOrUpdate',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add Field',
},
default: {},
placeholder: 'Add Field',
displayOptions: {
show: {
operation: [
'update',
],
resource: [
'custom',
],
},
},
options: [
{
displayName: 'Field Record:',
name: 'fields',
values: [
{
displayName: 'Field Name',
name: 'fieldName',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getModelFields',
},
},
{
displayName: 'New Value',
name: 'fieldValue',
type: 'string',
default: '',
},
],
},
],
},
];