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

105 lines
2.2 KiB
TypeScript
Raw Normal View History

2025-03-01 14:14:43 +01:00
import { tools } from '@tools'
import { computed, defineComponent, onMounted, reactive, ref, watch } from 'vue'
import { useQuasar } from 'quasar'
2025-03-01 14:14:43 +01:00
import { useI18n } from 'vue-i18n'
import { DefaultProfile, useUserStore } from '@store/UserStore'
import { useRoute, useRouter } from 'vue-router'
2025-03-01 14:14:43 +01:00
import { static_data } from '@src/db/static_data'
import { useGlobalStore } from '@store/globalStore'
export default defineComponent({
name: 'CRegistration',
emits: ['regEventEmail'],
2025-03-01 14:14:43 +01:00
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)
2025-03-01 14:14:43 +01:00
const slide = ref('start')
function clickToRegister() {
//if (site.value.confpages.enableRegByBot) {
2025-03-01 14:14:43 +01:00
//$router.push('/bot')
//} else {
2025-03-01 14:14:43 +01:00
$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() {
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
}
}
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,
}
},
})