2022-09-20 19:59:52 +00:00
|
|
|
<template>
|
|
|
|
<div class="w-full flex flex-col">
|
|
|
|
<form-editor v-if="pageLoaded" ref="editor"
|
|
|
|
:style="{
|
|
|
|
'max-height': editorMaxHeight + 'px'
|
|
|
|
}"
|
2022-10-26 14:44:47 +00:00
|
|
|
:isEdit="true"
|
2022-09-20 19:59:52 +00:00
|
|
|
@mounted="onResize"
|
2023-05-21 17:34:47 +00:00
|
|
|
@on-save="formInitialHash=null"
|
2022-09-20 19:59:52 +00:00
|
|
|
/>
|
|
|
|
<div v-else-if="!loading && error" class="mt-4 rounded-lg max-w-xl mx-auto p-6 bg-red-100 text-red-500">
|
|
|
|
{{ error }}
|
|
|
|
</div>
|
|
|
|
<div v-else class="text-center mt-4 py-6">
|
|
|
|
<loader class="h-6 w-6 text-nt-blue mx-auto" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import axios from 'axios'
|
|
|
|
import store from '~/store'
|
2023-01-21 11:57:37 +00:00
|
|
|
import Breadcrumb from '../../components/common/Breadcrumb.vue'
|
2022-09-20 19:59:52 +00:00
|
|
|
import Form from 'vform'
|
|
|
|
import { mapState } from 'vuex'
|
2023-01-21 11:57:37 +00:00
|
|
|
import SeoMeta from '../../mixins/seo-meta.js'
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
const loadForms = function () {
|
|
|
|
store.commit('open/forms/startLoading')
|
|
|
|
store.dispatch('open/workspaces/loadIfEmpty').then(() => {
|
|
|
|
store.dispatch('open/forms/load', store.state['open/workspaces'].currentId)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'EditForm',
|
2022-12-14 09:27:21 +00:00
|
|
|
components: { Breadcrumb },
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
beforeRouteEnter (to, from, next) {
|
|
|
|
if (!store.getters['open/forms/getBySlug'](to.params.slug)) {
|
|
|
|
loadForms()
|
|
|
|
}
|
2023-01-04 12:49:10 +00:00
|
|
|
store.commit('open/working_form/set', null) // Reset old working form
|
2022-09-20 19:59:52 +00:00
|
|
|
next()
|
|
|
|
},
|
2023-05-21 17:34:47 +00:00
|
|
|
|
|
|
|
beforeRouteLeave (to, from, next) {
|
|
|
|
if (this.isDirty()) {
|
|
|
|
return this.alertConfirm('Changes you made may not be saved. Are you sure want to leave?', () => {
|
|
|
|
window.onbeforeunload = null
|
|
|
|
next()
|
|
|
|
}, () => {})
|
|
|
|
}
|
|
|
|
next()
|
|
|
|
},
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
middleware: 'auth',
|
2022-12-22 10:55:17 +00:00
|
|
|
mixins: [SeoMeta],
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
loading: false,
|
|
|
|
error: null,
|
2023-05-21 17:34:47 +00:00
|
|
|
editorMaxHeight: 500,
|
|
|
|
formInitialHash: null
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
|
|
|
formsLoading: state => state['open/forms'].loading
|
|
|
|
}),
|
|
|
|
updatedForm: {
|
|
|
|
get () {
|
|
|
|
return this.$store.state['open/working_form'].content
|
|
|
|
},
|
|
|
|
/* We add a setter */
|
|
|
|
set (value) {
|
|
|
|
this.$store.commit('open/working_form/set', value)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
form () {
|
|
|
|
return this.$store.getters['open/forms/getBySlug'](this.$route.params.slug)
|
|
|
|
},
|
|
|
|
pageLoaded () {
|
|
|
|
return !this.loading && this.updatedForm !== null
|
2022-12-22 10:55:17 +00:00
|
|
|
},
|
|
|
|
metaTitle () {
|
|
|
|
return 'Edit ' + (this.form ? this.form.title : 'Your Form')
|
|
|
|
},
|
2022-09-20 19:59:52 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
form () {
|
|
|
|
this.updatedForm = new Form(this.form)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created () {
|
|
|
|
window.addEventListener('resize', this.onResize)
|
|
|
|
},
|
|
|
|
destroyed () {
|
|
|
|
window.removeEventListener('resize', this.onResize)
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted () {
|
2023-05-21 17:34:47 +00:00
|
|
|
window.onbeforeunload = () => {
|
|
|
|
if (this.isDirty()) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
this.closeAlert()
|
|
|
|
if (!this.form) {
|
|
|
|
loadForms()
|
|
|
|
} else {
|
|
|
|
this.updatedForm = new Form(this.form)
|
2023-05-21 17:34:47 +00:00
|
|
|
this.formInitialHash = this.hashString(JSON.stringify(this.updatedForm.data()))
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
},
|
2022-12-22 10:55:17 +00:00
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
methods: {
|
|
|
|
/**
|
|
|
|
* Compute max height of editor
|
|
|
|
*/
|
|
|
|
onResize () {
|
|
|
|
if (this.$refs.editor) {
|
|
|
|
this.editorMaxHeight = Math.max(500, window.innerHeight - this.$refs.editor.$el.offsetTop)
|
|
|
|
}
|
2023-05-21 17:34:47 +00:00
|
|
|
},
|
|
|
|
isDirty () {
|
|
|
|
return !this.loading && this.formInitialHash && this.formInitialHash !== this.hashString(JSON.stringify(this.updatedForm.data()))
|
|
|
|
},
|
|
|
|
hashString (str, seed = 0) {
|
|
|
|
let h1 = 0xdeadbeef ^ seed
|
|
|
|
let h2 = 0x41c6ce57 ^ seed
|
|
|
|
for (let i = 0, ch; i < str.length; i++) {
|
|
|
|
ch = str.charCodeAt(i)
|
|
|
|
h1 = Math.imul(h1 ^ ch, 2654435761)
|
|
|
|
h2 = Math.imul(h2 ^ ch, 1597334677)
|
|
|
|
}
|
|
|
|
h1 = Math.imul(h1 ^ (h1 >>> 16), 2246822507) ^ Math.imul(h2 ^ (h2 >>> 13), 3266489909)
|
|
|
|
h2 = Math.imul(h2 ^ (h2 >>> 16), 2246822507) ^ Math.imul(h1 ^ (h1 >>> 13), 3266489909)
|
|
|
|
return 4294967296 * (2097151 & h2) + (h1 >>> 0)
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|