misc_pterodactyl-panel/resources/assets/scripts/components/dashboard/account/UpdateEmail.vue

86 lines
2.9 KiB
Vue
Raw Normal View History

2018-06-12 05:36:43 +00:00
<template>
<div :class>
<form method="post" v-on:submit.prevent="submitForm">
2018-06-16 23:43:52 +00:00
<div class="content-box">
2018-06-12 05:36:43 +00:00
<h2 class="mb-6 text-grey-darkest font-medium">Update your email</h2>
<div>
<label for="grid-email" class="input-label">Email address</label>
<input id="grid-email" name="email" type="email" class="input" required
2018-06-17 23:53:24 +00:00
:class="{ error: errors.has('email') }"
v-validate
v-model="email"
2018-06-12 05:36:43 +00:00
>
2018-06-17 23:53:24 +00:00
<p class="input-help error" v-show="errors.has('email')">{{ errors.first('email') }}</p>
2018-06-12 05:36:43 +00:00
</div>
<div class="mt-6">
<label for="grid-password" class="input-label">Password</label>
<input id="grid-password" name="password" type="password" class="input" required
v-model="password"
>
</div>
<div class="mt-6 text-right">
<button class="btn btn-blue btn-sm text-right" type="submit">Save</button>
</div>
</div>
</form>
</div>
</template>
<script>
2018-06-17 23:53:24 +00:00
import { isObject, get } from 'lodash';
2018-06-12 05:36:43 +00:00
import { mapState, mapActions } from 'vuex';
export default {
name: 'update-email',
data: function () {
return {
2018-06-17 23:53:24 +00:00
email: get(this.$store.state, 'auth.user.email', ''),
2018-06-12 05:36:43 +00:00
password: '',
};
},
computed: {
...mapState({
user: state => state.auth.user,
})
},
methods: {
/**
* Update a user's email address on the Panel.
*/
submitForm: function () {
this.clearFlashes();
this.updateEmail({
email: this.$data.email,
password: this.$data.password
2018-06-12 05:36:43 +00:00
})
2018-06-17 23:53:24 +00:00
.finally(() => {
this.$data.password = '';
})
2018-06-12 05:36:43 +00:00
.then(() => {
this.success('Your email address has been updated.');
})
.catch(error => {
if (!error.response) {
this.error(error.message);
2018-06-12 05:36:43 +00:00
}
const response = error.response;
if (response.data && isObject(response.data.errors)) {
2018-06-12 05:36:43 +00:00
response.data.errors.forEach(e => {
this.error(e.detail);
});
}
});
},
...mapActions('auth', [
'updateEmail',
])
}
};
</script>
<style scoped>
</style>