155 lines
4.4 KiB
Vue
155 lines
4.4 KiB
Vue
<template>
|
|
<div>
|
|
<section class="universal-card">
|
|
<Breadcrumbs
|
|
v-if="history"
|
|
current-title="History"
|
|
:link-stack="[{ href: `/dashboard/notifications`, label: 'Notifications' }]"
|
|
/>
|
|
<div class="header__row">
|
|
<div class="header__title">
|
|
<h2 v-if="history" class="text-2xl">Notification history</h2>
|
|
<h2 v-else class="text-2xl">Notifications</h2>
|
|
</div>
|
|
<template v-if="!history">
|
|
<Button v-if="data.hasRead" @click="updateRoute()">
|
|
<HistoryIcon />
|
|
View history
|
|
</Button>
|
|
<Button v-if="notifications.length > 0" color="danger" @click="readAll()">
|
|
<CheckCheckIcon />
|
|
Mark all as read
|
|
</Button>
|
|
</template>
|
|
</div>
|
|
<Chips
|
|
v-if="notifTypes.length > 1"
|
|
v-model="selectedType"
|
|
:items="notifTypes"
|
|
:format-label="(x) => (x === 'all' ? 'All' : $formatProjectType(x).replace('_', ' ') + 's')"
|
|
:capitalize="false"
|
|
/>
|
|
<p v-if="pending">Loading notifications...</p>
|
|
<template v-else-if="error">
|
|
<p>Error loading notifications:</p>
|
|
<pre>
|
|
{{ error }}
|
|
</pre>
|
|
</template>
|
|
<template v-else-if="notifications && notifications.length > 0">
|
|
<NotificationItem
|
|
v-for="notification in notifications"
|
|
:key="notification.id"
|
|
:notifications="notifications"
|
|
class="universal-card recessed"
|
|
:notification="notification"
|
|
:auth="auth"
|
|
raised
|
|
@update:notifications="() => refresh()"
|
|
/>
|
|
</template>
|
|
<p v-else>You don't have any unread notifications.</p>
|
|
<Pagination :page="page" :count="pages" @switch-page="changePage" />
|
|
</section>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { Button, Chips } from "@modrinth/ui";
|
|
import { HistoryIcon, CheckCheckIcon } from "@modrinth/assets";
|
|
import {
|
|
fetchExtraNotificationData,
|
|
groupNotifications,
|
|
markAsRead,
|
|
} from "~/helpers/notifications.ts";
|
|
import NotificationItem from "~/components/ui/NotificationItem.vue";
|
|
import Breadcrumbs from "~/components/ui/Breadcrumbs.vue";
|
|
import Pagination from "~/components/ui/Pagination.vue";
|
|
|
|
useHead({
|
|
title: "Notifications - Modrinth",
|
|
});
|
|
|
|
const auth = await useAuth();
|
|
const route = useNativeRoute();
|
|
const router = useNativeRouter();
|
|
|
|
const history = computed(() => route.name === "dashboard-notifications-history");
|
|
const selectedType = ref("all");
|
|
const page = ref(1);
|
|
const perPage = ref(50);
|
|
|
|
const { data, pending, error, refresh } = await useAsyncData(
|
|
async () => {
|
|
const pageNum = page.value - 1;
|
|
const showRead = history.value;
|
|
const notifications = await useBaseFetch(`user/${auth.value.user.id}/notifications`);
|
|
|
|
const typesInFeed = [
|
|
...new Set(notifications.filter((n) => showRead || !n.read).map((n) => n.type)),
|
|
];
|
|
|
|
const filtered = notifications.filter(
|
|
(n) =>
|
|
(selectedType.value === "all" || n.type === selectedType.value) && (showRead || !n.read),
|
|
);
|
|
|
|
const pages = Math.max(1, Math.ceil(filtered.length / perPage.value));
|
|
|
|
return fetchExtraNotificationData(
|
|
filtered.slice(pageNum * perPage.value, pageNum * perPage.value + perPage.value),
|
|
).then((notifs) => ({
|
|
notifications: notifs,
|
|
notifTypes: typesInFeed.length > 1 ? ["all", ...typesInFeed] : typesInFeed,
|
|
pages,
|
|
hasRead: notifications.some((n) => n.read),
|
|
}));
|
|
},
|
|
{ watch: [page, history, selectedType] },
|
|
);
|
|
|
|
const notifications = computed(() =>
|
|
data.value ? groupNotifications(data.value.notifications, history.value) : [],
|
|
);
|
|
|
|
const notifTypes = computed(() => data.value?.notifTypes || []);
|
|
const pages = computed(() => data.value?.pages ?? 1);
|
|
|
|
function updateRoute() {
|
|
router.push(history.value ? "/dashboard/notifications" : "/dashboard/notifications/history");
|
|
selectedType.value = "all";
|
|
page.value = 1;
|
|
}
|
|
|
|
async function readAll() {
|
|
const ids = notifications.value.flatMap((n) => [
|
|
n.id,
|
|
...(n.grouped_notifs ? n.grouped_notifs.map((g) => g.id) : []),
|
|
]);
|
|
|
|
await markAsRead(ids);
|
|
await refresh();
|
|
}
|
|
|
|
function changePage(newPage) {
|
|
page.value = newPage;
|
|
if (import.meta.client) window.scrollTo({ top: 0, behavior: "smooth" });
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.read-toggle-input {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--spacing-card-md);
|
|
|
|
.label__title {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.header__title {
|
|
h2 {
|
|
margin: 0 auto 0 0;
|
|
}
|
|
}
|
|
</style>
|