feat: Convert all app files to JS
This commit is contained in:
198
packages/backend/src/apps/pipedrive/actions/create-note/index.js
Normal file
198
packages/backend/src/apps/pipedrive/actions/create-note/index.js
Normal file
@@ -0,0 +1,198 @@
|
||||
import defineAction from '../../../../helpers/define-action.js';
|
||||
import { filterProvidedFields } from '../../common/filter-provided-fields.js';
|
||||
|
||||
export default defineAction({
|
||||
name: 'Create note',
|
||||
key: 'createNote',
|
||||
description: 'Creates a new note.',
|
||||
arguments: [
|
||||
{
|
||||
label: 'Content',
|
||||
key: 'content',
|
||||
type: 'string',
|
||||
required: true,
|
||||
description: 'Supports some HTML formatting.',
|
||||
variables: true,
|
||||
},
|
||||
{
|
||||
label: 'Deal',
|
||||
key: 'dealId',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description:
|
||||
'Note must be associated with at least one deal, person, organization, or lead.',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listDeals',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
label: 'Pin note on specified deal?',
|
||||
key: 'pinnedDeal',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description: '',
|
||||
options: [
|
||||
{
|
||||
label: 'No',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: 'Yes',
|
||||
value: 1,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'Person',
|
||||
key: 'personId',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description:
|
||||
'Note must be associated with at least one deal, person, organization, or lead.',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listPersons',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
label: 'Pin note on specified person?',
|
||||
key: 'pinnedPerson',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description: '',
|
||||
options: [
|
||||
{
|
||||
label: 'No',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: 'Yes',
|
||||
value: 1,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'Organization',
|
||||
key: 'organizationId',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description:
|
||||
'Note must be associated with at least one deal, person, organization, or lead.',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listOrganizations',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
label: 'Pin note on specified organization?',
|
||||
key: 'pinnedOrganization',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description: '',
|
||||
options: [
|
||||
{
|
||||
label: 'No',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: 'Yes',
|
||||
value: 1,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'Lead',
|
||||
key: 'leadId',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description:
|
||||
'Note must be associated with at least one deal, person, organization, or lead.',
|
||||
variables: true,
|
||||
source: {
|
||||
type: 'query',
|
||||
name: 'getDynamicData',
|
||||
arguments: [
|
||||
{
|
||||
name: 'key',
|
||||
value: 'listLeads',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
label: 'Pin note on specified lead?',
|
||||
key: 'pinnedLead',
|
||||
type: 'dropdown',
|
||||
required: false,
|
||||
description: '',
|
||||
options: [
|
||||
{
|
||||
label: 'No',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: 'Yes',
|
||||
value: 1,
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
async run($) {
|
||||
const {
|
||||
content,
|
||||
dealId,
|
||||
pinnedDeal,
|
||||
personId,
|
||||
pinnedPerson,
|
||||
organizationId,
|
||||
pinnedOrganization,
|
||||
leadId,
|
||||
pinnedLead,
|
||||
} = $.step.parameters;
|
||||
|
||||
const fields = {
|
||||
content: content,
|
||||
deal_id: dealId,
|
||||
pinned_to_deal_flag: pinnedDeal,
|
||||
person_id: personId,
|
||||
pinned_to_person_flag: pinnedPerson,
|
||||
org_id: organizationId,
|
||||
pinned_to_organization_flag: pinnedOrganization,
|
||||
lead_id: leadId,
|
||||
pinned_to_lead_flag: pinnedLead,
|
||||
};
|
||||
|
||||
const body = filterProvidedFields(fields);
|
||||
|
||||
const {
|
||||
data: { data },
|
||||
} = await $.http.post('/api/v1/notes', body);
|
||||
|
||||
$.setActionItem({
|
||||
raw: data,
|
||||
});
|
||||
},
|
||||
});
|
Reference in New Issue
Block a user