8edd002ec7
no live code looks at these settings, let's not confuse users pretending they can set also, no live code sends any of these notifications via email! maybe, after #718, we can revisit this
77 lines
2.2 KiB
Vue
77 lines
2.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div v-if="instance.enableEmail" class="_gaps_m">
|
|
<FormSection first>
|
|
<template #label>{{ i18n.ts.emailAddress }}</template>
|
|
<MkInput v-model="emailAddress" type="email" manualSave>
|
|
<template #prefix><i class="ti ti-mail"></i></template>
|
|
<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(--MI_THEME-success);"></i> {{ i18n.ts.emailVerified }}</template>
|
|
</MkInput>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<MkSwitch :modelValue="$i.receiveAnnouncementEmail" @update:modelValue="onChangeReceiveAnnouncementEmail">
|
|
{{ i18n.ts.receiveAnnouncementFromInstance }}
|
|
</MkSwitch>
|
|
</FormSection>
|
|
</div>
|
|
<div v-if="!instance.enableEmail" class="_gaps_m">
|
|
<MkInfo>{{ i18n.ts.emailNotSupported }}</MkInfo>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref, watch, computed } from 'vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import * as os from '@/os.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { signinRequired } from '@/account.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { instance } from '@/instance.js';
|
|
|
|
const $i = signinRequired();
|
|
|
|
const emailAddress = ref($i.email);
|
|
|
|
const onChangeReceiveAnnouncementEmail = (v) => {
|
|
misskeyApi('i/update', {
|
|
receiveAnnouncementEmail: v,
|
|
});
|
|
};
|
|
|
|
async function saveEmailAddress() {
|
|
const auth = await os.authenticateDialog();
|
|
if (auth.canceled) return;
|
|
|
|
os.apiWithDialog('i/update-email', {
|
|
password: auth.result.password,
|
|
token: auth.result.token,
|
|
email: emailAddress.value,
|
|
});
|
|
}
|
|
|
|
onMounted(() => {
|
|
watch(emailAddress, () => {
|
|
saveEmailAddress();
|
|
});
|
|
});
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.email,
|
|
icon: 'ti ti-mail',
|
|
}));
|
|
</script>
|