2023-12-09 15:47:03 +01:00
|
|
|
<template>
|
|
|
|
|
<div class="flex">
|
|
|
|
|
<v-button
|
2024-04-15 19:39:03 +02:00
|
|
|
v-track.url_form_prefill_click="{
|
|
|
|
|
form_id: form.id,
|
|
|
|
|
form_slug: form.slug,
|
|
|
|
|
}"
|
2023-12-09 15:47:03 +01:00
|
|
|
class="w-full"
|
|
|
|
|
color="light-gray"
|
2024-04-15 19:39:03 +02:00
|
|
|
@click="showUrlFormPrefillModal = true"
|
2023-12-09 15:47:03 +01:00
|
|
|
>
|
2024-04-15 19:39:03 +02:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
class="h-6 w-6 mr-2 text-blue-600 inline"
|
|
|
|
|
fill="none"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
stroke-width="2"
|
|
|
|
|
d="M17 16v2a2 2 0 01-2 2H5a2 2 0 01-2-2v-7a2 2 0 012-2h2m3-4H9a2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-1m-1 4l-3 3m0 0l-3-3m3 3V3"
|
2023-12-09 15:47:03 +01:00
|
|
|
/>
|
|
|
|
|
</svg>
|
2023-12-24 09:51:22 +01:00
|
|
|
Url pre-fill
|
2023-12-09 15:47:03 +01:00
|
|
|
</v-button>
|
|
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
<modal
|
|
|
|
|
:show="showUrlFormPrefillModal"
|
|
|
|
|
@close="showUrlFormPrefillModal = false"
|
|
|
|
|
>
|
2023-12-09 15:47:03 +01:00
|
|
|
<template #icon>
|
2024-04-15 19:39:03 +02:00
|
|
|
<svg
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
class="w-10 h-10 text-blue"
|
|
|
|
|
fill="none"
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
>
|
|
|
|
|
<path
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
stroke-width="2"
|
|
|
|
|
d="M17 16v2a2 2 0 01-2 2H5a2 2 0 01-2-2v-7a2 2 0 012-2h2m3-4H9a2 2 0 00-2 2v7a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-1m-1 4l-3 3m0 0l-3-3m3 3V3"
|
2023-12-09 15:47:03 +01:00
|
|
|
/>
|
|
|
|
|
</svg>
|
|
|
|
|
</template>
|
|
|
|
|
<template #title>
|
|
|
|
|
<span>Url Form Prefill</span>
|
|
|
|
|
</template>
|
|
|
|
|
|
2024-04-15 19:39:03 +02:00
|
|
|
<div
|
|
|
|
|
ref="content"
|
|
|
|
|
class="p-4"
|
|
|
|
|
>
|
2023-12-09 15:47:03 +01:00
|
|
|
<p>
|
2024-04-15 19:39:03 +02:00
|
|
|
Create dynamic links when sharing your form (whether it's embedded or
|
|
|
|
|
not), that allows you to prefill your form fields. You can use this to
|
|
|
|
|
personalize the form when sending it to multiple contacts for
|
|
|
|
|
instance.
|
2023-12-09 15:47:03 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<h3 class="mt-6 border-t text-xl font-semibold mb-4 pt-6">
|
|
|
|
|
How does it work?
|
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
|
|
<p>
|
2024-04-15 19:39:03 +02:00
|
|
|
Complete your form below and fill only the fields you want to prefill.
|
|
|
|
|
You can even leave the required fields empty.
|
2023-12-09 15:47:03 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="rounded-lg p-5 bg-gray-100 dark:bg-gray-900 mt-4">
|
2024-04-15 19:39:03 +02:00
|
|
|
<open-form
|
|
|
|
|
v-if="form"
|
|
|
|
|
:theme="theme"
|
|
|
|
|
:loading="false"
|
|
|
|
|
:form="form"
|
|
|
|
|
:fields="form.properties"
|
Decouple title from title block (#696)
* Decouple title from title block
* fix lint
* remove dry run for FormTitleMigration
* Skip form title migration for forms with hidden titles
* Refactor AI Form Generation with Dedicated Prompt Services
- Extract AI form generation logic from GenerateTemplate command into dedicated prompt service classes
- Update GenerateAiForm job to use new prompt generation services
- Improve GptCompleter with more robust error handling and token tracking
- Add error field to AiFormCompletion model for better error logging
- Simplify command signature from 'ai:make-form-template' to 'form:generate'
* Consolidate Template Metadata Generation with Unified Prompt Service
- Create GenerateTemplateMetadataPrompt to centralize template metadata generation
- Update GenerateTemplate command to use new consolidated metadata generation approach
- Enhance GptCompleter to support strict JSON schema validation
- Increase form prompt max length to support more complex form descriptions
- Refactor form generation to simplify metadata extraction and processing
* Implement Form Mode Strategy for Flexible Form Rendering
- Introduce FormModeStrategy to centralize form rendering logic
- Add support for different form modes: LIVE, PREVIEW, TEST, EDIT, PREFILL
- Refactor components to use mode-based rendering strategy
- Remove legacy boolean props like adminPreview and creating
- Enhance form component flexibility and reusability
* Refine Form Mode Strategy Display Behavior
- Update FormModeStrategy to hide hidden fields in PREVIEW mode
- Add FormMode getter in UrlFormPrefill component for mode-specific rendering
- Clarify mode-specific validation and display logic in form strategies
* Enhance Form Template Generation with Advanced Field Options
- Update GenerateTemplate command to use front_url for template URL output
- Expand GenerateFormPrompt with comprehensive field configuration options
- Add support for advanced field types: date with time, toggle switches, radio/checkbox selections
- Introduce field width configuration and HTML formatting for text elements
- Re-enable select, multi-select, and matrix field type definitions with enhanced configurations
* Remove Deprecated Template Metadata Generation Services
- Delete multiple AI prompt services related to template metadata generation
- Simplify GenerateTemplate command to use default values instead of complex metadata generation
- Remove GenerateTemplateMetadataPrompt and related classes like GenerateTemplateDescriptionPrompt, GenerateTemplateImageKeywordsPrompt, etc.
- Update form template generation to use basic fallback metadata generation approach
* Restore GenerateTemplateMetadataPrompt for Comprehensive Template Generation
- Reintroduce GenerateTemplateMetadataPrompt to replace default metadata generation
- Update GenerateTemplate command to use consolidated metadata generation approach
- Extract detailed metadata components including title, description, industries, and image search query
- Improve template generation with more dynamic and AI-generated metadata
* Refactor Template Preview Section Layout
- Remove unnecessary nested div in template preview section
- Simplify HTML structure for the template preview component
- Maintain existing styling and functionality while improving code readability
* Refactor Constructor and Code Formatting in AI Form Generation and Prompt Classes
- Updated the constructor in GenerateAiForm.php to use a block structure for improved readability and consistency.
- Added a blank line in the Prompt.php file to enhance code formatting and maintain consistency with PHP coding standards.
- Modified the migration file to use a more concise class declaration syntax, improving clarity.
These changes aim to enhance code readability and maintainability across the affected files.
---------
Co-authored-by: Julien Nahum <julien@nahum.net>
2025-03-21 16:59:18 +01:00
|
|
|
:mode="FormMode.PREFILL"
|
2024-04-15 19:39:03 +02:00
|
|
|
@submit="generateUrl"
|
|
|
|
|
>
|
|
|
|
|
<template #submit-btn="{ submitForm }">
|
|
|
|
|
<v-button
|
|
|
|
|
class="mt-2 px-8 mx-1"
|
|
|
|
|
@click.prevent="submitForm"
|
|
|
|
|
>
|
2023-12-09 15:47:03 +01:00
|
|
|
Generate Pre-filled URL
|
|
|
|
|
</v-button>
|
|
|
|
|
</template>
|
|
|
|
|
</open-form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<template v-if="prefillFormData">
|
|
|
|
|
<h3 class="mt-6 text-xl font-semibold mb-4 pt-6">
|
|
|
|
|
Your Prefill url
|
|
|
|
|
</h3>
|
2024-04-15 19:39:03 +02:00
|
|
|
<form-url-prefill
|
|
|
|
|
:form="form"
|
|
|
|
|
:form-data="prefillFormData"
|
|
|
|
|
:extra-query-param="extraQueryParam"
|
|
|
|
|
/>
|
2023-12-09 15:47:03 +01:00
|
|
|
</template>
|
|
|
|
|
</div>
|
|
|
|
|
</modal>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-07-10 12:31:33 +02:00
|
|
|
import ThemeBuilder from "~/lib/forms/themes/ThemeBuilder"
|
2024-04-15 19:39:03 +02:00
|
|
|
import FormUrlPrefill from "../../../open/forms/components/FormUrlPrefill.vue"
|
|
|
|
|
import OpenForm from "../../../open/forms/OpenForm.vue"
|
Decouple title from title block (#696)
* Decouple title from title block
* fix lint
* remove dry run for FormTitleMigration
* Skip form title migration for forms with hidden titles
* Refactor AI Form Generation with Dedicated Prompt Services
- Extract AI form generation logic from GenerateTemplate command into dedicated prompt service classes
- Update GenerateAiForm job to use new prompt generation services
- Improve GptCompleter with more robust error handling and token tracking
- Add error field to AiFormCompletion model for better error logging
- Simplify command signature from 'ai:make-form-template' to 'form:generate'
* Consolidate Template Metadata Generation with Unified Prompt Service
- Create GenerateTemplateMetadataPrompt to centralize template metadata generation
- Update GenerateTemplate command to use new consolidated metadata generation approach
- Enhance GptCompleter to support strict JSON schema validation
- Increase form prompt max length to support more complex form descriptions
- Refactor form generation to simplify metadata extraction and processing
* Implement Form Mode Strategy for Flexible Form Rendering
- Introduce FormModeStrategy to centralize form rendering logic
- Add support for different form modes: LIVE, PREVIEW, TEST, EDIT, PREFILL
- Refactor components to use mode-based rendering strategy
- Remove legacy boolean props like adminPreview and creating
- Enhance form component flexibility and reusability
* Refine Form Mode Strategy Display Behavior
- Update FormModeStrategy to hide hidden fields in PREVIEW mode
- Add FormMode getter in UrlFormPrefill component for mode-specific rendering
- Clarify mode-specific validation and display logic in form strategies
* Enhance Form Template Generation with Advanced Field Options
- Update GenerateTemplate command to use front_url for template URL output
- Expand GenerateFormPrompt with comprehensive field configuration options
- Add support for advanced field types: date with time, toggle switches, radio/checkbox selections
- Introduce field width configuration and HTML formatting for text elements
- Re-enable select, multi-select, and matrix field type definitions with enhanced configurations
* Remove Deprecated Template Metadata Generation Services
- Delete multiple AI prompt services related to template metadata generation
- Simplify GenerateTemplate command to use default values instead of complex metadata generation
- Remove GenerateTemplateMetadataPrompt and related classes like GenerateTemplateDescriptionPrompt, GenerateTemplateImageKeywordsPrompt, etc.
- Update form template generation to use basic fallback metadata generation approach
* Restore GenerateTemplateMetadataPrompt for Comprehensive Template Generation
- Reintroduce GenerateTemplateMetadataPrompt to replace default metadata generation
- Update GenerateTemplate command to use consolidated metadata generation approach
- Extract detailed metadata components including title, description, industries, and image search query
- Improve template generation with more dynamic and AI-generated metadata
* Refactor Template Preview Section Layout
- Remove unnecessary nested div in template preview section
- Simplify HTML structure for the template preview component
- Maintain existing styling and functionality while improving code readability
* Refactor Constructor and Code Formatting in AI Form Generation and Prompt Classes
- Updated the constructor in GenerateAiForm.php to use a block structure for improved readability and consistency.
- Added a blank line in the Prompt.php file to enhance code formatting and maintain consistency with PHP coding standards.
- Modified the migration file to use a more concise class declaration syntax, improving clarity.
These changes aim to enhance code readability and maintainability across the affected files.
---------
Co-authored-by: Julien Nahum <julien@nahum.net>
2025-03-21 16:59:18 +01:00
|
|
|
import { FormMode } from "~/lib/forms/FormModeStrategy.js"
|
2023-12-09 15:47:03 +01:00
|
|
|
|
|
|
|
|
export default {
|
2024-04-15 19:39:03 +02:00
|
|
|
name: "UrlFormPrefill",
|
|
|
|
|
components: { FormUrlPrefill, OpenForm },
|
2023-12-09 15:47:03 +01:00
|
|
|
props: {
|
|
|
|
|
form: { type: Object, required: true },
|
2024-04-15 19:39:03 +02:00
|
|
|
extraQueryParam: { type: String, default: "" },
|
2023-12-09 15:47:03 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
data: () => ({
|
|
|
|
|
prefillFormData: null,
|
|
|
|
|
showUrlFormPrefillModal: false,
|
|
|
|
|
}),
|
|
|
|
|
|
2024-07-10 12:31:33 +02:00
|
|
|
computed: {
|
|
|
|
|
theme () {
|
|
|
|
|
return new ThemeBuilder(this.form.theme, {
|
|
|
|
|
size: this.form.size,
|
|
|
|
|
borderRadius: this.form.border_radius
|
|
|
|
|
}).getAllComponents()
|
|
|
|
|
},
|
Decouple title from title block (#696)
* Decouple title from title block
* fix lint
* remove dry run for FormTitleMigration
* Skip form title migration for forms with hidden titles
* Refactor AI Form Generation with Dedicated Prompt Services
- Extract AI form generation logic from GenerateTemplate command into dedicated prompt service classes
- Update GenerateAiForm job to use new prompt generation services
- Improve GptCompleter with more robust error handling and token tracking
- Add error field to AiFormCompletion model for better error logging
- Simplify command signature from 'ai:make-form-template' to 'form:generate'
* Consolidate Template Metadata Generation with Unified Prompt Service
- Create GenerateTemplateMetadataPrompt to centralize template metadata generation
- Update GenerateTemplate command to use new consolidated metadata generation approach
- Enhance GptCompleter to support strict JSON schema validation
- Increase form prompt max length to support more complex form descriptions
- Refactor form generation to simplify metadata extraction and processing
* Implement Form Mode Strategy for Flexible Form Rendering
- Introduce FormModeStrategy to centralize form rendering logic
- Add support for different form modes: LIVE, PREVIEW, TEST, EDIT, PREFILL
- Refactor components to use mode-based rendering strategy
- Remove legacy boolean props like adminPreview and creating
- Enhance form component flexibility and reusability
* Refine Form Mode Strategy Display Behavior
- Update FormModeStrategy to hide hidden fields in PREVIEW mode
- Add FormMode getter in UrlFormPrefill component for mode-specific rendering
- Clarify mode-specific validation and display logic in form strategies
* Enhance Form Template Generation with Advanced Field Options
- Update GenerateTemplate command to use front_url for template URL output
- Expand GenerateFormPrompt with comprehensive field configuration options
- Add support for advanced field types: date with time, toggle switches, radio/checkbox selections
- Introduce field width configuration and HTML formatting for text elements
- Re-enable select, multi-select, and matrix field type definitions with enhanced configurations
* Remove Deprecated Template Metadata Generation Services
- Delete multiple AI prompt services related to template metadata generation
- Simplify GenerateTemplate command to use default values instead of complex metadata generation
- Remove GenerateTemplateMetadataPrompt and related classes like GenerateTemplateDescriptionPrompt, GenerateTemplateImageKeywordsPrompt, etc.
- Update form template generation to use basic fallback metadata generation approach
* Restore GenerateTemplateMetadataPrompt for Comprehensive Template Generation
- Reintroduce GenerateTemplateMetadataPrompt to replace default metadata generation
- Update GenerateTemplate command to use consolidated metadata generation approach
- Extract detailed metadata components including title, description, industries, and image search query
- Improve template generation with more dynamic and AI-generated metadata
* Refactor Template Preview Section Layout
- Remove unnecessary nested div in template preview section
- Simplify HTML structure for the template preview component
- Maintain existing styling and functionality while improving code readability
* Refactor Constructor and Code Formatting in AI Form Generation and Prompt Classes
- Updated the constructor in GenerateAiForm.php to use a block structure for improved readability and consistency.
- Added a blank line in the Prompt.php file to enhance code formatting and maintain consistency with PHP coding standards.
- Modified the migration file to use a more concise class declaration syntax, improving clarity.
These changes aim to enhance code readability and maintainability across the affected files.
---------
Co-authored-by: Julien Nahum <julien@nahum.net>
2025-03-21 16:59:18 +01:00
|
|
|
FormMode() {
|
|
|
|
|
return FormMode
|
|
|
|
|
}
|
2024-07-10 12:31:33 +02:00
|
|
|
},
|
2023-12-09 15:47:03 +01:00
|
|
|
|
|
|
|
|
methods: {
|
2024-04-15 19:39:03 +02:00
|
|
|
generateUrl(formData) {
|
2023-12-09 15:47:03 +01:00
|
|
|
this.prefillFormData = formData
|
|
|
|
|
this.$nextTick().then(() => {
|
|
|
|
|
if (this.$refs.content) {
|
2024-04-15 19:39:03 +02:00
|
|
|
this.$refs.content.parentElement.parentElement.parentElement.scrollTop =
|
|
|
|
|
this.$refs.content.offsetHeight
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
})
|
2024-04-15 19:39:03 +02:00
|
|
|
},
|
|
|
|
|
},
|
2023-12-09 15:47:03 +01:00
|
|
|
}
|
|
|
|
|
</script>
|