forked from FoundKeyGang/FoundKey
Refactor settings/notifications to use Composition API (#8587)
* refactor(client): refactor settings/notifications to use Composition API * fix(client): use async/await for API methods
This commit is contained in:
parent
7154ad5a73
commit
9230334a31
1 changed files with 38 additions and 50 deletions
|
@ -1,71 +1,59 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="_formRoot">
|
<div class="_formRoot">
|
||||||
<FormLink class="_formBlock" @click="configure"><template #icon><i class="fas fa-cog"></i></template>{{ $ts.notificationSetting }}</FormLink>
|
<FormLink class="_formBlock" @click="configure"><template #icon><i class="fas fa-cog"></i></template>{{ i18n.ts.notificationSetting }}</FormLink>
|
||||||
<FormSection>
|
<FormSection>
|
||||||
<FormLink class="_formBlock" @click="readAllNotifications">{{ $ts.markAsReadAllNotifications }}</FormLink>
|
<FormLink class="_formBlock" @click="readAllNotifications">{{ i18n.ts.markAsReadAllNotifications }}</FormLink>
|
||||||
<FormLink class="_formBlock" @click="readAllUnreadNotes">{{ $ts.markAsReadAllUnreadNotes }}</FormLink>
|
<FormLink class="_formBlock" @click="readAllUnreadNotes">{{ i18n.ts.markAsReadAllUnreadNotes }}</FormLink>
|
||||||
<FormLink class="_formBlock" @click="readAllMessagingMessages">{{ $ts.markAsReadAllTalkMessages }}</FormLink>
|
<FormLink class="_formBlock" @click="readAllMessagingMessages">{{ i18n.ts.markAsReadAllTalkMessages }}</FormLink>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineAsyncComponent, defineComponent } from 'vue';
|
import { defineAsyncComponent, defineExpose } from 'vue';
|
||||||
import FormButton from '@/components/ui/button.vue';
|
import FormButton from '@/components/ui/button.vue';
|
||||||
import FormLink from '@/components/form/link.vue';
|
import FormLink from '@/components/form/link.vue';
|
||||||
import FormSection from '@/components/form/section.vue';
|
import FormSection from '@/components/form/section.vue';
|
||||||
import { notificationTypes } from 'misskey-js';
|
import { notificationTypes } from 'misskey-js';
|
||||||
import * as os from '@/os';
|
import * as os from '@/os';
|
||||||
import * as symbols from '@/symbols';
|
import * as symbols from '@/symbols';
|
||||||
|
import { $i } from '@/account';
|
||||||
|
import { i18n } from '@/i18n';
|
||||||
|
|
||||||
export default defineComponent({
|
async function readAllUnreadNotes() {
|
||||||
components: {
|
await os.api('i/read-all-unread-notes');
|
||||||
FormLink,
|
}
|
||||||
FormButton,
|
|
||||||
FormSection,
|
|
||||||
},
|
|
||||||
|
|
||||||
emits: ['info'],
|
async function readAllMessagingMessages() {
|
||||||
|
await os.api('i/read-all-messaging-messages');
|
||||||
data() {
|
}
|
||||||
return {
|
|
||||||
[symbols.PAGE_INFO]: {
|
async function readAllNotifications() {
|
||||||
title: this.$ts.notifications,
|
await os.api('notifications/mark-all-as-read');
|
||||||
icon: 'fas fa-bell',
|
}
|
||||||
bg: 'var(--bg)',
|
|
||||||
},
|
function configure() {
|
||||||
|
const includingTypes = notificationTypes.filter(x => !$i!.mutingNotificationTypes.includes(x));
|
||||||
|
os.popup(defineAsyncComponent(() => import('@/components/notification-setting-window.vue')), {
|
||||||
|
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;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
}, 'closed');
|
||||||
|
}
|
||||||
|
|
||||||
methods: {
|
defineExpose({
|
||||||
readAllUnreadNotes() {
|
[symbols.PAGE_INFO]: {
|
||||||
os.api('i/read-all-unread-notes');
|
title: i18n.ts.notifications,
|
||||||
},
|
icon: 'fas fa-bell',
|
||||||
|
bg: 'var(--bg)',
|
||||||
readAllMessagingMessages() {
|
|
||||||
os.api('i/read-all-messaging-messages');
|
|
||||||
},
|
|
||||||
|
|
||||||
readAllNotifications() {
|
|
||||||
os.api('notifications/mark-all-as-read');
|
|
||||||
},
|
|
||||||
|
|
||||||
configure() {
|
|
||||||
const includingTypes = notificationTypes.filter(x => !this.$i.mutingNotificationTypes.includes(x));
|
|
||||||
os.popup(defineAsyncComponent(() => import('@/components/notification-setting-window.vue')), {
|
|
||||||
includingTypes,
|
|
||||||
showGlobalToggle: false,
|
|
||||||
}, {
|
|
||||||
done: async (res) => {
|
|
||||||
const { includingTypes: value } = res;
|
|
||||||
await os.apiWithDialog('i/update', {
|
|
||||||
mutingNotificationTypes: notificationTypes.filter(x => !value.includes(x)),
|
|
||||||
}).then(i => {
|
|
||||||
this.$i.mutingNotificationTypes = i.mutingNotificationTypes;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}, 'closed');
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue