Corretto il mio account che doveva confermare in automatico... non lo faceva... "Riregistrarsi se l'invitante non ha ancora confermato l'invito. Annullo la richiesta precedente. (inviando un msg di annullamento. (Si è già registrato con un alto invito.)" CMyEditor: non posso andare in edit sul HTML (nella table) Aggiornare il msg di benvenuto ! (prendere da msgtemplate) Dal Profilo: è possibile inviarsi il messaggio da condividere agli Amici Visualizzare la data d'inserimento dell'annuncio e l'ultima modifica fatta Link alla pagina di un Evento o Bene o Servizio ! Se aggiornamento: mettere messaggio che dice di chiudere e riaprire per aggiornare. Quando un utente chiede di entrare nel Gruppo, mettere l'abilitazione anche su Telegram. (e correggere il msg)
106 lines
2.5 KiB
TypeScript
106 lines
2.5 KiB
TypeScript
import { computed, defineComponent, onMounted, PropType, ref, watch } from 'vue'
|
|
|
|
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
|
import { CTitleBanner } from '@/components/CTitleBanner'
|
|
import { CProfile } from '@/components/CProfile'
|
|
import { CDateTime } from '@/components/CDateTime'
|
|
import { CMyPage } from '@/components/CMyPage'
|
|
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
|
import { tools } from '@store/Modules/tools'
|
|
import { useUserStore } from '@store/UserStore'
|
|
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 { IColGridTable, IImgGallery, IUserFields } from 'model'
|
|
import { shared_consts } from '@/common/shared_vuejs'
|
|
import { colCitys, fieldsTable } from '@store/Modules/fieldsTable'
|
|
|
|
export default defineComponent({
|
|
name: 'CMyCardPopup',
|
|
components: { CProfile, CTitleBanner, CMyFieldDb, CDateTime, CMyPage, CMyFieldRec },
|
|
props: {
|
|
table: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
prop_myrec: {
|
|
type: Object as PropType<any>,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
idRec: {
|
|
type: Number,
|
|
required: false,
|
|
default: 0
|
|
},
|
|
nopopup: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: false
|
|
},
|
|
},
|
|
setup(props) {
|
|
|
|
const userStore = useUserStore()
|
|
const globalStore = useGlobalStore()
|
|
const $q = useQuasar()
|
|
const { t } = useI18n()
|
|
|
|
const showPic = ref(false)
|
|
|
|
const myrec = ref(<any>{})
|
|
const col = ref(<IColGridTable>{})
|
|
|
|
function profile() {
|
|
return userStore.my.profile
|
|
}
|
|
|
|
function load() {
|
|
// Carica il profilo di quest'utente
|
|
if (props.idRec > 0) {
|
|
userStore.loadGeneric(props.table, props.idRec).then((ris) => {
|
|
myrec.value = ris
|
|
})
|
|
|
|
} else {
|
|
myrec.value = props.prop_myrec
|
|
}
|
|
|
|
col.value = fieldsTable.getArrColsByTable(props.table)
|
|
}
|
|
|
|
watch(() => props.idRec, (to: any, from: any) => {
|
|
load()
|
|
})
|
|
|
|
function mounted() {
|
|
load()
|
|
}
|
|
|
|
function condividipag() {
|
|
return tools.copyStringToClipboard($q, self.location.host + tools.getPathByTable(props.table, myrec.value._id), true)
|
|
}
|
|
|
|
onMounted(mounted)
|
|
|
|
return {
|
|
profile,
|
|
tools,
|
|
costanti,
|
|
myrec,
|
|
shared_consts,
|
|
globalStore,
|
|
showPic,
|
|
userStore,
|
|
t,
|
|
fieldsTable,
|
|
colCitys,
|
|
toolsext,
|
|
col,
|
|
condividipag,
|
|
}
|
|
}
|
|
})
|