summaryrefslogtreecommitdiff
path: root/src/client/pages/settings/email.vue
blob: aa20d9d94e639ffedb18d99f4986be5743a1393a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<template>
<FormBase>
	<FormGroup>
		<template #label>{{ $ts.emailAddress }}</template>
		<FormLink to="/settings/email/address">
			<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>
			{{ $i.email || $ts.notSet }}
		</FormLink>
	</FormGroup>

	<FormLink to="/settings/email/notification">
		<template #icon><i class="fas fa-bell"></i></template>
		{{ $ts.emailNotification }}
	</FormLink>

	<FormSwitch :value="$i.receiveAnnouncementEmail" @update:value="onChangeReceiveAnnouncementEmail">
		{{ $ts.receiveAnnouncementFromInstance }}
	</FormSwitch>
</FormBase>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import FormButton from '@client/components/form/button.vue';
import FormLink from '@client/components/form/link.vue';
import FormBase from '@client/components/form/base.vue';
import FormGroup from '@client/components/form/group.vue';
import FormSwitch from '@client/components/form/switch.vue';
import * as os from '@client/os';
import * as symbols from '@client/symbols';

export default defineComponent({
	components: {
		FormBase,
		FormLink,
		FormButton,
		FormSwitch,
		FormGroup,
	},

	emits: ['info'],
	
	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.email,
				icon: 'fas fa-envelope'
			},
		}
	},

	mounted() {
		this.$emit('info', this[symbols.PAGE_INFO]);
	},

	methods: {
		onChangeReceiveAnnouncementEmail(v) {
			os.api('i/update', {
				receiveAnnouncementEmail: v
			});
		},
	}
});
</script>