Files
salvato.newfreeplanet/src/components/CMyCircuits/CMyCircuits.ts

236 lines
6.0 KiB
TypeScript
Raw Normal View History

2022-08-26 03:32:50 +02:00
import { CMyCircuit } from '@/components/CMyCircuit'
import { computed, defineComponent, onMounted, PropType, ref, toRef, watch } from 'vue'
2022-08-26 03:32:50 +02:00
import { useUserStore } from '@store/UserStore'
import { useGlobalStore } from '@store/globalStore'
2022-08-26 03:32:50 +02:00
import { useCircuitStore } from '@store/CircuitStore'
import { useI18n } from '@/boot/i18n'
import { useQuasar } from 'quasar'
import { costanti } from '@costanti'
import { ICircuit, ISearchList, IUserFields } from 'model'
import { shared_consts } from '@/common/shared_vuejs'
import { tools } from '@store/Modules/tools'
import { CUserNonVerif } from '@/components/CUserNonVerif'
import { CTitleBanner } from '@/components/CTitleBanner'
import { CMovements } from '@/components/CMovements'
import { CSendRISTo } from '@/components/CSendRISTo'
2022-08-26 03:32:50 +02:00
export default defineComponent({
name: 'CMyCircuits',
components: { CMyCircuit, CUserNonVerif, CTitleBanner, CMovements, CSendRISTo },
2022-08-26 03:32:50 +02:00
emits: ['update:modelValue'],
props: {
modelValue: {
type: Number,
required: false,
default: 0,
},
finder: {
type: Boolean,
required: true,
},
showfinder: {
type: Boolean,
required: false,
default: true,
},
2022-12-17 14:12:04 +01:00
showBarSelection: {
type: Boolean,
required: false,
default: true,
},
2022-08-26 03:32:50 +02:00
circuit: {
type: Object as PropType<ICircuit | null>,
required: false,
default: null,
},
circuitname: {
type: String,
required: false,
default: null,
},
visu: {
type: Number,
required: false,
default: 0,
},
},
setup(props, { emit }) {
const userStore = useUserStore()
const circuitStore = useCircuitStore()
const $q = useQuasar()
const { t } = useI18n()
const username = ref('')
const visu = ref(0)
const numtransaz = ref(0)
const finishloading = ref(false)
const loadingvalues = ref(false)
const mytab = ref('circuiti')
const init = ref(false)
const globalStore = useGlobalStore()
const isfinishLoadingSite = computed(() => globalStore.finishLoading)
2022-08-26 03:32:50 +02:00
const filtroutente = ref(<any[]>[])
const nummovTodownload = ref(5)
const listcircuitsfind = computed(() => {
// console.log('list modif')
return updateListCircuit(costanti.FIND_CIRCUIT)
})
const listcircuitsmy = computed(() => {
// console.log('list modif')
return updateListCircuit(costanti.MY_CIRCUITS)
})
2022-08-26 03:32:50 +02:00
const listcircuitsfiltered = computed(() => {
// console.log('list modif')
return updateListCircuit(visu.value)
2022-08-26 03:32:50 +02:00
})
const myoptions = computed(() => {
const mybutt = []
mybutt.push({ label: t('mypages.follow_circuits') + ' (' + numMyCircuits.value + ')', value: costanti.MY_CIRCUITS })
2022-09-14 11:31:48 +02:00
mybutt.push({ label: t('mypages.find_circuit'), value: costanti.FIND_CIRCUIT })
2022-08-26 03:32:50 +02:00
if (numAskSentCircuits.value > 0 || visu.value === costanti.ASK_SENT_CIRCUIT)
2022-08-26 03:32:50 +02:00
mybutt.push({
label: t('mypages.request_sent') + ' (' + numAskSentCircuits.value + ')',
2022-08-26 03:32:50 +02:00
value: costanti.ASK_SENT_CIRCUIT
})
return mybutt
})
const numMyCircuits = computed(() => {
const arr = userStore.my.profile.mycircuits
2022-08-26 03:32:50 +02:00
return (arr) ? arr.length : 0
})
const numAskSentCircuits = computed(() => {
const arr = userStore.my.profile.asked_circuits
return (arr) ? arr.length : 0
})
watch(() => globalStore.finishLoading, async (to: any, from: any) => {
load()
})
async function loadCircuits(nummovTodownload: number) {
2022-08-26 03:32:50 +02:00
// Carica il profilo di quest'utente
if (username.value) {
filtroutente.value = await tools.loadCircuits(nummovTodownload)
2022-08-26 03:32:50 +02:00
}
}
function updateListCircuit(visu: number) {
let arr: any[] = []
try {
if (visu === costanti.CIRCUITS) {
arr = circuitStore.listcircuits
} else if (visu === costanti.MY_CIRCUITS) {
arr = circuitStore.listcircuits.filter((circ: any) => userStore.my.profile.mycircuits.findIndex((rec: any) => circ.name === rec.circuitname) >= 0)
} else if (visu === costanti.ASK_SENT_CIRCUIT) {
arr = userStore.my.profile.asked_circuits
}
} catch (e) {
arr = []
}
if (visu === costanti.MY_CIRCUITS) {
const arrtoinsert: any = circuitStore.listcircuits.filter((circ: any) => circ.showAlways)
for (const rec of arrtoinsert) {
if (arr.findIndex(myrec => myrec._id === rec._id) < 0) {
// Se non c'è il circuito Nazionale, glielo aggiungo
arr.push(rec)
}
}
}
return arr
}
async function load() {
if (init.value)
return // Gia inizializzato
// console.log(' ## INIZIO MOUNT ')
2022-08-26 03:32:50 +02:00
username.value = userStore.my.username
visu.value = props.modelValue
await loadCircuits(nummovTodownload.value)
finishloading.value = true
init.value = true
// console.log(' -- FINE MOUNT ')
2022-08-26 03:32:50 +02:00
}
function updateValue(val: number) {
emit('update:modelValue', val)
}
function togglevisu() {
if (visu.value !== costanti.FIND_CIRCUIT) {
visu.value = costanti.FIND_CIRCUIT
} else {
visu.value = costanti.MY_CIRCUITS
}
}
function movcaricati(params: any) {
if (params.numtransaz) {
numtransaz.value = params.numtransaz
}
}
function mounted() {
if (globalStore.finishLoading) {
load()
}
}
async function addlastmov() {
nummovTodownload.value += 5
loadingvalues.value = true
await loadCircuits(nummovTodownload.value)
loadingvalues.value = false
}
2022-08-26 03:32:50 +02:00
onMounted(mounted)
return {
tools,
costanti,
shared_consts,
filtroutente,
listcircuitsfiltered,
updateValue,
myoptions,
userStore,
circuitStore,
2023-04-12 16:29:30 +02:00
username,
t,
visu,
listcircuitsfind,
listcircuitsmy,
togglevisu,
movcaricati,
numtransaz,
finishloading,
addlastmov,
loadingvalues,
mytab,
2022-08-26 03:32:50 +02:00
}
}
})