-Poter entrare nel login anche con l'username Telegram !
- Se clicchi sulla foto, mi apre il profilo anzichè l'invio dei RIS - ++ Filtro sulle ricerche: Scegliere un Circuito specifico. - Nella lista iscritti compaiono anche i cancellati... - n "Attività" si vede tutto allargato, non sta nella dimensione della pagina. - Nelle notifiche della campanellina non si vede più il titolo... (è vuoto). - Non funziona il Filtro per Settore (nella Home sugli Eventi) - Filtri avanzati da mostrare solo se clicco sul bottone. - I menu in basso non funzionano ! - Nel menu "Iscritti" del circuito, non compare più la ricerca ! Riattivarla - Opzione di mandare una email quando uno si registra al Circuito - ++ Opzione per il Circuito: Chiedi di entrare agli admin (e non in automatico).
This commit is contained in:
@@ -9,6 +9,7 @@ import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyGroup } from '@/components/CMyGroup'
|
||||
import { CMyCircuit } from '@/components/CMyCircuit'
|
||||
import { CNotifAtTop } from '@src/components/CNotifAtTop'
|
||||
import { CMyActivities } from '@src/components/CMyActivities'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CContactUser } from '@/components/CContactUser'
|
||||
import { CTimeAgo } from '@/components/CTimeAgo'
|
||||
@@ -37,7 +38,7 @@ export default defineComponent({
|
||||
components: {
|
||||
CProfile, CTitleBanner, CMyFieldDb, CSkill, CDateTime, CCopyBtn, CUserNonVerif, CMyFieldRec, CMyUser,
|
||||
CMyGroup, CLabel, CMyCircuit, CSendCoins, CNotifAtTop,
|
||||
CCheckIfIsLogged, CTimeAgo, CContactUser
|
||||
CCheckIfIsLogged, CTimeAgo, CContactUser, CMyActivities,
|
||||
},
|
||||
props: {},
|
||||
setup() {
|
||||
@@ -52,6 +53,7 @@ export default defineComponent({
|
||||
const { getRefLink } = MixinUsers()
|
||||
|
||||
const animation = ref('fade')
|
||||
const spinner_visible = ref(false)
|
||||
const usersList = ref({ show: false, title: '', list: [] })
|
||||
|
||||
const username = computed(() => $route.params.username ? $route.params.username.toString() : userStore.my.username)
|
||||
@@ -82,6 +84,8 @@ export default defineComponent({
|
||||
|
||||
const listgroupsfiltered = ref(<IMyGroup[]>[])
|
||||
const listcircuitsfiltered = ref(<IMyCircuit[]>[])
|
||||
|
||||
const tab = ref('attivita')
|
||||
|
||||
function profile() {
|
||||
return userStore.my.profile
|
||||
@@ -94,7 +98,12 @@ export default defineComponent({
|
||||
async function loadProfile() {
|
||||
console.log('loadProfile...', username.value)
|
||||
try {
|
||||
|
||||
caricato.value = false
|
||||
|
||||
if (sendRIS.value)
|
||||
spinner_visible.value = true
|
||||
|
||||
// Carica il profilo di quest'utente
|
||||
if (username.value) {
|
||||
await userStore.loadUserProfile({ username: username.value, idnotif: idnotif.value }).then((ris) => {
|
||||
@@ -183,6 +192,10 @@ export default defineComponent({
|
||||
return ''
|
||||
}
|
||||
|
||||
function showed() {
|
||||
spinner_visible.value = false
|
||||
}
|
||||
|
||||
return {
|
||||
username,
|
||||
getlinkpage,
|
||||
@@ -222,6 +235,9 @@ export default defineComponent({
|
||||
gotoPage,
|
||||
sendRIS,
|
||||
causalDest,
|
||||
spinner_visible,
|
||||
showed,
|
||||
tab,
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user