2025-02-04 09:35:25 -08:00
|
|
|
import { type Response } from 'express';
|
|
|
|
import {
|
|
|
|
type NodeTypeAndVersion,
|
|
|
|
type IWebhookFunctions,
|
|
|
|
type IWebhookResponseData,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import { sanitizeHtml } from './utils';
|
|
|
|
|
|
|
|
export const renderFormCompletion = async (
|
|
|
|
context: IWebhookFunctions,
|
|
|
|
res: Response,
|
|
|
|
trigger: NodeTypeAndVersion,
|
|
|
|
): Promise<IWebhookResponseData> => {
|
|
|
|
const completionTitle = context.getNodeParameter('completionTitle', '') as string;
|
|
|
|
const completionMessage = context.getNodeParameter('completionMessage', '') as string;
|
|
|
|
const redirectUrl = context.getNodeParameter('redirectUrl', '') as string;
|
|
|
|
const options = context.getNodeParameter('options', {}) as { formTitle: string };
|
|
|
|
const responseText = context.getNodeParameter('responseText', '') as string;
|
|
|
|
|
|
|
|
let title = options.formTitle;
|
|
|
|
if (!title) {
|
|
|
|
title = context.evaluateExpression(`{{ $('${trigger?.name}').params.formTitle }}`) as string;
|
|
|
|
}
|
|
|
|
const appendAttribution = context.evaluateExpression(
|
|
|
|
`{{ $('${trigger?.name}').params.options?.appendAttribution === false ? false : true }}`,
|
|
|
|
) as boolean;
|
|
|
|
|
|
|
|
res.render('form-trigger-completion', {
|
|
|
|
title: completionTitle,
|
|
|
|
message: completionMessage,
|
|
|
|
formTitle: title,
|
|
|
|
appendAttribution,
|
|
|
|
responseText: sanitizeHtml(responseText),
|
2025-02-19 04:59:38 -08:00
|
|
|
redirectUrl,
|
2025-02-04 09:35:25 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
return { noWebhookResponse: true };
|
|
|
|
};
|