Files
ezbookkeeping/src/views/mobile/users/UserProfile.vue
T
2020-11-05 00:02:31 +08:00

236 lines
8.2 KiB
Vue

<template>
<f7-page>
<f7-navbar :title="$t('User Profile')" :back-link="$t('Back')"></f7-navbar>
<f7-list no-hairlines-md class="skeleton-text" v-if="loading">
<f7-list-input label="Password" placeholder="Your password"></f7-list-input>
<f7-list-input label="Confirmation Password" placeholder="Re-enter the password"></f7-list-input>
<f7-list-input label="E-mail" placeholder="Your email address"></f7-list-input>
<f7-list-input label="Nickname" placeholder="Your nickname"></f7-list-input>
</f7-list>
<f7-list no-hairlines-md v-else-if="!loading">
<f7-list-input
type="password"
clear-button
:label="$t('Password')"
:placeholder="$t('Your password')"
:value="password"
@input="password = $event.target.value"
></f7-list-input>
<f7-list-input
type="password"
clear-button
:label="$t('Confirmation Password')"
:placeholder="$t('Re-enter the password')"
:value="confirmPassword"
@input="confirmPassword = $event.target.value"
></f7-list-input>
<f7-list-input
type="email"
clear-button
:label="$t('E-mail')"
:placeholder="$t('Your email address')"
:value="email"
@input="email = $event.target.value"
></f7-list-input>
<f7-list-input
type="text"
clear-button
:label="$t('Nickname')"
:placeholder="$t('Your nickname')"
:value="nickname"
@input="nickname = $event.target.value"
></f7-list-input>
<f7-list-item class="lab-list-item-error-info" v-if="inputIsInvalid" :footer="$t(inputInvalidProblemMessage)"></f7-list-item>
</f7-list>
<f7-button large fill :class="{ 'disabled': inputIsNotChanged || updating }" :text="$t('Update')" @click="update"></f7-button>
<f7-sheet
style="height:auto"
:opened="showInputPasswordSheet" @sheet:closed="showInputPasswordSheet = false"
>
<div class="sheet-modal-swipe-step">
<div class="display-flex padding justify-content-space-between align-items-center">
<div style="font-size: 18px"><b v-t="'Current Password'"></b></div>
</div>
<div class="padding-horizontal padding-bottom">
<p class="input-password-tips">{{ $t('Please enter your current password when modifying your password') }}</p>
<f7-list no-hairlines class="input-password-form">
<f7-list-input
type="password"
outline
clear-button
:placeholder="$t('Password')"
:value="currentPassword"
@input="currentPassword = $event.target.value"
></f7-list-input>
</f7-list>
<f7-button large fill :class="{ 'disabled': !currentPassword || updating }" :text="$t('Continue')" @click="update"></f7-button>
</div>
</div>
</f7-sheet>
</f7-page>
</template>
<script>
export default {
data() {
return {
currentPassword: '',
password: '',
confirmPassword: '',
oldEmail: '',
email: '',
oldNickname: '',
nickname: '',
loading: true,
updating: false,
showInputPasswordSheet: false
};
},
computed: {
inputIsNotChanged() {
return !!this.inputIsNotChangedProblemMessage;
},
inputIsInvalid() {
return !!this.inputInvalidProblemMessage;
},
inputIsNotChangedProblemMessage() {
if (!this.password && !this.confirmPassword && !this.email && !this.nickname) {
return 'Nothing has been modified';
} else if (!this.password && !this.confirmPassword && this.email === this.oldEmail && this.nickname === this.oldNickname) {
return 'Nothing has been modified';
} else if (!this.password && this.confirmPassword) {
return 'Password cannot be empty';
} else if (this.password && !this.confirmPassword) {
return 'Confirmation password cannot be empty';
} else {
return null;
}
},
inputInvalidProblemMessage() {
if (this.password && this.confirmPassword && this.password !== this.confirmPassword) {
return 'Password and confirmation password do not match';
} else {
return null;
}
}
},
created() {
const self = this;
const router = self.$f7router;
self.loading = true;
self.$services.getProfile().then(response => {
self.loading = false;
const data = response.data;
if (!data || !data.success || !data.result) {
self.$alert('Unable to get user profile', () => {
router.back();
});
return;
}
self.oldEmail = data.result.email;
self.oldNickname = data.result.nickname;
self.email = self.oldEmail
self.nickname = self.oldNickname;
}).catch(error => {
self.loading = false;
if (error.response && error.response.data && error.response.data.errorMessage) {
self.$alert({ error: error.response.data }, () => {
router.back();
});
} else if (!error.processed) {
self.$alert('Unable to get user profile', () => {
router.back();
});
}
});
},
methods: {
update() {
const self = this;
const router = self.$f7router;
self.showInputPasswordSheet = false;
let problemMessage = self.inputIsNotChangedProblemMessage || self.inputInvalidProblemMessage;
if (problemMessage) {
self.$alert(problemMessage);
return;
}
if (self.password && !self.currentPassword) {
self.showInputPasswordSheet = true;
return;
}
self.updating = true;
self.$showLoading(() => self.updating);
self.$services.updateProfile({
password: self.password,
oldPassword: self.currentPassword,
email: self.email,
nickname: self.nickname
}).then(response => {
self.updating = false;
self.$hideLoading();
self.currentPassword = '';
const data = response.data;
if (!data || !data.success || !data.result) {
self.$alert('Unable to update user profile');
return;
}
if (self.nickname) {
self.$user.updateUserNickname(self.nickname);
}
if (typeof(data.result) === 'string') {
self.$user.updateToken(data.result);
}
self.$toast('Your profile has been successfully updated');
router.back('/settings', { force: true });
}).catch(error => {
self.updating = false;
self.$hideLoading();
self.currentPassword = '';
if (error.response && error.response.data && error.response.data.errorMessage) {
self.$alert({ error: error.response.data });
} else if (!error.processed) {
self.$alert('Unable to update user profile');
}
});
}
}
};
</script>
<style scoped>
.input-password-tips {
margin-top: 0;
}
.input-password-form {
margin-top: 0;
margin-bottom: 10px;
}
</style>