mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
225 lines
7.7 KiB
Vue
225 lines
7.7 KiB
Vue
<template>
|
|
<div class="setting-main-container">
|
|
<form action="" @submit.prevent="updateUserData">
|
|
<div class="card setting-card">
|
|
<div class="page-header">
|
|
<h3 class="page-title">{{ $t('settings.account_settings.account_settings') }}</h3>
|
|
<p class="page-sub-title">
|
|
{{ $t('settings.account_settings.section_description') }}
|
|
</p>
|
|
</div>
|
|
<div class="row mb-4">
|
|
<div class="col-md-6">
|
|
<label class="input-label">{{ $tc('settings.account_settings.profile_picture') }}</label>
|
|
<div id="pick-avatar" class="image-upload-box avatar-upload">
|
|
<div class="overlay">
|
|
<font-awesome-icon class="white-icon" icon="camera"/>
|
|
</div>
|
|
<img v-if="previewAvatar" :src="previewAvatar" class="preview-logo">
|
|
<div v-if="!previewAvatar" class="upload-content">
|
|
<font-awesome-icon class="upload-icon" icon="cloud-upload-alt"/>
|
|
<p class="upload-text"> {{ $tc('general.choose_file') }} </p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<avatar-cropper
|
|
:labels="{ submit: 'Submit', cancel: 'Cancel'}"
|
|
:cropper-options="cropperOptions"
|
|
:output-options="cropperOutputOptions"
|
|
:output-quality="0.8"
|
|
:upload-handler="cropperHandler"
|
|
trigger="#pick-avatar"
|
|
@changed="setFileObject"
|
|
@error="handleUploadError"
|
|
/>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6 mb-4 form-group">
|
|
<label class="input-label">{{ $tc('settings.account_settings.name') }}</label>
|
|
<base-input
|
|
v-model="formData.name"
|
|
:invalid="$v.formData.name.$error"
|
|
:placeholder="$t('settings.user_profile.name')"
|
|
@input="$v.formData.name.$touch()"
|
|
/>
|
|
<div v-if="$v.formData.name.$error">
|
|
<span v-if="!$v.formData.name.required" class="text-danger">{{ $tc('validation.required') }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 mb-4 form-group">
|
|
<label class="input-label">{{ $tc('settings.account_settings.email') }}</label>
|
|
<base-input
|
|
v-model="formData.email"
|
|
:invalid="$v.formData.email.$error"
|
|
:placeholder="$t('settings.user_profile.email')"
|
|
@input="$v.formData.email.$touch()"
|
|
/>
|
|
<div v-if="$v.formData.email.$error">
|
|
<span v-if="!$v.formData.email.required" class="text-danger">{{ $tc('validation.required') }}</span>
|
|
<span v-if="!$v.formData.email.email" class="text-danger">{{ $tc('validation.email_incorrect') }}</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 mb-4 form-group">
|
|
<label class="input-label">{{ $tc('settings.account_settings.password') }}</label>
|
|
<base-input
|
|
v-model="formData.password"
|
|
:invalid="$v.formData.password.$error"
|
|
:placeholder="$t('settings.user_profile.password')"
|
|
type="password"
|
|
@input="$v.formData.password.$touch()"
|
|
/>
|
|
<div v-if="$v.formData.password.$error">
|
|
<span v-if="!$v.formData.password.minLength" class="text-danger"> {{ $tc('validation.password_min_length', $v.formData.password.$params.minLength.min, {count: $v.formData.password.$params.minLength.min}) }} </span>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6 mb-4 form-group">
|
|
<label class="input-label">{{ $tc('settings.account_settings.confirm_password') }}</label>
|
|
<base-input
|
|
v-model="formData.confirm_password"
|
|
:invalid="$v.formData.confirm_password.$error"
|
|
:placeholder="$t('settings.user_profile.confirm_password')"
|
|
type="password"
|
|
@input="$v.formData.confirm_password.$touch()"
|
|
/>
|
|
<div v-if="$v.formData.confirm_password.$error">
|
|
<span v-if="!$v.formData.confirm_password.sameAsPassword" class="text-danger">{{ $tc('validation.password_incorrect') }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-4">
|
|
<div class="col-md-12 input-group">
|
|
<base-button
|
|
:loading="isLoading"
|
|
:disabled="isLoading"
|
|
icon="save"
|
|
color="theme"
|
|
type="submit"
|
|
>
|
|
{{ $tc('settings.account_settings.save') }}
|
|
</base-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { validationMixin } from 'vuelidate'
|
|
import { mapActions } from 'vuex'
|
|
import AvatarCropper from 'vue-avatar-cropper'
|
|
const { required, requiredIf, sameAs, email, minLength } = require('vuelidate/lib/validators')
|
|
|
|
export default {
|
|
components: { AvatarCropper },
|
|
mixins: [validationMixin],
|
|
data () {
|
|
return {
|
|
cropperOutputOptions: {
|
|
width: 150,
|
|
height: 150
|
|
},
|
|
cropperOptions: {
|
|
autoCropArea: 1,
|
|
viewMode: 0,
|
|
movable: true,
|
|
zoomable: true
|
|
},
|
|
formData: {
|
|
name: null,
|
|
email: null,
|
|
password: null,
|
|
confirm_password: null
|
|
},
|
|
isLoading: false,
|
|
previewAvatar: null,
|
|
fileObject: null
|
|
}
|
|
},
|
|
validations: {
|
|
formData: {
|
|
name: {
|
|
required
|
|
},
|
|
email: {
|
|
required,
|
|
email
|
|
},
|
|
password: {
|
|
minLength: minLength(5)
|
|
},
|
|
confirm_password: {
|
|
required: requiredIf('isRequired'),
|
|
sameAsPassword: sameAs('password')
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
isRequired () {
|
|
if (this.formData.password === null || this.formData.password === undefined || this.formData.password === '') {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
},
|
|
mounted () {
|
|
this.setInitialData()
|
|
},
|
|
methods: {
|
|
...mapActions('userProfile', [
|
|
'loadData',
|
|
'editUser',
|
|
'uploadAvatar'
|
|
]),
|
|
cropperHandler (cropper) {
|
|
this.previewAvatar = cropper.getCroppedCanvas().toDataURL(this.cropperOutputMime)
|
|
},
|
|
setFileObject (file) {
|
|
this.fileObject = file
|
|
},
|
|
handleUploadError (message, type, xhr) {
|
|
window.toastr['error']('Oops! Something went wrong...')
|
|
},
|
|
async setInitialData () {
|
|
let response = await this.loadData()
|
|
this.formData.name = response.data.name
|
|
this.formData.email = response.data.email
|
|
if (response.data.avatar) {
|
|
this.previewAvatar = response.data.avatar
|
|
} else {
|
|
this.previewAvatar = '/images/default-avatar.jpg'
|
|
}
|
|
},
|
|
async updateUserData () {
|
|
this.$v.formData.$touch()
|
|
if (this.$v.$invalid) {
|
|
return true
|
|
}
|
|
this.isLoading = true
|
|
let data = {
|
|
name: this.formData.name,
|
|
email: this.formData.email
|
|
}
|
|
if (this.formData.password != null && this.formData.password !== undefined && this.formData.password !== '') {
|
|
data = { ...data, password: this.formData.password }
|
|
}
|
|
let response = await this.editUser(data)
|
|
if (response.data.success) {
|
|
this.isLoading = false
|
|
if (this.fileObject && this.previewAvatar) {
|
|
let avatarData = new FormData()
|
|
avatarData.append('admin_avatar', JSON.stringify({
|
|
name: this.fileObject.name,
|
|
data: this.previewAvatar
|
|
}))
|
|
this.uploadAvatar(avatarData)
|
|
}
|
|
window.toastr['success'](this.$t('settings.account_settings.updated_message'))
|
|
return true
|
|
}
|
|
window.toastr['error'](response.data.error)
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
</script>
|