Notification New Group

This commit is contained in:
paoloar77
2022-07-28 23:27:28 +02:00
parent a509eefd7e
commit 1144177168
6 changed files with 50 additions and 33 deletions

View File

@@ -19,6 +19,7 @@ import { costanti } from '@costanti'
import { IFriends, IMyGroup, ISearchList, IUserFields } from 'model'
import { shared_consts } from '@/common/shared_vuejs'
import { colmyUserPeople, colmyUserGroup } from '@store/Modules/fieldsTable'
import { useNotifStore } from '@store/NotifStore'
export default defineComponent({
@@ -27,6 +28,7 @@ export default defineComponent({
props: {},
setup() {
const userStore = useUserStore()
const notifStore = useNotifStore()
const $route = useRoute()
const $q = useQuasar()
const { t } = useI18n()
@@ -34,6 +36,7 @@ export default defineComponent({
const animation = ref('fade')
const groupname = computed(() => $route.params.groupname ? $route.params.groupname.toString() : '')
const idnotif = computed(() => $route.query.idnotif ? $route.query.idnotif.toString() : '')
const filtroutente = ref(<any[]>[])
const showPic = ref(false)
@@ -62,9 +65,10 @@ export default defineComponent({
async function loadGroup() {
// Carica il profilo di quest'utente
if (groupname.value) {
await userStore.loadGroup(groupname.value).then((ris) => {
await userStore.loadGroup(groupname.value, idnotif.value).then((ris) => {
if (ris) {
mygrp.value = ris.mygroup
notifStore.setAsRead(idnotif.value)
users_in_group.value = ris.users_in_group
} else {
mygrp.value = null