mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
117 lines
3.2 KiB
Vue
117 lines
3.2 KiB
Vue
<template>
|
|
<b-card id="change_pwd" class="card-border-radius card-background-gray">
|
|
<div>
|
|
<b-row class="mb-4 text-right">
|
|
<b-col class="text-right">
|
|
<a
|
|
class="cursor-pointer"
|
|
@click="showPassword ? (showPassword = !showPassword) : cancelEdit()"
|
|
data-test="open-password-change-form"
|
|
>
|
|
<span class="pointer mr-3">{{ $t('settings.password.change-password') }}</span>
|
|
<b-icon v-if="showPassword" class="pointer ml-3" icon="pencil"></b-icon>
|
|
<b-icon v-else icon="x-circle" class="pointer ml-3" variant="danger"></b-icon>
|
|
</a>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
|
|
<div v-if="!showPassword">
|
|
<validation-observer ref="observer" v-slot="{ handleSubmit }">
|
|
<b-form @submit.stop.prevent="handleSubmit(onSubmit)">
|
|
<b-row class="mb-2">
|
|
<b-col>
|
|
<input-password
|
|
:label="$t('form.password_old')"
|
|
:placeholder="$t('form.password_old')"
|
|
v-model="form.password"
|
|
></input-password>
|
|
</b-col>
|
|
</b-row>
|
|
<input-password-confirmation v-model="form.newPassword" :register="register" />
|
|
<b-row class="text-right">
|
|
<b-col>
|
|
<div class="text-right">
|
|
<b-button
|
|
type="submit"
|
|
:variant="disabled ? 'light' : 'success'"
|
|
class="mt-4"
|
|
:disabled="disabled"
|
|
data-test="submit-new-password-btn"
|
|
>
|
|
{{ $t('form.save') }}
|
|
</b-button>
|
|
</div>
|
|
</b-col>
|
|
</b-row>
|
|
</b-form>
|
|
</validation-observer>
|
|
</div>
|
|
</b-card>
|
|
</template>
|
|
<script>
|
|
import InputPassword from '@/components/Inputs/InputPassword'
|
|
import InputPasswordConfirmation from '@/components/Inputs/InputPasswordConfirmation'
|
|
import { updateUserInfos } from '@/graphql/mutations'
|
|
|
|
export default {
|
|
name: 'UserPassword',
|
|
components: {
|
|
InputPassword,
|
|
InputPasswordConfirmation,
|
|
},
|
|
data() {
|
|
return {
|
|
showPassword: true,
|
|
email: null,
|
|
form: {
|
|
password: '',
|
|
newPassword: {
|
|
password: '',
|
|
passwordRepeat: '',
|
|
},
|
|
},
|
|
register: false,
|
|
}
|
|
},
|
|
methods: {
|
|
cancelEdit() {
|
|
this.showPassword = true
|
|
this.form.password = ''
|
|
this.form.passwordNew = ''
|
|
this.form.passwordNewRepeat = ''
|
|
},
|
|
async onSubmit() {
|
|
this.$apollo
|
|
.mutate({
|
|
mutation: updateUserInfos,
|
|
variables: {
|
|
password: this.form.password,
|
|
passwordNew: this.form.newPassword.password,
|
|
},
|
|
})
|
|
.then(() => {
|
|
this.toastSuccess(this.$t('message.reset'))
|
|
this.cancelEdit()
|
|
})
|
|
.catch((error) => {
|
|
this.toastError(error.message)
|
|
})
|
|
},
|
|
},
|
|
computed: {
|
|
disabled() {
|
|
return !(
|
|
this.form.newPassword.password !== '' &&
|
|
this.form.newPassword.password === this.form.newPassword.passwordRepeat
|
|
)
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style>
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|