165 lines
5.0 KiB
Vue
165 lines
5.0 KiB
Vue
<template>
|
|
<div class="flex h-full flex-col gap-8 p-8 text-ink-gray-9">
|
|
<div class="flex-1 flex flex-col gap-8 mt-2 overflow-y-auto">
|
|
<div v-if="profile" class="flex w-full items-center justify-between">
|
|
<FileUploader
|
|
@success="(file) => updateImage(file.file_url)"
|
|
:validateFile="validateIsImageFile"
|
|
>
|
|
<template #default="{ openFileSelector, error: _error }">
|
|
<div class="flex items-center gap-4">
|
|
<div class="group relative !size-[66px]">
|
|
<Avatar
|
|
class="!size-16"
|
|
:image="profile.user_image"
|
|
:label="profile.full_name"
|
|
/>
|
|
<component
|
|
:is="profile.user_image ? Dropdown : 'div'"
|
|
v-bind="
|
|
profile.user_image
|
|
? {
|
|
options: [
|
|
{
|
|
icon: 'upload',
|
|
label: profile.user_image
|
|
? __('Change image')
|
|
: __('Upload image'),
|
|
onClick: openFileSelector,
|
|
},
|
|
{
|
|
icon: 'trash-2',
|
|
label: __('Remove image'),
|
|
onClick: () => updateImage(),
|
|
},
|
|
],
|
|
}
|
|
: { onClick: openFileSelector }
|
|
"
|
|
class="!absolute bottom-0 left-0 right-0"
|
|
>
|
|
<div
|
|
class="z-1 absolute bottom-0.5 left-0 right-0.5 flex h-9 cursor-pointer items-center justify-center rounded-b-full bg-black bg-opacity-40 pt-3 opacity-0 duration-300 ease-in-out group-hover:opacity-100"
|
|
style="
|
|
-webkit-clip-path: inset(12px 0 0 0);
|
|
clip-path: inset(12px 0 0 0);
|
|
"
|
|
>
|
|
<CameraIcon class="size-4 cursor-pointer text-white" />
|
|
</div>
|
|
</component>
|
|
</div>
|
|
<div class="flex flex-col gap-1">
|
|
<span class="text-2xl font-semibold text-ink-gray-9">
|
|
{{ profile.full_name }}
|
|
</span>
|
|
<span class="text-base text-ink-gray-7">
|
|
{{ profile.email }}
|
|
</span>
|
|
<ErrorMessage :message="__(_error)" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</FileUploader>
|
|
<Button
|
|
:label="__('Change Password')"
|
|
icon-left="lock"
|
|
@click="showChangePasswordModal = true"
|
|
/>
|
|
<ChangePasswordModal
|
|
v-if="showChangePasswordModal"
|
|
v-model="showChangePasswordModal"
|
|
/>
|
|
</div>
|
|
<div class="flex flex-col gap-4">
|
|
<div class="flex justify-between gap-4">
|
|
<FormControl
|
|
class="w-full"
|
|
:label="__('First name')"
|
|
v-model="profile.first_name"
|
|
/>
|
|
<FormControl
|
|
class="w-full"
|
|
:label="__('Last name')"
|
|
v-model="profile.last_name"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex justify-between items-center">
|
|
<div>
|
|
<ErrorMessage :message="error" />
|
|
</div>
|
|
<Button
|
|
variant="solid"
|
|
:label="__('Update')"
|
|
:disabled="!dirty"
|
|
:loading="setUser.loading"
|
|
@click="setUser.submit()"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import CameraIcon from '@/components/Icons/CameraIcon.vue'
|
|
import ChangePasswordModal from '@/components/Modals/ChangePasswordModal.vue'
|
|
import { usersStore } from '@/stores/users'
|
|
import { validateIsImageFile } from '@/utils'
|
|
import {
|
|
Dropdown,
|
|
FileUploader,
|
|
Avatar,
|
|
createResource,
|
|
toast,
|
|
} from 'frappe-ui'
|
|
import { ref, computed, onMounted } from 'vue'
|
|
|
|
const { getUser, users } = usersStore()
|
|
|
|
const user = computed(() => getUser() || {})
|
|
|
|
const showChangePasswordModal = ref(false)
|
|
|
|
const profile = ref({})
|
|
const error = ref('')
|
|
|
|
const dirty = computed(() => {
|
|
return (
|
|
profile.value.first_name !== user.value.first_name ||
|
|
profile.value.last_name !== user.value.last_name
|
|
)
|
|
})
|
|
|
|
const setUser = createResource({
|
|
url: 'frappe.client.set_value',
|
|
makeParams() {
|
|
return {
|
|
doctype: 'User',
|
|
name: user.value.name,
|
|
fieldname: {
|
|
first_name: profile.value.first_name,
|
|
last_name: profile.value.last_name,
|
|
user_image: profile.value.user_image,
|
|
},
|
|
}
|
|
},
|
|
onSuccess: () => {
|
|
error.value = ''
|
|
toast.success(__('Profile updated successfully'))
|
|
users.reload()
|
|
},
|
|
onError: (err) => {
|
|
error.value = err.messages[0] || __('Failed to update profile')
|
|
},
|
|
})
|
|
|
|
function updateImage(fileUrl = '') {
|
|
profile.value.user_image = fileUrl
|
|
setUser.submit()
|
|
}
|
|
|
|
onMounted(() => {
|
|
profile.value = { ...user.value }
|
|
})
|
|
</script>
|