Files
myprojplanet_vite/src/components/CStatusReg/CStatusReg.ts
Surya Paolo 404194b873 - risolto problema della non attesa della PWA durante la chiamata a Node.js.
- risolto problema dell'ambiente in Locale HTTPS certificato installato aggiornato.
2025-03-13 12:05:10 +01:00

240 lines
6.3 KiB
TypeScript
Executable File

import {
computed,
defineComponent, onBeforeMount, onBeforeUnmount, onMounted, ref, toRef, toRefs, watch,
} from 'vue'
import { INotData } from '../../model/index'
import MixinBase from '@src/mixins/mixin-base'
import { CTitleBanner } from '@src/components/CTitleBanner'
import { CTimeAgo } from '@src/components/CTimeAgo'
import { CCardState } from '../CCardState'
import { CMyFieldRec } from '../CMyFieldRec'
import { CElemStat } from '../CElemStat'
import { CCardStat } from '../CCardStat'
import { CLineChart } from '@src/components/CLineChart'
// import { CListNationality } from '@components'
// import { CListNationality } from '@src/components/CListNationality'
// import { CGeoChart } from '@src/components/CGeoChart'
import { tools } from '@tools'
import { costanti } from '@costanti'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { useI18n } from 'vue-i18n'
import { useQuasar } from 'quasar'
import { useRouter } from 'vue-router'
export default defineComponent({
name: 'CStatusReg',
props: {},
components: {
CTitleBanner, CElemStat,
CCardState, CCardStat, CLineChart, CMyFieldRec, CTimeAgo
},
setup(props, { attrs, slots, emit }) {
const { t } = useI18n()
const $q = useQuasar()
const globalStore = useGlobalStore()
const userStore = useUserStore()
// const NUMSEC_TO_POLLING = ref(60)
const MAXNUM_POLLING = ref(1000)
const myloadingload = ref(false)
const eseguipolling = ref(false)
const polling = ref(<any>null)
// const numpolled = ref(0)
const mytab = ref('reg')
const $router = useRouter()
const datastat = ref(<any>{
num_reg: 0,
num_reg_today: 0,
online_today: 0,
activeusers: 0,
num_passeggeri: 0,
num_imbarcati: 0,
num_teleg_attivo: 0,
num_autorizzare: 0,
num_autorizzati: 0,
email_non_verif: 0,
num_teleg_pending: 0,
lastsreg: [],
lastsonline: [],
lastssharedlink: [],
diffusorilist: [],
strettelist: [],
receiveRislist: [],
receiveRislistgroup: [],
checkuser: { verified_email: false },
num_transaz_tot: 0,
tot_RIS_transati: 0,
num_circuiti_attivi: 0,
num_circuiti: 0,
num_annunci: 0,
last_transactions: [],
})
const visustat = computed(() => {
return datastat.value.num_reg! > 0
})
const telegnonattivi = computed(() => {
return datastat.value.num_reg! - datastat.value.num_teleg_attivo!
})
const emailnonverif = computed(() => {
return datastat.value.email_non_verif
})
const lastsreg = computed(() => {
return datastat.value.lastsreg
})
const lastsonline = computed(() => {
return datastat.value.lastsonline
})
const lastssharedlink = computed(() => {
return datastat.value.lastssharedlink
})
const diffusorilist = computed(() => {
return datastat.value.diffusorilist
})
const strettelist = computed(() => {
return datastat.value.strettelist
})
watch(() => $q.appVisible, (value: any, oldval: any) => {
// console.log('visible', value)
if (value && !oldval) {
// console.log('Ora è visibile !')
riaggiorna()
}
if (!value && oldval) {
// console.log('Ora è invisibile !')
beforeDestroy()
}
})
function checkifpolling() {
if (userStore.my.profile) {
//if (!tools.isUserOk() && tools.appid() === tools.IDAPP_RISO)
// NUMSEC_TO_POLLING.value = 10
}
if (eseguipolling.value) {
beforeDestroy()
/*if (numpolled.value > 200) {
NUMSEC_TO_POLLING.value = 60 * 5
}
if (numpolled.value < MAXNUM_POLLING.value) {
if (!polling.value) {
polling.value = setInterval(() => {
load()
numpolled.value++
}, NUMSEC_TO_POLLING.value * 1000)
}
}*/
}
}
function beforeDestroy() {
if (polling.value) {
clearInterval(polling.value)
polling.value = null
}
}
function created() {
if (tools.isManager()) {
MAXNUM_POLLING.value = 10000
}
load()
}
async function load() {
// console.log('load')
myloadingload.value = true
datastat.value = await globalStore.getStatSite()
eseguipolling.value = true
myloadingload.value = false
if (userStore.my) {
if (datastat.value.checkuser) {
if (datastat.value.checkuser.verified_email && !userStore.my.verified_email) {
userStore.my.verified_email = true
riaggiorna()
}
if (userStore.my.profile && datastat.value.checkuser.profile) {
if ((userStore.my.profile.teleg_id! <= 0 && datastat.value.checkuser.profile.teleg_id > 0) ||
(userStore.my.profile.teleg_id! !== datastat.value.checkuser.profile.teleg_id!)) {
userStore.my.profile.teleg_id = datastat.value.checkuser.profile.teleg_id
riaggiorna()
}
if ((userStore.my.profile.teleg_checkcode! <= 0 && datastat.value.checkuser.profile.teleg_checkcode > 0) ||
(userStore.my.profile.teleg_checkcode !== datastat.value.checkuser.profile.teleg_checkcode)) {
userStore.my.profile.teleg_checkcode = datastat.value.checkuser.profile.teleg_checkcode
riaggiorna()
}
}
}
}
checkifpolling()
}
function riaggiorna() {
// clearInterval(polling)
// polling = null
checkifpolling()
}
function calcperc(val1: number, valmax: number) {
if (valmax > 0)
return (val1 / valmax * 100)
else
return 0
}
function getImgUserByUsername(username: string) {
return userStore.getImgUserByUsername(username)
}
function gotoPage(link: string) {
$router.push(link)
}
created()
onBeforeUnmount(beforeDestroy)
return {
calcperc,
riaggiorna,
visustat,
telegnonattivi,
emailnonverif,
lastsreg,
lastsonline,
lastssharedlink,
diffusorilist,
strettelist,
datastat,
tools,
costanti,
mytab,
getImgUserByUsername,
gotoPage,
userStore,
t,
}
}
})