import { CMyFieldDb } from '@/components/CMyFieldDb' import { CMyFieldRec } from '@/components/CMyFieldRec' import { CTitleBanner } from '@/components/CTitleBanner' import { CProfile } from '@/components/CProfile' import { CLabel } from '@/components/CLabel' import { CCopyBtn } from '@/components/CCopyBtn' import { CSkill } from '@/components/CSkill' import { CDateTime } from '@/components/CDateTime' import { CMyGroup } from '@/components/CMyGroup' import { CMyCircuit } from '@/components/CMyCircuit' import { CNotifAtTop } from '@src/components/CNotifAtTop' import { CSendCoins } from '@/components/CSendCoins' import { CContactUser } from '@/components/CContactUser' import { CTimeAgo } from '@/components/CTimeAgo' import { CMyUser } from '@/components/CMyUser' import { CUserNonVerif } from '@/components/CUserNonVerif' import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged' import { tools } from '@store/Modules/tools' import { computed, defineComponent, onMounted, ref, watch } from 'vue' import { useUserStore } from '@store/UserStore' import { useRoute, useRouter } from 'vue-router' import { useGlobalStore } from '@store/globalStore' import { useI18n } from '@/boot/i18n' import { toolsext } from '@store/Modules/toolsext' import { useQuasar } from 'quasar' import { costanti } from '@costanti' import { ICircuit, IFriends, IMyCircuit, IMyGroup, IUserFields } from 'model' import { shared_consts } from '@/common/shared_vuejs' import { static_data } from '@/db/static_data' import { fieldsTable } from '@store/Modules/fieldsTable' import { useNotifStore } from '@store/NotifStore' import MixinUsers from '@/mixins/mixin-users' export default defineComponent({ name: 'myprofile', components: { CProfile, CTitleBanner, CMyFieldDb, CSkill, CDateTime, CCopyBtn, CUserNonVerif, CMyFieldRec, CMyUser, CMyGroup, CLabel, CMyCircuit, CSendCoins, CNotifAtTop, CCheckIfIsLogged, CTimeAgo, CContactUser }, props: {}, setup() { const userStore = useUserStore() const globalStore = useGlobalStore() const $route = useRoute() const $q = useQuasar() const { t } = useI18n() const site = ref(globalStore.site) const { getRefLink } = MixinUsers() const animation = ref('fade') const quantiHandShake = ref('') const quanteHandShakeInCommon = ref('') const usersList = ref({show: false, title: '', list: []}) const username = computed(() => $route.params.username ? $route.params.username.toString() : userStore.my.username) const idnotif = computed(() => $route.query.idnotif ? $route.query.idnotif.toString() : '') const isDebugOn = computed(() => tools.isDebugOn()) const filtroutente = ref([]) const showPic = ref(false) const caricato = ref(false) const showsendCoinTo = ref(false) const showinghand = ref(false) const myuser = ref(null) const handshake_inCommon = ref([]) const actualcard = ref('mygoods') const notifStore = useNotifStore() const mycards = computed(() => { return costanti.MAINCARDS.filter((rec: any) => rec.table) }) const listgroupsfiltered = ref([]) const listcircuitsfiltered = ref([]) function profile() { return userStore.my.profile } function myusername() { return userStore.my.username } async function loadProfile() { console.log('loadProfile...', username.value) try { caricato.value = false // Carica il profilo di quest'utente if (username.value) { await userStore.loadUserProfile({ username: username.value, idnotif: idnotif.value }).then((ris) => { console.log('loadUserProfile = ', ris) myuser.value = ris if (myuser.value) { filtroutente.value = [{ userId: myuser.value._id }] notifStore.setAsRead(idnotif.value) quantiHandShake.value = (myuser.value.profile.handshake ? myuser.value.profile.handshake.length : 0) + ' ' + t('handshake.strettedimano') handshake_inCommon.value = userStore.getMyHandshakeInCommon(myuser.value) quanteHandShakeInCommon.value = (handshake_inCommon.value ? handshake_inCommon.value.length : 0) + ' ' + t('handshake.incommon') try { listgroupsfiltered.value = globalStore.mygroups.filter((grp: IMyGroup) => myuser.value!.profile.mygroups.findIndex((rec: IMyGroup) => rec.groupname === grp.groupname) >= 0) } catch (e) { listgroupsfiltered.value = [] } try { listcircuitsfiltered.value = myuser.value.profile.mycircuits } catch (e) { listcircuitsfiltered.value = [] } } }) caricato.value = true } }catch (e) { console.error('ERR loadProfile', e) } } watch(() => username.value, (to: any, from: any) => { loadProfile() }) watch(() => actualcard.value, (to: any, from: any) => { loadProfile() }) function mounted() { loadProfile() } function getImgUser() { if (myuser.value) return userStore.getImgByProfile(myuser.value) else return '' } function checkifShow(col: string) { //++Todo: checkifShow Permessi ! return true } function isMyRecord(username: string) { return username === userStore.my.username } onMounted(mounted) return { username, profile, tools, toolsext, costanti, myuser, shared_consts, getImgUser, checkifShow, filtroutente, showPic, myusername, userStore, t, static_data, animation, isMyRecord, getRefLink, fieldsTable, mycards, actualcard, caricato, listgroupsfiltered, idnotif, showsendCoinTo, site, listcircuitsfiltered, isDebugOn, showinghand, quantiHandShake, quanteHandShakeInCommon, usersList, handshake_inCommon, } } })