mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
120 lines
3.0 KiB
Vue
120 lines
3.0 KiB
Vue
<template>
|
|
<base-button v-if="!notifications.length" class="notifications-menu" disabled ghost circle>
|
|
<counter-icon icon="bell" :count="unreadNotificationsCount" danger />
|
|
</base-button>
|
|
<dropdown v-else class="notifications-menu" offset="8" :placement="placement">
|
|
<template slot="default" slot-scope="{ toggleMenu }">
|
|
<base-button @click="toggleMenu" ghost circle>
|
|
<counter-icon icon="bell" :count="unreadNotificationsCount" danger />
|
|
</base-button>
|
|
</template>
|
|
<template slot="popover">
|
|
<div class="notifications-menu-popover">
|
|
<notification-list :notifications="notifications" @markAsRead="markAsRead" />
|
|
</div>
|
|
<div class="notifications-link-container">
|
|
<nuxt-link :to="{ name: 'notifications' }">
|
|
{{ $t('notifications.pageLink') }}
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
</dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import { NOTIFICATIONS_POLL_INTERVAL } from '~/constants/notifications'
|
|
import { notificationQuery, markAsReadMutation } from '~/graphql/User'
|
|
import unionBy from 'lodash/unionBy'
|
|
|
|
import CounterIcon from '~/components/_new/generic/CounterIcon/CounterIcon'
|
|
import Dropdown from '~/components/Dropdown'
|
|
import NotificationList from '../NotificationList/NotificationList'
|
|
|
|
export default {
|
|
name: 'NotificationMenu',
|
|
components: {
|
|
CounterIcon,
|
|
Dropdown,
|
|
NotificationList,
|
|
},
|
|
data() {
|
|
return {
|
|
notifications: [],
|
|
}
|
|
},
|
|
props: {
|
|
placement: { type: String },
|
|
},
|
|
methods: {
|
|
async markAsRead(notificationSourceId) {
|
|
const variables = { id: notificationSourceId }
|
|
try {
|
|
await this.$apollo.mutate({
|
|
mutation: markAsReadMutation(this.$i18n),
|
|
variables,
|
|
})
|
|
} catch (err) {
|
|
this.$toast.error(err.message)
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
unreadNotificationsCount() {
|
|
const result = this.notifications.reduce((count, notification) => {
|
|
return notification.read ? count : count + 1
|
|
}, 0)
|
|
return result
|
|
},
|
|
},
|
|
apollo: {
|
|
notifications: {
|
|
query() {
|
|
return notificationQuery(this.$i18n)
|
|
},
|
|
variables() {
|
|
return {
|
|
read: false,
|
|
orderBy: 'updatedAt_desc',
|
|
}
|
|
},
|
|
pollInterval: NOTIFICATIONS_POLL_INTERVAL,
|
|
update({ notifications }) {
|
|
return unionBy(notifications, this.notifications, notification => notification.id).sort(
|
|
(a, b) => new Date(b.createdAt) - new Date(a.createdAt),
|
|
)
|
|
},
|
|
error(error) {
|
|
this.$toast.error(error.message)
|
|
},
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.notifications-menu {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.base-button {
|
|
overflow: visible;
|
|
}
|
|
}
|
|
|
|
.notifications-menu-popover {
|
|
max-width: 500px;
|
|
margin-bottom: $size-height-base;
|
|
}
|
|
.notifications-link-container {
|
|
background-color: $background-color-softer-active;
|
|
text-align: center;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: $size-height-base;
|
|
padding: $space-x-small;
|
|
}
|
|
</style>
|