import { createLogger } from '@sim/logger' import { WebflowIcon } from '@/components/icons' import { requestJson } from '@/lib/api/client/request' import { webflowSitesSelectorContract } from '@/lib/api/contracts/selectors/webflow' import { useSubBlockStore } from '@/stores/workflows/subblock/store' import type { TriggerConfig } from '../types' const logger = createLogger('webflow-form-submission-trigger') export const webflowFormSubmissionTrigger: TriggerConfig = { id: 'webflow_form_submission', name: 'Form Submission', provider: 'webflow', description: 'Trigger workflow when a form is submitted on a Webflow site (requires Webflow credentials)', version: '1.0.0', icon: WebflowIcon, subBlocks: [ { id: 'triggerCredentials', title: 'Credentials', type: 'oauth-input', description: 'This trigger requires webflow credentials to access your account.', serviceId: 'webflow', requiredScopes: ['forms:read'], required: true, mode: 'trigger', condition: { field: 'selectedTriggerId', value: 'webflow_form_submission', }, }, { id: 'triggerSiteId', title: 'Site', type: 'dropdown', placeholder: 'Select a site', description: 'The Webflow site to monitor', required: true, options: [], mode: 'trigger', condition: { field: 'selectedTriggerId', value: 'webflow_form_submission', }, fetchOptions: async (blockId: string) => { const credentialId = useSubBlockStore.getState().getValue(blockId, 'triggerCredentials') as | string | null if (!credentialId) { throw new Error('No Webflow credential selected') } try { const data = await requestJson(webflowSitesSelectorContract, { body: { credential: credentialId }, }) return (data.sites ?? []).map((site) => ({ id: site.id, label: site.name, })) } catch (error) { logger.error('Error fetching Webflow sites:', error) throw error } }, fetchOptionById: async (blockId: string, optionId: string) => { const credentialId = useSubBlockStore.getState().getValue(blockId, 'triggerCredentials') as | string | null if (!credentialId) return null try { const data = await requestJson(webflowSitesSelectorContract, { body: { credential: credentialId, siteId: optionId }, }) const site = data.sites?.find((s) => s.id === optionId) if (site) { return { id: site.id, label: site.name } } return null } catch { return null } }, dependsOn: ['triggerCredentials'], }, { id: 'formName', title: 'Form Name', type: 'short-input', placeholder: 'Contact Form (optional)', description: 'The name of the specific form to monitor (optional - leave empty for all forms)', required: false, mode: 'trigger', condition: { field: 'selectedTriggerId', value: 'webflow_form_submission', }, }, { id: 'triggerInstructions', title: 'Setup Instructions', hideFromPreview: true, type: 'text', defaultValue: [ 'Connect your Webflow account using the "Select Webflow credential" button above.', 'Select your Webflow site from the dropdown.', 'Optionally enter the Form Name to monitor only a specific form.', 'If no Form Name is provided, the trigger will fire for any form submission on the site.', 'The webhook will trigger whenever a form is submitted on the specified site.', 'Form data will be included in the payload with all submitted field values.', 'Make sure your Webflow account has appropriate permissions for the specified site.', ] .map( (instruction, index) => `
${index + 1}. ${instruction}
` ) .join(''), mode: 'trigger', condition: { field: 'selectedTriggerId', value: 'webflow_form_submission', }, }, ], outputs: { siteId: { type: 'string', description: 'The site ID where the form was submitted', }, formId: { type: 'string', description: 'The form ID', }, name: { type: 'string', description: 'The name of the form', }, id: { type: 'string', description: 'The unique ID of the form submission', }, submittedAt: { type: 'string', description: 'Timestamp when the form was submitted', }, data: { type: 'object', description: 'The form submission field data (keys are field names, values are submitted data)', }, schema: { type: 'array', description: 'Form schema describing each field', items: { type: 'object', properties: { fieldName: { type: 'string', description: 'Name of the form field' }, fieldType: { type: 'string', description: 'Type of input (e.g., FormTextInput, FormEmail)', }, fieldElementId: { type: 'string', description: 'Unique identifier for the form element (UUID)', }, }, }, }, formElementId: { type: 'string', description: 'The form element ID', }, }, webhook: { method: 'POST', headers: { 'Content-Type': 'application/json', }, }, }