Sharkey/src/client/pages/settings/email-address.vue

71 lines
1.5 KiB
Vue
Raw Normal View History

<template>
<FormBase>
<FormGroup>
2021-09-29 18:50:45 +03:00
<FormInput v-model="emailAddress" type="email">
2020-12-26 03:47:36 +02:00
{{ $ts.emailAddress }}
<template #desc v-if="$i.email && !$i.emailVerified">{{ $ts.verificationEmailSent }}</template>
<template #desc v-else-if="emailAddress === $i.email && $i.emailVerified">{{ $ts.emailVerified }}</template>
</FormInput>
</FormGroup>
2020-12-26 03:47:36 +02:00
<FormButton @click="save" primary>{{ $ts.save }}</FormButton>
</FormBase>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
2021-09-29 18:50:45 +03:00
import FormButton from '@client/components/debobigego/button.vue';
2021-03-23 10:30:14 +02:00
import FormInput from '@client/components/form/input.vue';
2021-09-29 18:50:45 +03:00
import FormBase from '@client/components/debobigego/base.vue';
import FormGroup from '@client/components/debobigego/group.vue';
2021-03-23 10:30:14 +02:00
import * as os from '@client/os';
2021-04-10 06:54:12 +03:00
import * as symbols from '@client/symbols';
export default defineComponent({
components: {
FormBase,
FormInput,
FormButton,
FormGroup,
},
emits: ['info'],
data() {
return {
2021-04-10 06:54:12 +03:00
[symbols.PAGE_INFO]: {
2020-12-26 03:47:36 +02:00
title: this.$ts.emailAddress,
2021-09-29 18:50:45 +03:00
icon: 'fas fa-envelope',
bg: 'var(--bg)',
},
emailAddress: null,
code: null,
}
},
created() {
this.emailAddress = this.$i.email;
},
mounted() {
2021-04-10 06:54:12 +03:00
this.$emit('info', this[symbols.PAGE_INFO]);
},
methods: {
save() {
os.dialog({
2020-12-26 03:47:36 +02:00
title: this.$ts.password,
input: {
type: 'password'
}
}).then(({ canceled, result: password }) => {
if (canceled) return;
2021-02-20 09:29:13 +02:00
os.apiWithDialog('i/update-email', {
password: password,
email: this.emailAddress,
});
});
}
}
});
</script>