11349561d6
* wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip
70 lines
1.5 KiB
Vue
70 lines
1.5 KiB
Vue
<template>
|
|
<FormBase>
|
|
<FormGroup>
|
|
<FormInput v-model:value="emailAddress" type="email">
|
|
{{ $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>
|
|
<FormButton @click="save" primary>{{ $ts.save }}</FormButton>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import FormButton from '@client/components/form/button.vue';
|
|
import FormInput from '@client/components/form/input.vue';
|
|
import FormBase from '@client/components/form/base.vue';
|
|
import FormGroup from '@client/components/form/group.vue';
|
|
import * as os from '@client/os';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormBase,
|
|
FormInput,
|
|
FormButton,
|
|
FormGroup,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.emailAddress,
|
|
icon: 'fas fa-envelope'
|
|
},
|
|
emailAddress: null,
|
|
code: null,
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.emailAddress = this.$i.email;
|
|
},
|
|
|
|
mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
},
|
|
|
|
methods: {
|
|
save() {
|
|
os.dialog({
|
|
title: this.$ts.password,
|
|
input: {
|
|
type: 'password'
|
|
}
|
|
}).then(({ canceled, result: password }) => {
|
|
if (canceled) return;
|
|
os.apiWithDialog('i/update-email', {
|
|
password: password,
|
|
email: this.emailAddress,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|