123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed, ref } from 'vue'
- import { useOnlineNotificationActions } from '#shared/entities/online-notification/composables/useOnlineNotificationActions.ts'
- import { useOnlineNotificationCount } from '#shared/entities/online-notification/composables/useOnlineNotificationCount.ts'
- import { useOnlineNotificationsQuery } from '#shared/entities/online-notification/graphql/queries/onlineNotifications.api.ts'
- import type { OnlineNotification, Scalars } from '#shared/graphql/types.ts'
- import { QueryHandler } from '#shared/server/apollo/handler/index.ts'
- import { edgesToArray } from '#shared/utils/helpers.ts'
- import CommonLoader from '#mobile/components/CommonLoader/CommonLoader.vue'
- import { useHeader } from '#mobile/composables/useHeader.ts'
- import NotificationItem from '../components/NotificationItem.vue'
- const notificationsHandler = new QueryHandler(useOnlineNotificationsQuery())
- const loading = notificationsHandler.loading()
- const notificationsResult = notificationsHandler.result()
- let mutationTriggered = false
- useHeader({
- backUrl: '/',
- backAvoidHomeButton: true,
- refetch: computed(() => loading.value && notificationsResult.value != null),
- })
- const notifications = computed(
- () =>
- edgesToArray(
- notificationsResult.value?.onlineNotifications,
- ) as OnlineNotification[],
- )
- const { seenNotification, markAllRead } = useOnlineNotificationActions()
- const runSeenNotification = (id: Scalars['ID']['output']) => {
- mutationTriggered = true
- seenNotification(id)
- }
- const markingAsSeen = ref(false)
- const runMarkAllRead = async () => {
- markingAsSeen.value = true
- const onlineNotificationIds = notifications.value
- .filter((elem) => !elem.seen)
- .map((elem) => elem.id)
- mutationTriggered = true
- await markAllRead(onlineNotificationIds)
- markingAsSeen.value = false
- }
- const notificationRemoved = () => {
- mutationTriggered = true
- }
- // TODO: currently this triggered in some situtations a real subscription on the server: https://github.com/apollographql/apollo-client/issues/10117
- const { unseenCount, notificationsCountSubscription } =
- useOnlineNotificationCount()
- notificationsCountSubscription.watchOnResult(() => {
- notificationsHandler.refetch()
- if (!mutationTriggered) notificationsHandler.refetch()
- mutationTriggered = false
- })
- const haveUnread = computed(() => unseenCount.value > 0)
- </script>
- <template>
- <CommonLoader :loading="!notifications.length && loading">
- <div class="ltr:pl-3 ltr:pr-4 rtl:pl-4 rtl:pr-3">
- <NotificationItem
- v-for="notification of notifications"
- :key="notification.id"
- :activity="notification"
- @remove="notificationRemoved"
- @seen="runSeenNotification"
- />
- <div v-if="!notifications.length" class="px-4 py-3 text-center text-base">
- {{ $t('No entries') }}
- </div>
- <!-- TODO: Add some better solution when mark as seen is running.
- Maybe disabled state that it can not be clicked twice or hidding the action completley. -->
- <div
- v-if="haveUnread"
- class="text-blue flex flex-1 cursor-pointer justify-center px-4 py-3 text-base"
- :class="{ 'text-red': markingAsSeen }"
- role="button"
- tabindex="0"
- @keydown.enter="runMarkAllRead"
- @click="runMarkAllRead"
- >
- {{ $t('Mark all as read') }}
- </div>
- </div>
- </CommonLoader>
- </template>
|