misskey/packages/frontend/src/pages/settings/email.vue

115 lines
3.9 KiB
Vue
Raw Normal View History

<template>
2023-01-05 13:04:56 +01:00
<div class="_autoGap">
2023-01-06 01:56:33 +01:00
<FormSection first>
2022-07-20 15:24:26 +02:00
<template #label>{{ i18n.ts.emailAddress }}</template>
2021-11-28 12:07:37 +01:00
<FormInput v-model="emailAddress" type="email" manual-save>
<template #prefix><i class="ti ti-mail"></i></template>
2022-07-20 15:24:26 +02:00
<template v-if="$i.email && !$i.emailVerified" #caption>{{ i18n.ts.verificationEmailSent }}</template>
<template v-else-if="emailAddress === $i.email && $i.emailVerified" #caption><i class="ti ti-check" style="color: var(--success);"></i> {{ i18n.ts.emailVerified }}</template>
2021-11-28 12:07:37 +01:00
</FormInput>
</FormSection>
2021-11-28 12:07:37 +01:00
<FormSection>
<FormSwitch :model-value="$i.receiveAnnouncementEmail" @update:model-value="onChangeReceiveAnnouncementEmail">
2022-07-20 15:24:26 +02:00
{{ i18n.ts.receiveAnnouncementFromInstance }}
2021-11-28 12:07:37 +01:00
</FormSwitch>
</FormSection>
2021-02-13 04:28:26 +01:00
2021-11-28 12:07:37 +01:00
<FormSection>
2022-07-20 15:24:26 +02:00
<template #label>{{ i18n.ts.emailNotification }}</template>
2023-01-05 13:04:56 +01:00
<div class="_autoGap_half">
<FormSwitch v-model="emailNotification_mention">
{{ i18n.ts._notification._types.mention }}
</FormSwitch>
<FormSwitch v-model="emailNotification_reply">
{{ i18n.ts._notification._types.reply }}
</FormSwitch>
<FormSwitch v-model="emailNotification_quote">
{{ i18n.ts._notification._types.quote }}
</FormSwitch>
<FormSwitch v-model="emailNotification_follow">
{{ i18n.ts._notification._types.follow }}
</FormSwitch>
<FormSwitch v-model="emailNotification_receiveFollowRequest">
{{ i18n.ts._notification._types.receiveFollowRequest }}
</FormSwitch>
<FormSwitch v-model="emailNotification_groupInvited">
{{ i18n.ts._notification._types.groupInvited }}
</FormSwitch>
</div>
2021-11-28 12:07:37 +01:00
</FormSection>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref, watch } from 'vue';
2021-11-28 12:07:37 +01:00
import FormSection from '@/components/form/section.vue';
import FormInput from '@/components/form/input.vue';
import FormSwitch from '@/components/form/switch.vue';
2021-11-11 18:02:25 +01:00
import * as os from '@/os';
2021-11-28 12:07:37 +01:00
import { $i } from '@/account';
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
const emailAddress = ref($i!.email);
const onChangeReceiveAnnouncementEmail = (v) => {
os.api('i/update', {
receiveAnnouncementEmail: v,
});
};
const saveEmailAddress = () => {
os.inputText({
title: i18n.ts.password,
type: 'password',
}).then(({ canceled, result: password }) => {
if (canceled) return;
os.apiWithDialog('i/update-email', {
password: password,
email: emailAddress.value,
});
});
};
2021-11-28 12:07:37 +01:00
const emailNotification_mention = ref($i!.emailNotificationTypes.includes('mention'));
const emailNotification_reply = ref($i!.emailNotificationTypes.includes('reply'));
const emailNotification_quote = ref($i!.emailNotificationTypes.includes('quote'));
const emailNotification_follow = ref($i!.emailNotificationTypes.includes('follow'));
const emailNotification_receiveFollowRequest = ref($i!.emailNotificationTypes.includes('receiveFollowRequest'));
const emailNotification_groupInvited = ref($i!.emailNotificationTypes.includes('groupInvited'));
2021-11-28 12:07:37 +01:00
const saveNotificationSettings = () => {
os.api('i/update', {
emailNotificationTypes: [
...[emailNotification_mention.value ? 'mention' : null],
...[emailNotification_reply.value ? 'reply' : null],
...[emailNotification_quote.value ? 'quote' : null],
...[emailNotification_follow.value ? 'follow' : null],
...[emailNotification_receiveFollowRequest.value ? 'receiveFollowRequest' : null],
...[emailNotification_groupInvited.value ? 'groupInvited' : null],
].filter(x => x != null),
});
};
2021-11-28 12:07:37 +01:00
watch([emailNotification_mention, emailNotification_reply, emailNotification_quote, emailNotification_follow, emailNotification_receiveFollowRequest, emailNotification_groupInvited], () => {
saveNotificationSettings();
});
2021-11-28 12:07:37 +01:00
onMounted(() => {
watch(emailAddress, () => {
saveEmailAddress();
});
});
2021-11-28 12:07:37 +01:00
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.email,
icon: 'ti ti-mail',
});
</script>