iceshrimp-legacy/packages/client/src/pages/notifications.vue

187 lines
4 KiB
Vue
Raw Normal View History

2020-02-18 22:16:49 +01:00
<template>
2023-04-08 02:01:42 +02:00
<MkStickyContainer>
<template #header>
<MkPageHeader
v-model:tab="tab"
:actions="headerActions"
:tabs="headerTabs"
:display-my-avatar="true"
/>
</template>
<MkSpacer :content-max="800">
<swiper
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="
!(
deviceKind === 'desktop' &&
!defaultStore.state.swipeOnDesktop
)
"
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
<swiper-slide>
<XNotifications
class="notifications"
:include-types="includeTypes"
:unread-only="false"
/>
</swiper-slide>
<swiper-slide>
<XNotifications
class="notifications"
:include-types="includeTypes"
:unread-only="true"
/>
</swiper-slide>
<swiper-slide>
<XNotes :pagination="mentionsPagination" />
</swiper-slide>
<swiper-slide>
<XNotes :pagination="directNotesPagination" />
</swiper-slide>
</swiper>
</MkSpacer>
</MkStickyContainer>
2020-02-18 22:16:49 +01:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { computed, ref, watch } from "vue";
import { Virtual } from "swiper";
import { Swiper, SwiperSlide } from "swiper/vue";
import { notificationTypes } from "calckey-js";
import XNotifications from "@/components/MkNotifications.vue";
import XNotes from "@/components/MkNotes.vue";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import { deviceKind } from "@/scripts/device-kind";
import { defaultStore } from "@/store";
import "swiper/scss";
import "swiper/scss/virtual";
2022-09-08 01:18:04 +02:00
2023-04-08 02:01:42 +02:00
const tabs = ["all", "unread", "mentions", "directNotes"];
2022-10-26 04:19:42 +02:00
let tab = $ref(tabs[0]);
2023-04-08 02:01:42 +02:00
watch($$(tab), () => syncSlide(tabs.indexOf(tab)));
2022-10-26 04:19:42 +02:00
let includeTypes = $ref<string[] | null>(null);
2023-04-08 02:01:42 +02:00
let unreadOnly = $computed(() => tab === "unread");
os.api("notifications/mark-all-as-read");
2022-08-20 09:02:15 +02:00
const MOBILE_THRESHOLD = 500;
const isMobile = ref(
2023-04-08 02:01:42 +02:00
deviceKind === "smartphone" || window.innerWidth <= MOBILE_THRESHOLD
2022-08-20 09:02:15 +02:00
);
2023-04-08 02:01:42 +02:00
window.addEventListener("resize", () => {
2022-08-20 09:02:15 +02:00
isMobile.value =
2023-04-08 02:01:42 +02:00
deviceKind === "smartphone" || window.innerWidth <= MOBILE_THRESHOLD;
2022-08-20 09:02:15 +02:00
});
const mentionsPagination = {
2023-04-08 02:01:42 +02:00
endpoint: "notes/mentions" as const,
limit: 10,
};
const directNotesPagination = {
2023-04-08 02:01:42 +02:00
endpoint: "notes/mentions" as const,
limit: 10,
params: {
2023-04-08 02:01:42 +02:00
visibility: "specified",
},
};
2020-02-18 22:16:49 +01:00
function setFilter(ev) {
2023-04-08 02:01:42 +02:00
const typeItems = notificationTypes.map((t) => ({
text: i18n.t(`_notification._types.${t}`),
active: includeTypes && includeTypes.includes(t),
action: () => {
includeTypes = [t];
},
}));
2023-04-08 02:01:42 +02:00
const items =
includeTypes != null
? [
{
icon: "ph-x ph-bold ph-lg",
text: i18n.ts.clear,
action: () => {
includeTypes = null;
},
},
null,
...typeItems,
]
: typeItems;
2022-01-28 03:53:12 +01:00
os.popupMenu(items, ev.currentTarget ?? ev.target);
}
2023-04-08 02:01:42 +02:00
const headerActions = $computed(() =>
[
tab === "all"
? {
text: i18n.ts.filter,
icon: "ph-funnel ph-bold ph-lg",
highlighted: includeTypes != null,
handler: setFilter,
}
: undefined,
tab === "all"
? {
text: i18n.ts.markAllAsRead,
icon: "ph-check ph-bold ph-lg",
handler: () => {
os.apiWithDialog("notifications/mark-all-as-read");
},
}
: undefined,
].filter((x) => x !== undefined)
);
2023-04-08 02:01:42 +02:00
const headerTabs = $computed(() => [
{
key: "all",
title: i18n.ts.all,
icon: "ph-bell ph-bold ph-lg",
},
{
key: "unread",
title: i18n.ts.unread,
icon: "ph-circle-wavy-warning ph-bold ph-lg",
},
{
key: "mentions",
title: i18n.ts.mentions,
icon: "ph-at ph-bold ph-lg",
},
{
key: "directNotes",
title: i18n.ts.directNotes,
icon: "ph-envelope-simple-open ph-bold ph-lg",
},
]);
2023-04-08 02:01:42 +02:00
definePageMetadata(
computed(() => ({
title: i18n.ts.notifications,
icon: "ph-bell ph-bold ph-lg",
}))
);
2022-09-10 00:44:55 +02:00
let swiperRef = null;
function setSwiperRef(swiper) {
swiperRef = swiper;
syncSlide(tabs.indexOf(tab));
}
function onSlideChange() {
tab = tabs[swiperRef.activeIndex];
}
function syncSlide(index) {
swiperRef.slideTo(index);
}
2020-02-18 22:16:49 +01:00
</script>