2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormGroup>
|
2020-12-26 02:47:36 +01:00
|
|
|
<template #label>{{ $ts.emailAddress }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
<FormLink to="/settings/email/address">
|
2021-04-20 16:22:59 +02:00
|
|
|
<template v-if="$i.email && !$i.emailVerified" #icon><i class="fas fa-exclamation-triangle" style="color: var(--warn);"></i></template>
|
|
|
|
<template v-else-if="$i.email && $i.emailVerified" #icon><i class="fas fa-check" style="color: var(--success);"></i></template>
|
2020-12-26 02:47:36 +01:00
|
|
|
{{ $i.email || $ts.notSet }}
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormLink>
|
|
|
|
</FormGroup>
|
2021-02-06 14:47:15 +01:00
|
|
|
|
2021-02-13 04:28:26 +01:00
|
|
|
<FormLink to="/settings/email/notification">
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #icon><i class="fas fa-bell"></i></template>
|
2021-02-13 04:28:26 +01:00
|
|
|
{{ $ts.emailNotification }}
|
|
|
|
</FormLink>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormSwitch :value="$i.receiveAnnouncementEmail" @update:modelValue="onChangeReceiveAnnouncementEmail">
|
2021-02-06 14:47:15 +01:00
|
|
|
{{ $ts.receiveAnnouncementFromInstance }}
|
|
|
|
</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
|
|
import FormLink from '@/components/debobigego/link.vue';
|
|
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
|
|
import FormSwitch from '@/components/debobigego/switch.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormBase,
|
|
|
|
FormLink,
|
|
|
|
FormButton,
|
2021-02-06 14:47:15 +01:00
|
|
|
FormSwitch,
|
2020-11-25 13:31:34 +01:00
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.email,
|
2021-09-29 17:50:45 +02:00
|
|
|
icon: 'fas fa-envelope',
|
|
|
|
bg: 'var(--bg)',
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2021-04-10 05:54:12 +02:00
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2021-02-06 14:47:15 +01:00
|
|
|
onChangeReceiveAnnouncementEmail(v) {
|
|
|
|
os.api('i/update', {
|
|
|
|
receiveAnnouncementEmail: v
|
|
|
|
});
|
|
|
|
},
|
2020-11-25 13:31:34 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|