2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-04-21 22:51:48 +00:00
|
|
|
<form data-testid="update-profile-form" @submit.prevent="update">
|
2024-03-19 22:48:12 +00:00
|
|
|
<div class="profile form-row">
|
|
|
|
<div class="left">
|
|
|
|
<div class="form-row">
|
|
|
|
<label>
|
|
|
|
Current Password
|
|
|
|
<input
|
|
|
|
v-model="profile.current_password"
|
|
|
|
v-koel-focus
|
|
|
|
name="current_password"
|
|
|
|
placeholder="Required to update your profile"
|
|
|
|
required
|
|
|
|
type="password"
|
|
|
|
data-testid="currentPassword"
|
|
|
|
>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<label>
|
|
|
|
Name
|
|
|
|
<input id="inputProfileName" v-model="profile.name" name="name" required type="text" data-testid="name">
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<label>
|
|
|
|
Email Address
|
|
|
|
<input
|
|
|
|
id="inputProfileEmail" v-model="profile.email" name="email" required type="email"
|
|
|
|
data-testid="email"
|
|
|
|
>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
|
|
|
<label>
|
|
|
|
New Password
|
|
|
|
<PasswordField
|
|
|
|
v-model="profile.new_password"
|
|
|
|
autocomplete="new-password"
|
|
|
|
data-testid="newPassword"
|
|
|
|
minlength="10"
|
|
|
|
placeholder="Leave empty to keep current password"
|
|
|
|
/>
|
|
|
|
<span class="password-rules help">
|
|
|
|
Min. 10 characters. Should be a mix of characters, numbers, and symbols.
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<EditableProfileAvatar :profile="profile" />
|
2022-04-15 14:24:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-row">
|
2022-04-21 22:51:48 +00:00
|
|
|
<Btn class="btn-submit" type="submit">Save</Btn>
|
2024-02-28 04:37:27 +00:00
|
|
|
<span v-if="isDemo" class="demo-notice">
|
2022-04-15 14:24:30 +00:00
|
|
|
Changes will not be saved in the demo version.
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-07-07 18:05:46 +00:00
|
|
|
import { onMounted, ref } from 'vue'
|
2024-01-18 11:13:05 +00:00
|
|
|
import { userStore } from '@/stores'
|
|
|
|
import { authService, UpdateCurrentProfileData } from '@/services'
|
2024-02-28 04:37:27 +00:00
|
|
|
import { logger, parseValidationError } from '@/utils'
|
2022-11-18 17:45:38 +00:00
|
|
|
import { useDialogBox, useMessageToaster } from '@/composables'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-07-07 18:05:46 +00:00
|
|
|
import Btn from '@/components/ui/Btn.vue'
|
2023-08-20 22:35:58 +00:00
|
|
|
import PasswordField from '@/components/ui/PasswordField.vue'
|
2024-03-19 22:48:12 +00:00
|
|
|
import EditableProfileAvatar from '@/components/profile-preferences/EditableProfileAvatar.vue'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-11-18 17:45:38 +00:00
|
|
|
const { toastSuccess } = useMessageToaster()
|
|
|
|
const { showErrorDialog } = useDialogBox()
|
2024-03-19 22:48:12 +00:00
|
|
|
|
|
|
|
const profile = ref<UpdateCurrentProfileData>({} as UpdateCurrentProfileData)
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2024-02-28 04:37:27 +00:00
|
|
|
const isDemo = window.IS_DEMO
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
onMounted(() => {
|
|
|
|
profile.value = {
|
|
|
|
name: userStore.current.name,
|
|
|
|
email: userStore.current.email,
|
2024-03-19 22:48:12 +00:00
|
|
|
avatar: userStore.current.avatar,
|
2022-04-15 17:00:08 +00:00
|
|
|
current_password: null
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
|
|
|
})
|
2022-04-15 17:00:08 +00:00
|
|
|
|
|
|
|
const update = async () => {
|
|
|
|
if (!profile.value) {
|
|
|
|
throw Error()
|
|
|
|
}
|
|
|
|
|
2024-02-28 04:37:27 +00:00
|
|
|
if (isDemo) {
|
2022-11-18 17:45:38 +00:00
|
|
|
toastSuccess('Profile updated.')
|
2022-04-29 20:15:10 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
try {
|
2024-01-18 11:13:05 +00:00
|
|
|
await authService.updateProfile(Object.assign({}, profile.value))
|
2022-04-15 17:00:08 +00:00
|
|
|
profile.value.current_password = null
|
|
|
|
delete profile.value.new_password
|
2022-11-18 17:45:38 +00:00
|
|
|
toastSuccess('Profile updated.')
|
|
|
|
} catch (error: any) {
|
|
|
|
const msg = error.response.status === 422 ? parseValidationError(error.response.data)[0] : 'Unknown error.'
|
2024-03-19 22:48:12 +00:00
|
|
|
await showErrorDialog(msg, 'Error')
|
2022-11-18 17:45:38 +00:00
|
|
|
logger.log(error)
|
2022-04-15 17:00:08 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2023-08-20 22:35:58 +00:00
|
|
|
form {
|
2024-03-19 22:48:12 +00:00
|
|
|
width: 66%;
|
2023-08-20 22:35:58 +00:00
|
|
|
|
|
|
|
input {
|
|
|
|
width: 100%;
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
2024-03-19 22:48:12 +00:00
|
|
|
|
|
|
|
.profile {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 2.5rem;
|
|
|
|
|
|
|
|
.left {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.password-rules {
|
2022-07-22 16:15:30 +00:00
|
|
|
display: block;
|
2022-04-15 14:24:30 +00:00
|
|
|
margin-top: .75rem;
|
|
|
|
}
|
|
|
|
|
2022-04-29 20:15:10 +00:00
|
|
|
.demo-notice {
|
|
|
|
font-size: .95rem;
|
|
|
|
opacity: .7;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
</style>
|