2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
2021-11-28 13:07:37 +02:00
|
|
|
<div class="_formRoot">
|
2022-12-19 12:01:30 +02:00
|
|
|
<FormLink class="_formBlock" @click="configure"><template #icon><i class="ti ti-settings"></i></template>{{ i18n.ts.notificationSetting }}</FormLink>
|
2021-11-28 13:07:37 +02:00
|
|
|
<FormSection>
|
2022-05-04 06:25:19 +03:00
|
|
|
<FormLink class="_formBlock" @click="readAllNotifications">{{ i18n.ts.markAsReadAllNotifications }}</FormLink>
|
|
|
|
<FormLink class="_formBlock" @click="readAllUnreadNotes">{{ i18n.ts.markAsReadAllUnreadNotes }}</FormLink>
|
|
|
|
<FormLink class="_formBlock" @click="readAllMessagingMessages">{{ i18n.ts.markAsReadAllTalkMessages }}</FormLink>
|
2021-11-28 13:07:37 +02:00
|
|
|
</FormSection>
|
2022-12-17 18:59:59 +02:00
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.pushNotification }}</template>
|
|
|
|
<MkPushNotificationAllowButton ref="allowButton" />
|
2022-12-22 09:51:48 +02:00
|
|
|
<FormSwitch class="_formBlock" :disabled="!pushRegistrationInServer" :model-value="sendReadMessage" @update:model-value="onChangeSendReadMessage">
|
2022-12-17 18:59:59 +02:00
|
|
|
<template #label>{{ i18n.ts.sendPushNotificationReadMessage }}</template>
|
|
|
|
<template #caption>
|
|
|
|
<I18n :src="i18n.ts.sendPushNotificationReadMessageCaption">
|
|
|
|
<template #emptyPushNotificationMessage>{{ i18n.ts._notification.emptyPushNotificationMessage }}</template>
|
|
|
|
</I18n>
|
|
|
|
</template>
|
|
|
|
</FormSwitch>
|
|
|
|
</FormSection>
|
2021-11-28 13:07:37 +02:00
|
|
|
</div>
|
2020-10-17 14:12:00 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-12 20:31:26 +03:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 11:38:49 +03:00
|
|
|
import { defineAsyncComponent } from 'vue';
|
|
|
|
import { notificationTypes } from 'misskey-js';
|
2022-09-06 12:21:49 +03:00
|
|
|
import FormButton from '@/components/MkButton.vue';
|
2021-11-28 13:07:37 +02:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2022-12-17 18:59:59 +02:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-05-04 06:25:19 +03:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-12-17 18:59:59 +02:00
|
|
|
import MkPushNotificationAllowButton from '@/components/MkPushNotificationAllowButton.vue';
|
|
|
|
|
2023-01-03 06:37:32 +02:00
|
|
|
let allowButton = $shallowRef<InstanceType<typeof MkPushNotificationAllowButton>>();
|
2022-12-17 18:59:59 +02:00
|
|
|
let pushRegistrationInServer = $computed(() => allowButton?.pushRegistrationInServer);
|
|
|
|
let sendReadMessage = $computed(() => pushRegistrationInServer?.sendReadMessage || false);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-04 06:25:19 +03:00
|
|
|
async function readAllUnreadNotes() {
|
|
|
|
await os.api('i/read-all-unread-notes');
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-04 06:25:19 +03:00
|
|
|
async function readAllMessagingMessages() {
|
|
|
|
await os.api('i/read-all-messaging-messages');
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-04 06:25:19 +03:00
|
|
|
async function readAllNotifications() {
|
|
|
|
await os.api('notifications/mark-all-as-read');
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-04 06:25:19 +03:00
|
|
|
function configure() {
|
|
|
|
const includingTypes = notificationTypes.filter(x => !$i!.mutingNotificationTypes.includes(x));
|
2022-08-30 18:24:33 +03:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkNotificationSettingWindow.vue')), {
|
2022-05-04 06:25:19 +03:00
|
|
|
includingTypes,
|
|
|
|
showGlobalToggle: false,
|
|
|
|
}, {
|
|
|
|
done: async (res) => {
|
|
|
|
const { includingTypes: value } = res;
|
|
|
|
await os.apiWithDialog('i/update', {
|
|
|
|
mutingNotificationTypes: notificationTypes.filter(x => !value.includes(x)),
|
|
|
|
}).then(i => {
|
|
|
|
$i!.mutingNotificationTypes = i.mutingNotificationTypes;
|
|
|
|
});
|
2022-06-20 11:38:49 +03:00
|
|
|
},
|
2022-05-04 06:25:19 +03:00
|
|
|
}, 'closed');
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-12-17 18:59:59 +02:00
|
|
|
function onChangeSendReadMessage(v: boolean) {
|
|
|
|
if (!pushRegistrationInServer) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('sw/update-registration', {
|
|
|
|
endpoint: pushRegistrationInServer.endpoint,
|
|
|
|
sendReadMessage: v,
|
|
|
|
}).then(res => {
|
|
|
|
if (!allowButton) return;
|
|
|
|
allowButton.pushRegistrationInServer = res;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.notifications,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-bell',
|
2020-10-17 14:12:00 +03:00
|
|
|
});
|
|
|
|
</script>
|