156 lines
3.1 KiB
Vue
156 lines
3.1 KiB
Vue
<template>
|
|
<fragment>
|
|
<tr
|
|
v-if="!modalVisible"
|
|
>
|
|
<td class="settings-label">
|
|
{{ $t("password") }}
|
|
</td>
|
|
<td class="settings-value">
|
|
</td>
|
|
<td class="settings-button">
|
|
<a
|
|
class="edit-link"
|
|
@click.prevent="openModal()"
|
|
>
|
|
{{ $t('edit') }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
<tr
|
|
v-if="modalVisible"
|
|
class="expanded"
|
|
>
|
|
<td
|
|
colspan="3"
|
|
novalidate="novalidate"
|
|
>
|
|
<div
|
|
v-once
|
|
class="dialog-title"
|
|
>
|
|
{{ $t("password") }}
|
|
</div>
|
|
<div
|
|
v-once
|
|
class="dialog-disclaimer"
|
|
>
|
|
{{ $t("changePasswordDisclaimer") }}
|
|
</div>
|
|
|
|
<current-password-input
|
|
:show-forget-password="true"
|
|
custom-label="currentPass"
|
|
@passwordValue="passwordUpdates.password = $event"
|
|
/>
|
|
<current-password-input
|
|
custom-label="newPass"
|
|
@passwordValue="passwordUpdates.newPassword = $event"
|
|
/>
|
|
<current-password-input
|
|
custom-label="confirmPass"
|
|
@passwordValue="passwordUpdates.confirmPassword = $event"
|
|
/>
|
|
|
|
<save-cancel-buttons
|
|
:disable-save="inputsInvalid"
|
|
@saveClicked="changePassword( passwordUpdates)"
|
|
@cancelClicked="closeModal()"
|
|
/>
|
|
</td>
|
|
</tr>
|
|
</fragment>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~@/assets/scss/colors.scss';
|
|
|
|
.input-group {
|
|
position: relative;
|
|
background: white;
|
|
}
|
|
|
|
input {
|
|
margin-right: 2rem;
|
|
}
|
|
|
|
.input-floating-checkmark {
|
|
position: absolute;
|
|
background: none !important;
|
|
right: 0.5rem;
|
|
top: 0.5rem;
|
|
|
|
width: 1rem;
|
|
height: 1rem;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.input-group.is-valid {
|
|
border-color: $green-10 !important;
|
|
}
|
|
|
|
.input-group:not(.is-valid) {
|
|
.check-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.check-icon {
|
|
width: 12px;
|
|
height: 10px;
|
|
color: $green-50;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
import axios from 'axios';
|
|
|
|
import SaveCancelButtons from '../components/saveCancelButtons.vue';
|
|
import { InlineSettingMixin } from '../components/inlineSettingMixin';
|
|
import CurrentPasswordInput from '../components/currentPasswordInput.vue';
|
|
|
|
export default {
|
|
components: { CurrentPasswordInput, SaveCancelButtons },
|
|
mixins: [InlineSettingMixin],
|
|
data () {
|
|
return {
|
|
passwordUpdates: {
|
|
password: '',
|
|
newPassword: '',
|
|
confirmPassword: '',
|
|
},
|
|
};
|
|
},
|
|
computed: {
|
|
inputsInvalid () {
|
|
if (!this.passwordUpdates.password) {
|
|
return true;
|
|
}
|
|
|
|
return this.passwordUpdates.newPassword !== this.passwordUpdates.confirmPassword;
|
|
},
|
|
},
|
|
methods: {
|
|
async changePassword (updates) {
|
|
await axios.put('/api/v4/user/auth/update-password', updates);
|
|
|
|
this.passwordUpdates = {};
|
|
this.$store.dispatch('snackbars:add', {
|
|
title: 'Habitica',
|
|
text: this.$t('passwordSuccess'),
|
|
type: 'success',
|
|
timeout: true,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|