115 lines
2.6 KiB
Vue
115 lines
2.6 KiB
Vue
<template>
|
|
<div>
|
|
<header
|
|
class="sticky top-0 z-10 flex items-center justify-between border-b bg-white px-5 py-2.5"
|
|
>
|
|
<Breadcrumbs
|
|
:items="[{ label: 'Notifications', route: { name: 'Notifications' } }]"
|
|
>
|
|
<template #actions>
|
|
<TabButtons
|
|
:buttons="[{ label: 'Unread', active: true }, { label: 'Read' }]"
|
|
v-model="activeTab"
|
|
/>
|
|
</template>
|
|
</Breadcrumbs>
|
|
</header>
|
|
|
|
<div class="mx-20 mt-5">
|
|
<div class="flex flex-col divide-y">
|
|
<ListItem
|
|
v-for="notification in notifications"
|
|
:title="notification.type"
|
|
:description="`${notification.message} • ${formatDate(
|
|
notification.creation,
|
|
'relative'
|
|
)}`"
|
|
>
|
|
<template #actions>
|
|
<Button
|
|
v-if="notification.route"
|
|
variant="ghost"
|
|
label="View"
|
|
@click="openNotification(notification)"
|
|
/>
|
|
</template>
|
|
</ListItem>
|
|
<div v-if="!notifications?.length" class="text-base text-gray-600">
|
|
No Notifications
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { TabButtons } from 'jingrow-ui';
|
|
import { unreadNotificationsCount } from '@/data/notifications';
|
|
|
|
export default {
|
|
name: 'Notifications',
|
|
pageMeta() {
|
|
return {
|
|
title: 'Notifications'
|
|
};
|
|
},
|
|
components: {
|
|
TabButtons
|
|
},
|
|
data() {
|
|
return {
|
|
activeTab: 'Unread'
|
|
};
|
|
},
|
|
resources: {
|
|
unreadNotifications() {
|
|
if (this.activeTab !== 'Unread') return;
|
|
return {
|
|
url: 'jcloud.api.notifications.get_notifications',
|
|
params: {
|
|
filters: { team: this.$account.team.name, read: false }
|
|
},
|
|
cache: ['unreadNotifications', this.$account?.team],
|
|
auto: true
|
|
};
|
|
},
|
|
readNotifications() {
|
|
if (this.activeTab !== 'Read') return;
|
|
return {
|
|
url: 'jcloud.api.notifications.get_notifications',
|
|
params: {
|
|
filters: {
|
|
team: this.$account.team.name,
|
|
read: true
|
|
}
|
|
},
|
|
cache: ['readNotifications', this.$account?.team],
|
|
auto: true
|
|
};
|
|
},
|
|
markNotificationAsRead: {
|
|
url: 'jcloud.api.notifications.mark_notification_as_read'
|
|
}
|
|
},
|
|
methods: {
|
|
openNotification(notification) {
|
|
if (!notification.read) {
|
|
this.$resources.markNotificationAsRead.submit({
|
|
name: notification.name
|
|
});
|
|
|
|
unreadNotificationsCount.setData(data => data - 1);
|
|
}
|
|
this.$router.push(notification.route);
|
|
}
|
|
},
|
|
computed: {
|
|
notifications() {
|
|
return this.activeTab === 'Unread'
|
|
? this.$resources.unreadNotifications.data
|
|
: this.$resources.readNotifications.data;
|
|
}
|
|
}
|
|
};
|
|
</script>
|