Files
myprojplanet_vite/src/components/CRegistration/CRegistration.ts

88 lines
1.8 KiB
TypeScript
Raw Normal View History

import { tools } from '@store/Modules/tools'
import { computed, defineComponent, onMounted, reactive, ref, watch } from 'vue'
import { useQuasar } from 'quasar'
import { useI18n } from '@/boot/i18n'
import { DefaultProfile, useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { static_data } from '@/db/static_data'
import { useGlobalStore } from '@store/globalStore'
export default defineComponent({
name: 'CRegistration',
emits: ['regEventEmail'],
components: { },
props: {
invited: {
type: String,
required: false,
default: '',
},
regexpire: {
type: String,
required: false,
default: '',
},
2022-12-17 14:12:04 +01:00
signupform: {
type: Boolean,
required: false,
default: false,
},
},
setup(props, { emit }) {
const $q = useQuasar()
const { t } = useI18n()
const userStore = useUserStore()
const globalStore = useGlobalStore()
const $route = useRoute()
const $router = useRouter()
const site = ref(globalStore.site)
const chooseReg = ref(false)
const noInvited = ref(false)
const start = ref(false)
const slide= ref('start')
function clickToRegister() {
if (site.value.confpages.enableRegByBot) {
$router.push('/bot')
} else {
2023-02-20 02:20:00 +01:00
$router.push('/registrati')
}
}
function mounted() {
if (props.invited) {
start.value = true
chooseReg.value = true
slide.value = 'second'
}
}
function regEventEmail() {
2022-12-17 14:12:04 +01:00
if (props.signupform) {
emit('regEventEmail', props.invited)
} else {
2023-02-20 02:20:00 +01:00
$router.push('/registrati')
2022-12-17 14:12:04 +01:00
}
}
onMounted(mounted)
return {
tools,
site,
clickToRegister,
chooseReg,
start,
noInvited,
slide,
regEventEmail,
}
},
})