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">
|
2020-12-19 02:55:52 +01:00
|
|
|
<template v-if="$i.email && !$i.emailVerified" #icon><Fa :icon="faExclamationTriangle" style="color: var(--warn);"/></template>
|
|
|
|
<template v-else-if="$i.email && $i.emailVerified" #icon><Fa :icon="faCheck" style="color: var(--success);"/></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
|
|
|
|
|
|
|
<FormSwitch :value="$i.receiveAnnouncementEmail" @update:value="onChangeReceiveAnnouncementEmail">
|
|
|
|
{{ $ts.receiveAnnouncementFromInstance }}
|
|
|
|
</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faCog, faExclamationTriangle, faCheck } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faBell, faEnvelope } from '@fortawesome/free-regular-svg-icons';
|
|
|
|
import FormButton from '@/components/form/button.vue';
|
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
2021-02-06 14:47:15 +01:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
2020-11-25 13:31:34 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
|
|
|
|
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 {
|
|
|
|
INFO: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.email,
|
2020-11-25 13:31:34 +01:00
|
|
|
icon: faEnvelope
|
|
|
|
},
|
|
|
|
faCog, faExclamationTriangle, faCheck
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
|
|
|
|
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>
|