2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-06 01:56:33 +01:00
|
|
|
<FormSection first>
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #label>{{ i18n.ts.emailAddress }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="emailAddress" type="email" manual-save>
|
2022-12-19 11:01:30 +01:00
|
|
|
<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>
|
2022-12-19 11:01:30 +01:00
|
|
|
<template v-else-if="emailAddress === $i.email && $i.emailVerified" #caption><i class="ti ti-check" style="color: var(--success);"></i> {{ i18n.ts.emailVerified }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSection>
|
2021-02-06 14:47:15 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<FormSection>
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch :model-value="$i.receiveAnnouncementEmail" @update:model-value="onChangeReceiveAnnouncementEmail">
|
2022-07-20 15:24:26 +02:00
|
|
|
{{ i18n.ts.receiveAnnouncementFromInstance }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2021-11-28 12:07:37 +01:00
|
|
|
</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
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="emailNotification_mention">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.mention }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="emailNotification_reply">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.reply }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="emailNotification_quote">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.quote }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="emailNotification_follow">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.follow }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="emailNotification_receiveFollowRequest">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.receiveFollowRequest }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
|
|
|
<MkSwitch v-model="emailNotification_groupInvited">
|
2023-01-05 13:04:56 +01:00
|
|
|
{{ i18n.ts._notification._types.groupInvited }}
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2021-11-28 12:07:37 +01:00
|
|
|
</FormSection>
|
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { onMounted, ref, watch } from 'vue';
|
2021-11-28 12:07:37 +01:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
2023-01-07 07:09:46 +01:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-01-07 06:59:54 +01:00
|
|
|
import MkSwitch from '@/components/MkSwitch.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';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
const emailAddress = ref($i!.email);
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
const onChangeReceiveAnnouncementEmail = (v) => {
|
|
|
|
os.api('i/update', {
|
2022-06-20 10:38:49 +02:00
|
|
|
receiveAnnouncementEmail: v,
|
2022-05-04 03:14:26 +02:00
|
|
|
});
|
|
|
|
};
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
const saveEmailAddress = () => {
|
|
|
|
os.inputText({
|
|
|
|
title: i18n.ts.password,
|
2022-06-20 10:38:49 +02:00
|
|
|
type: 'password',
|
2022-05-04 03:14:26 +02:00
|
|
|
}).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
|
|
|
|
2022-05-04 03:14:26 +02: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
|
|
|
|
2022-05-04 03:14:26 +02: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],
|
2022-06-20 10:38:49 +02:00
|
|
|
].filter(x => x != null),
|
2022-05-04 03:14:26 +02:00
|
|
|
});
|
|
|
|
};
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
watch([emailNotification_mention, emailNotification_reply, emailNotification_quote, emailNotification_follow, emailNotification_receiveFollowRequest, emailNotification_groupInvited], () => {
|
|
|
|
saveNotificationSettings();
|
|
|
|
});
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-05-04 03:14:26 +02:00
|
|
|
onMounted(() => {
|
|
|
|
watch(emailAddress, () => {
|
|
|
|
saveEmailAddress();
|
|
|
|
});
|
|
|
|
});
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.email,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-mail',
|
2020-11-25 13:31:34 +01:00
|
|
|
});
|
|
|
|
</script>
|