opnform/resources/js/pages/forms/create-guest.vue

146 lines
3.8 KiB
Vue
Raw Normal View History

<template>
<div class="flex flex-wrap flex-col">
<transition v-if="stateReady" name="fade" mode="out-in">
<div key="2">
2023-10-14 16:24:44 +00:00
<create-form-base-modal :show="showInitialFormModal" @form-generated="formGenerated"
@close="showInitialFormModal=false"
/>
<form-editor v-if="!workspacesLoading" ref="editor"
class="w-full flex flex-grow"
2023-09-05 14:25:33 +00:00
:error="error"
2023-10-14 16:24:44 +00:00
:is-guest="isGuest"
@openRegister="openRegister"
/>
<div v-else class="text-center mt-4 py-6">
2023-10-14 16:24:44 +00:00
<loader class="h-6 w-6 text-nt-blue mx-auto" />
</div>
</div>
</transition>
2023-10-14 16:24:44 +00:00
<quick-register :show-register-modal="registerModal" @close="registerModal=false" @reopen="registerModal=true"
@afterLogin="afterLogin"
/>
</div>
</template>
<script>
import store from '~/store'
import Form from 'vform'
2023-10-14 16:24:44 +00:00
import { mapState, mapActions } from 'vuex'
import QuickRegister from '../auth/components/QuickRegister.vue'
2023-10-14 16:24:44 +00:00
import initForm from '../../mixins/form_editor/initForm.js'
import SeoMeta from '../../mixins/seo-meta.js'
2023-10-14 16:24:44 +00:00
import CreateFormBaseModal from '../../components/pages/forms/create/CreateFormBaseModal.vue'
const loadTemplates = function () {
store.commit('open/templates/startLoading')
store.dispatch('open/templates/loadIfEmpty').then(() => {
store.commit('open/templates/stopLoading')
})
}
export default {
name: 'CreateFormGuest',
components: {
QuickRegister, CreateFormBaseModal
},
2023-10-14 16:24:44 +00:00
mixins: [initForm, SeoMeta],
2023-10-14 16:24:44 +00:00
beforeRouteEnter (to, from, next) {
loadTemplates()
next()
},
2023-10-14 16:24:44 +00:00
middleware: 'guest',
data () {
return {
metaTitle: 'Create a new Form as Guest',
stateReady: false,
loading: false,
error: '',
registerModal: false,
isGuest: true,
showInitialFormModal: false
}
},
computed: {
...mapState({
workspaces: state => state['open/workspaces'].content,
2023-10-14 16:24:44 +00:00
workspacesLoading: state => state['open/workspaces'].loading
}),
form: {
2023-10-14 16:24:44 +00:00
get () {
return this.$store.state['open/working_form'].content
},
/* We add a setter */
2023-10-14 16:24:44 +00:00
set (value) {
this.$store.commit('open/working_form/set', value)
}
},
2023-10-14 16:24:44 +00:00
workspace () {
return this.$store.getters['open/workspaces/getCurrent']()
2023-10-14 16:24:44 +00:00
}
},
watch: {
2023-10-14 16:24:44 +00:00
workspace () {
if (this.workspace) {
this.form.workspace_id = this.workspace.id
}
}
},
2023-10-14 16:24:44 +00:00
mounted () {
// Set as guest user
const guestWorkspace = {
id: null,
2023-10-14 16:24:44 +00:00
name: 'Guest Workspace',
is_enterprise: false,
is_pro: false
}
this.$store.commit('open/workspaces/set', [guestWorkspace])
this.$store.commit('open/workspaces/setCurrentId', guestWorkspace.id)
this.initForm()
if (this.$route.query.template !== undefined && this.$route.query.template) {
const template = this.$store.getters['open/templates/getBySlug'](this.$route.query.template)
if (template && template.structure) {
2023-10-14 16:24:44 +00:00
this.form = new Form({ ...this.form.data(), ...template.structure })
}
} else {
// No template loaded, ask how to start
this.showInitialFormModal = true
}
this.closeAlert()
this.stateReady = true
},
2023-10-14 16:24:44 +00:00
created () {},
unmounted () {},
methods: {
...mapActions({
loadWorkspaces: 'open/workspaces/load'
}),
2023-10-14 16:24:44 +00:00
openRegister () {
this.registerModal = true
},
2023-10-14 16:24:44 +00:00
afterLogin () {
this.registerModal = false
this.isGuest = false
this.loadWorkspaces()
setTimeout(() => {
2023-10-08 16:49:33 +00:00
if (this.$refs.editor) {
this.$refs.editor.saveFormCreate()
}
}, 500)
},
2023-10-14 16:24:44 +00:00
formGenerated (form) {
this.form = new Form({ ...this.form.data(), ...form })
}
}
}
</script>