opnform-host-nginx/client/components/open/forms/OpenForm.vue

510 lines
16 KiB
Vue
Raw Normal View History

2023-12-09 15:47:03 +01:00
<template>
<div v-if="isAutoSubmit">
<p class="text-center p-4">
2023-12-11 11:56:21 +01:00
<Loader class="h-6 w-6 text-nt-blue mx-auto" />
2023-12-09 15:47:03 +01:00
</p>
</div>
<form
v-else-if="dataForm"
@submit.prevent=""
>
<template v-if="form.show_progress_bar">
<div
v-if="isIframe"
class="mb-4 p-2"
>
<div class="w-full h-2 bg-gray-200 dark:bg-gray-600 relative border rounded-full overflow-hidden">
<div
class="h-full transition-all duration-300 rounded-r-full"
:class="{ 'w-0': formProgress === 0 }"
:style="{ width: formProgress + '%', background: form.color }"
/>
</div>
</div>
<div
v-else
class="fixed top-0 left-0 right-0 z-50"
>
<div class="w-full h-[0.2rem] bg-gray-200 dark:bg-gray-600 relative overflow-hidden">
<div
class="h-full transition-all duration-300"
:class="{ 'w-0': formProgress === 0 }"
:style="{ width: formProgress + '%', background: form.color }"
/>
</div>
</div>
</template>
<transition
name="fade"
mode="out-in"
>
<div
:key="currentFieldGroupIndex"
class="form-group flex flex-wrap w-full"
>
<draggable
:list="currentFields"
group="form-elements"
item-key="id"
2024-05-14 17:17:28 +02:00
class="grid grid-cols-12 relative transition-all w-full"
:class="{'rounded-md bg-blue-50':draggingNewBlock}"
ghost-class="ghost-item"
:animation="200"
:disabled="!adminPreview"
handle=".handle"
@change="handleDragDropped"
2023-12-09 15:47:03 +01:00
>
<template #item="{element}">
<open-form-field
:field="element"
:show-hidden="showHidden"
:form="form"
:data-form="dataForm"
:data-form-value="dataFormValue"
:theme="theme"
:dark-mode="darkMode"
2023-12-09 15:47:03 +01:00
:admin-preview="adminPreview"
/>
</template>
</draggable>
</div>
</transition>
<!-- Captcha -->
<template v-if="form.use_captcha && isLastPage">
<div class="mb-3 px-2 mt-2 mx-auto w-max">
<vue-hcaptcha
ref="hcaptcha"
:sitekey="hCaptchaSiteKey"
:theme="darkMode?'dark':'light'"
/>
<has-error
:form="dataForm"
field="h-captcha-response"
/>
2023-12-09 15:47:03 +01:00
</div>
</template>
<!-- Submit, Next and previous buttons -->
<div class="flex flex-wrap justify-center w-full">
<open-form-button
v-if="currentFieldGroupIndex>0 && previousFieldsPageBreak && !loading"
native-type="button"
:color="form.color"
:theme="theme"
class="mt-2 px-8 mx-1"
@click="previousPage"
2023-12-09 15:47:03 +01:00
>
{{ previousFieldsPageBreak.previous_btn_text }}
</open-form-button>
<slot
v-if="isLastPage"
name="submit-btn"
:submit-form="submitForm"
/>
<open-form-button
v-else-if="currentFieldsPageBreak"
native-type="button"
:color="form.color"
:theme="theme"
class="mt-2 px-8 mx-1"
:loading="dataForm.busy"
@click.stop="nextPage"
2023-12-09 15:47:03 +01:00
>
{{ currentFieldsPageBreak.next_btn_text }}
</open-form-button>
<div v-if="!currentFieldsPageBreak && !isLastPage">
Something is wrong with this form structure. If you're the form owner please contact us.
</div>
</div>
</form>
</template>
<script>
import clonedeep from 'clone-deep'
import draggable from 'vuedraggable'
import OpenFormButton from './OpenFormButton.vue'
import VueHcaptcha from "@hcaptcha/vue3-hcaptcha"
import OpenFormField from './OpenFormField.vue'
2024-01-16 15:00:22 +01:00
import {pendingSubmission} from "~/composables/forms/pendingSubmission.js"
import FormLogicPropertyResolver from "~/lib/forms/FormLogicPropertyResolver.js"
import {computed} from "vue"
import CachedDefaultTheme from "~/lib/forms/themes/CachedDefaultTheme.js"
2023-12-09 15:47:03 +01:00
export default {
name: 'OpenForm',
components: {draggable, OpenFormField, OpenFormButton, VueHcaptcha},
2023-12-09 15:47:03 +01:00
props: {
form: {
type: Object,
required: true
},
theme: {
type: Object, default: () => {
const theme = inject("theme", null)
if (theme) {
return theme.value
}
return CachedDefaultTheme.getInstance()
}
},
2023-12-09 15:47:03 +01:00
loading: {
type: Boolean,
required: true
},
showHidden: {
type: Boolean,
default: false
},
fields: {
type: Array,
required: true
},
defaultDataForm: {},
adminPreview: {type: Boolean, default: false}, // If used in FormEditorPreview
urlPrefillPreview: {type: Boolean, default: false}, // If used in UrlFormPrefill
darkMode: {
type: Boolean,
default: false
}
2023-12-09 15:47:03 +01:00
},
setup(props) {
2023-12-09 15:47:03 +01:00
const recordsStore = useRecordsStore()
const workingFormStore = useWorkingFormStore()
const dataForm = ref(useForm())
2023-12-09 15:47:03 +01:00
return {
dataForm,
2023-12-09 15:47:03 +01:00
recordsStore,
workingFormStore,
draggingNewBlock: computed(() => workingFormStore.draggingNewBlock),
pendingSubmission: pendingSubmission(props.form)
2023-12-09 15:47:03 +01:00
}
},
data() {
2023-12-09 15:47:03 +01:00
return {
currentFieldGroupIndex: 0,
/**
* Used to force refresh components by changing their keys
*/
isAutoSubmit: false,
}
},
computed: {
hCaptchaSiteKey() {
return useRuntimeConfig().public.hCaptchaSiteKey
},
2023-12-09 15:47:03 +01:00
/**
* Create field groups (or Page) using page breaks if any
*/
fieldGroups() {
2023-12-09 15:47:03 +01:00
if (!this.fields) return []
const groups = []
let currentGroup = []
this.fields.forEach((field) => {
if (field.type === 'nf-page-break' && this.isFieldHidden(field)) return
currentGroup.push(field)
if (field.type === 'nf-page-break') {
groups.push(currentGroup)
currentGroup = []
}
})
groups.push(currentGroup)
return groups
},
formProgress() {
const requiredFields = this.fields.filter(field => field.required)
if (requiredFields.length === 0) {
return 100
}
const completedFields = requiredFields.filter(field => ![null, undefined, ''].includes(this.dataFormValue[field.id]))
const progress = (completedFields.length / requiredFields.length) * 100
return Math.round(progress)
},
2023-12-09 15:47:03 +01:00
currentFields: {
get() {
2023-12-09 15:47:03 +01:00
return this.fieldGroups[this.currentFieldGroupIndex]
},
set(val) {
2023-12-09 15:47:03 +01:00
// On re-order from the form, set the new order
// Add the previous groups and next to val, and set the properties on working form
const newFields = []
this.fieldGroups.forEach((group, index) => {
if (index < this.currentFieldGroupIndex) {
newFields.push(...group)
} else if (index === this.currentFieldGroupIndex) {
newFields.push(...val)
} else {
newFields.push(...group)
}
})
// set the properties on working_form store
this.workingFormStore.setProperties(newFields)
}
},
/**
* Returns the page break block for the current group of fields
*/
currentFieldsPageBreak() {
2024-01-17 12:43:52 +01:00
// Last block from current group
2024-02-10 12:20:45 +01:00
if (!this.currentFields?.length) return null
2023-12-09 15:47:03 +01:00
const block = this.currentFields[this.currentFields.length - 1]
if (block && block.type === 'nf-page-break') return block
return null
},
previousFieldsPageBreak() {
2023-12-09 15:47:03 +01:00
if (this.currentFieldGroupIndex === 0) return null
const previousFields = this.fieldGroups[this.currentFieldGroupIndex - 1]
const block = previousFields[previousFields.length - 1]
if (block && block.type === 'nf-page-break') return block
return null
},
/**
* Returns true if we're on the last page
* @returns {boolean}xs
*/
isLastPage() {
2023-12-09 15:47:03 +01:00
return this.currentFieldGroupIndex === (this.fieldGroups.length - 1)
},
isPublicFormPage() {
return this.$route.name === 'forms-slug'
2023-12-09 15:47:03 +01:00
},
dataFormValue() {
2023-12-09 15:47:03 +01:00
// For get values instead of Id for select/multi select options
const data = this.dataForm.data()
const selectionFields = this.fields.filter((field) => {
return ['select', 'multi_select'].includes(field.type)
})
selectionFields.forEach((field) => {
if (data[field.id] !== undefined && data[field.id] !== null && Array.isArray(data[field.id])) {
data[field.id] = data[field.id].map(option_nfid => {
const tmpop = field[field.type].options.find((op) => {
return (op.id === option_nfid)
})
return (tmpop) ? tmpop.name : option_nfid
})
}
})
return data
}
},
watch: {
form: {
deep: true,
handler() {
2023-12-09 15:47:03 +01:00
this.initForm()
}
},
fields: {
deep: true,
handler() {
2023-12-09 15:47:03 +01:00
this.initForm()
}
},
dataFormValue: {
2023-12-09 15:47:03 +01:00
deep: true,
handler() {
if (this.isPublicFormPage && this.form && this.form.auto_save) {
this.pendingSubmission.set(this.dataFormValue)
2023-12-09 15:47:03 +01:00
}
}
}
},
mounted() {
2023-12-09 15:47:03 +01:00
this.initForm()
if (import.meta.client && window.location.href.includes('auto_submit=true')) {
2023-12-09 15:47:03 +01:00
this.isAutoSubmit = true
this.submitForm()
}
},
methods: {
submitForm() {
2023-12-09 15:47:03 +01:00
if (this.currentFieldGroupIndex !== this.fieldGroups.length - 1) {
return
}
if (this.form.use_captcha && import.meta.client) {
2023-12-09 15:47:03 +01:00
this.dataForm['h-captcha-response'] = document.getElementsByName('h-captcha-response')[0].value
this.$refs.hcaptcha.reset()
}
if (this.form.editable_submissions && this.form.submission_id) {
this.dataForm.submission_id = this.form.submission_id
}
this.$emit('submit', this.dataForm, this.onSubmissionFailure)
},
/**
* If more than one page, show first page with error
*/
onSubmissionFailure() {
2023-12-09 15:47:03 +01:00
this.isAutoSubmit = false
if (this.fieldGroups.length > 1) {
// Find first mistake and show page
let pageChanged = false
this.fieldGroups.forEach((group, groupIndex) => {
group.forEach((field) => {
if (pageChanged) return
if (!pageChanged && this.dataForm.errors.has(field.id)) {
this.currentFieldGroupIndex = groupIndex
pageChanged = true
}
})
})
}
// Scroll to error
if (import.meta.server) return
2023-12-09 15:47:03 +01:00
const elements = document.getElementsByClassName('has-error')
if (elements.length > 0) {
window.scroll({
top: window.scrollY + elements[0].getBoundingClientRect().top - 60,
behavior: 'smooth'
})
}
},
async getSubmissionData() {
2023-12-09 15:47:03 +01:00
if (!this.form || !this.form.editable_submissions || !this.form.submission_id) {
return null
}
await this.recordsStore.loadRecord(
opnFetch('/forms/' + this.form.slug + '/submissions/' + this.form.submission_id).then((data) => {
return {submission_id: this.form.submission_id, id: this.form.submission_id, ...data.data}
2023-12-09 15:47:03 +01:00
})
)
return this.recordsStore.getByKey(this.form.submission_id)
2023-12-09 15:47:03 +01:00
},
async initForm() {
if (this.defaultDataForm) {
this.dataForm = useForm(this.defaultDataForm)
return
}
2023-12-09 15:47:03 +01:00
if (this.isPublicFormPage && this.form.editable_submissions) {
if (useRoute().query?.submission_id) {
this.form.submission_id = useRoute().query?.submission_id
2023-12-09 15:47:03 +01:00
const data = await this.getSubmissionData()
if (data !== null && data) {
this.dataForm = useForm(data)
2023-12-09 15:47:03 +01:00
return
}
}
}
if (this.isPublicFormPage && this.form.auto_save) {
const pendingData = this.pendingSubmission.get()
2024-01-25 06:11:00 +01:00
if (pendingData !== null && pendingData && Object.keys(this.pendingSubmission.get()).length !== 0) {
2023-12-09 15:47:03 +01:00
this.fields.forEach((field) => {
if (field.type === 'date' && field.prefill_today === true) { // For Prefill with 'today'
pendingData[field.id] = new Date().toISOString()
2023-12-09 15:47:03 +01:00
}
})
this.dataForm = useForm(pendingData)
2023-12-09 15:47:03 +01:00
return
}
}
const formData = clonedeep(this.dataForm ? this.dataForm.data() : {})
let urlPrefill = null
if (this.isPublicFormPage) {
urlPrefill = new URLSearchParams(window.location.search)
}
this.fields.forEach((field) => {
if (field.type.startsWith('nf-')) {
return
}
if (urlPrefill && urlPrefill.has(field.id)) {
// Url prefills
if (field.type === 'checkbox') {
if (urlPrefill.get(field.id) === 'false' || urlPrefill.get(field.id) === '0') {
formData[field.id] = false
} else if (urlPrefill.get(field.id) === 'true' || urlPrefill.get(field.id) === '1') {
formData[field.id] = true
}
} else {
formData[field.id] = urlPrefill.get(field.id)
}
} else if (urlPrefill && urlPrefill.has(field.id + '[]')) {
// Array url prefills
formData[field.id] = urlPrefill.getAll(field.id + '[]')
} else if (field.type === 'date' && field.prefill_today === true) { // For Prefill with 'today'
formData[field.id] = new Date().toISOString()
2023-12-09 15:47:03 +01:00
} else { // Default prefill if any
formData[field.id] = field.prefill
}
})
this.dataForm = useForm(formData)
2023-12-09 15:47:03 +01:00
},
previousPage() {
2023-12-09 15:47:03 +01:00
this.currentFieldGroupIndex -= 1
window.scrollTo({top: 0, behavior: 'smooth'})
2023-12-09 15:47:03 +01:00
return false
},
nextPage() {
if (this.adminPreview || this.urlPrefillPreview) {
this.currentFieldGroupIndex += 1
window.scrollTo({ top: 0, behavior: 'smooth' })
return false
}
const fieldsToValidate = this.currentFields.map(f => f.id)
this.dataForm.busy = true
this.dataForm.validate('POST', '/forms/' + this.form.slug + '/answer', {}, fieldsToValidate)
.then((data) => {
this.currentFieldGroupIndex += 1
this.dataForm.busy = false
window.scrollTo({top: 0, behavior: 'smooth'})
}).catch(error => {
console.error(error)
if (error && error.data && error.data.message) {
useAlert().error(error.data.message)
}
this.dataForm.busy = false
})
return false
2023-12-09 15:47:03 +01:00
},
isFieldHidden(field) {
2023-12-09 15:47:03 +01:00
return (new FormLogicPropertyResolver(field, this.dataFormValue)).isHidden()
},
getTargetFieldIndex(currentFieldPageIndex){
2024-05-14 17:17:28 +02:00
let targetIndex = 0
if (this.currentFieldGroupIndex > 0) {
for (let i = 0; i < this.currentFieldGroupIndex; i++) {
2024-05-14 17:17:28 +02:00
targetIndex += this.fieldGroups[i].length
}
2024-05-14 17:17:28 +02:00
targetIndex += currentFieldPageIndex
} else {
targetIndex = currentFieldPageIndex
}
return targetIndex
2023-12-09 15:47:03 +01:00
},
handleDragDropped(data) {
if (data.added) {
const targetIndex = this.getTargetFieldIndex(data.added.newIndex)
this.workingFormStore.addBlock(data.added.element, targetIndex)
}
if (data.moved) {
const oldTargetIndex = this.getTargetFieldIndex(data.moved.oldIndex)
const newTargetIndex = this.getTargetFieldIndex(data.moved.newIndex)
this.workingFormStore.moveField(oldTargetIndex, newTargetIndex)
}
2023-12-09 15:47:03 +01:00
}
}
}
</script>
<style lang='scss' scoped>
.ghost-item {
@apply bg-blue-100 dark:bg-blue-900 rounded-md;
}
</style>