Files
myprojplanet_vite/src/components/CRegistration/CRegistration.ts
Surya Paolo bc960d38a1 PASSAGGIO A VITE !
AGG. 1.1.23
2025-03-01 14:14:43 +01:00

105 lines
2.2 KiB
TypeScript
Executable File

import { tools } from '@tools'
import { computed, defineComponent, onMounted, reactive, ref, watch } from 'vue'
import { useQuasar } from 'quasar'
import { useI18n } from 'vue-i18n'
import { DefaultProfile, useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
import { static_data } from '@src/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: '',
},
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 {
$router.push('/registrati/' + tools.getInvitante())
//}
}
function mounted() {
const invitante = tools.getInvitante()
console.log('invitante', invitante)
if (props.invited) {
start.value = true
chooseReg.value = true
slide.value = 'second'
}
}
function regEventEmail() {
if (props.signupform) {
emit('regEventEmail', props.invited)
} else {
$router.push('/registrati')
}
}
function buttRegistrati() {
const invitante = tools.getCookie(tools.APORTADOR_SOLIDARIO)
if (invitante) {
start.value = true
slide.value = 'second';
noInvited.value = false;
chooseReg.value = true;
} else {
start.value = true
}
}
onMounted(mounted)
return {
tools,
site,
clickToRegister,
chooseReg,
start,
noInvited,
slide,
regEventEmail,
buttRegistrati,
}
},
})