576 lines
16 KiB
Vue
576 lines
16 KiB
Vue
<template>
|
|
<Dialog v-model="show" :options="dialogOptions">
|
|
<template #body>
|
|
<div class="bg-white px-4 pb-6 pt-5 sm:px-6">
|
|
<div class="mb-5 flex items-center justify-between">
|
|
<div>
|
|
<h3 class="text-2xl font-semibold leading-6 text-gray-900">
|
|
{{ dialogOptions.title || 'Untitled' }}
|
|
</h3>
|
|
</div>
|
|
<div class="flex items-center gap-1">
|
|
<Button
|
|
v-if="detailMode"
|
|
variant="ghost"
|
|
class="w-7"
|
|
@click="detailMode = false"
|
|
>
|
|
<EditIcon class="h-4 w-4" />
|
|
</Button>
|
|
<Button variant="ghost" class="w-7" @click="show = false">
|
|
<FeatherIcon name="x" class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div v-if="detailMode" class="flex flex-col gap-3.5">
|
|
<div
|
|
v-for="field in detailFields"
|
|
:key="field.name"
|
|
class="flex h-7 items-center gap-2 text-base text-gray-800"
|
|
>
|
|
<div class="grid w-7 place-content-center">
|
|
<component :is="field.icon" />
|
|
</div>
|
|
<div v-if="field.type == 'dropdown'">
|
|
<Dropdown
|
|
:options="field.options"
|
|
class="form-control -ml-2 mr-2 w-full flex-1"
|
|
>
|
|
<template #default="{ open }">
|
|
<Button
|
|
variant="ghost"
|
|
:label="contact[field.name]"
|
|
class="dropdown-button w-full justify-between truncate hover:bg-white"
|
|
>
|
|
<div class="truncate">{{ contact[field.name] }}</div>
|
|
<template #suffix>
|
|
<FeatherIcon
|
|
:name="open ? 'chevron-up' : 'chevron-down'"
|
|
class="h-4 text-gray-600"
|
|
/>
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
</Dropdown>
|
|
</div>
|
|
<div v-else>{{ field.value }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex flex-col gap-4" v-else>
|
|
<div class="flex gap-4" v-for="(section, i) in sections" :key="i">
|
|
<div v-for="(field, j) in section.fields" :key="j" class="flex-1">
|
|
<Link
|
|
v-if="field.type === 'link'"
|
|
variant="outline"
|
|
size="md"
|
|
:label="field.label"
|
|
v-model="_contact[field.name]"
|
|
:doctype="field.doctype"
|
|
:placeholder="field.placeholder"
|
|
/>
|
|
<div class="space-y-1.5" v-if="field.type === 'dropdown'">
|
|
<label class="block text-base text-gray-600">
|
|
{{ field.label }}
|
|
</label>
|
|
<NestedPopover>
|
|
<template #target="{ open }">
|
|
<Button
|
|
:label="_contact[field.name]"
|
|
class="dropdown-button h-8 w-full justify-between truncate rounded border border-gray-300 bg-white px-2.5 py-1.5 text-base placeholder-gray-500 hover:border-gray-400 hover:bg-white hover:shadow-sm focus:border-gray-500 focus:bg-white focus:shadow-sm focus:ring-0 focus-visible:ring-2 focus-visible:ring-gray-400"
|
|
>
|
|
<div class="truncate">{{ _contact[field.name] }}</div>
|
|
<template #suffix>
|
|
<FeatherIcon
|
|
:name="open ? 'chevron-up' : 'chevron-down'"
|
|
class="h-4 text-gray-600"
|
|
/>
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
<template #body>
|
|
<div
|
|
class="my-2 space-y-1.5 divide-y rounded-lg border border-gray-100 bg-white p-1.5 shadow-xl"
|
|
>
|
|
<div class="">
|
|
<div
|
|
v-if="field.options?.length"
|
|
v-for="option in field.options"
|
|
:key="option.value"
|
|
class="group flex w-full items-center justify-between rounded bg-transparent p-1 pl-2 text-base text-gray-800 transition-colors hover:bg-gray-200 active:bg-gray-300"
|
|
>
|
|
<DropdownItem :option="option" />
|
|
</div>
|
|
<div v-else>
|
|
<div class="p-1.5 px-7 text-base text-gray-500">
|
|
No {{ field.label }} Available
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="pt-1.5">
|
|
<Button
|
|
variant="ghost"
|
|
class="w-full !justify-start"
|
|
label="Create New"
|
|
@click="field.create()"
|
|
>
|
|
<template #prefix>
|
|
<FeatherIcon name="plus" class="h-4" />
|
|
</template>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</NestedPopover>
|
|
</div>
|
|
<FormControl
|
|
v-else-if="field.type === 'data'"
|
|
variant="outline"
|
|
size="md"
|
|
type="text"
|
|
:label="field.label"
|
|
:placeholder="field.placeholder"
|
|
v-model="_contact[field.name]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="!detailMode" class="px-4 pb-7 pt-4 sm:px-6">
|
|
<div class="space-y-2">
|
|
<Button
|
|
class="w-full"
|
|
v-for="action in dialogOptions.actions"
|
|
:key="action.label"
|
|
v-bind="action"
|
|
>
|
|
{{ action.label }}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</Dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import NestedPopover from '@/components/NestedPopover.vue'
|
|
import DropdownItem from '@/components/DropdownItem.vue'
|
|
import ContactIcon from '@/components/Icons/ContactIcon.vue'
|
|
import GenderIcon from '@/components/Icons/GenderIcon.vue'
|
|
import EmailIcon from '@/components/Icons/EmailIcon.vue'
|
|
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
|
|
import OrganizationsIcon from '@/components/Icons/OrganizationsIcon.vue'
|
|
import AddressIcon from '@/components/Icons/AddressIcon.vue'
|
|
import CertificateIcon from '@/components/Icons/CertificateIcon.vue'
|
|
import EditIcon from '@/components/Icons/EditIcon.vue'
|
|
import Link from '@/components/Controls/Link.vue'
|
|
import Dropdown from '@/components/frappe-ui/Dropdown.vue'
|
|
import { contactsStore } from '@/stores/contacts'
|
|
import { call } from 'frappe-ui'
|
|
import { ref, nextTick, watch, computed, h } from 'vue'
|
|
import { createToast } from '@/utils'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const props = defineProps({
|
|
contact: {
|
|
type: Object,
|
|
default: {},
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: {
|
|
redirect: true,
|
|
detailMode: false,
|
|
afterInsert: () => {},
|
|
},
|
|
},
|
|
})
|
|
|
|
const router = useRouter()
|
|
const show = defineModel()
|
|
const { contacts } = contactsStore()
|
|
|
|
const detailMode = ref(false)
|
|
const editMode = ref(false)
|
|
let _contact = ref({})
|
|
|
|
async function updateContact() {
|
|
if (!dirty.value) {
|
|
show.value = false
|
|
return
|
|
}
|
|
|
|
const values = { ..._contact.value }
|
|
|
|
let name = await callSetValue(values)
|
|
|
|
handleContactUpdate({ name })
|
|
}
|
|
|
|
async function callSetValue(values) {
|
|
const d = await call('frappe.client.set_value', {
|
|
doctype: 'Contact',
|
|
name: props.contact.name,
|
|
fieldname: values,
|
|
})
|
|
return d.name
|
|
}
|
|
|
|
async function callInsertDoc() {
|
|
if (_contact.value.email_id) {
|
|
_contact.value.email_ids = [{ email_id: _contact.value.email_id }]
|
|
delete _contact.value.email_id
|
|
}
|
|
|
|
if (_contact.value.mobile_no) {
|
|
_contact.value.phone_nos = [{ phone: _contact.value.mobile_no }]
|
|
delete _contact.value.mobile_no
|
|
}
|
|
|
|
const doc = await call('frappe.client.insert', {
|
|
doc: {
|
|
doctype: 'Contact',
|
|
..._contact.value,
|
|
},
|
|
})
|
|
doc.name && handleContactUpdate(doc)
|
|
}
|
|
|
|
function handleContactUpdate(doc) {
|
|
contacts.reload()
|
|
if (doc.name && props.options.redirect) {
|
|
router.push({
|
|
name: 'Contact',
|
|
params: { contactId: doc.name },
|
|
})
|
|
}
|
|
show.value = false
|
|
props.options.afterInsert && props.options.afterInsert(doc)
|
|
}
|
|
|
|
const dialogOptions = computed(() => {
|
|
let title = !editMode.value ? 'New Contact' : _contact.value.full_name
|
|
|
|
let size = detailMode.value ? '' : 'xl'
|
|
let actions = detailMode.value
|
|
? []
|
|
: [
|
|
{
|
|
label: editMode.value ? 'Save' : 'Create',
|
|
variant: 'solid',
|
|
disabled: !dirty.value,
|
|
onClick: () => (editMode.value ? updateContact() : callInsertDoc()),
|
|
},
|
|
]
|
|
|
|
return { title, size, actions }
|
|
})
|
|
|
|
const detailFields = computed(() => {
|
|
let details = [
|
|
{
|
|
icon: ContactIcon,
|
|
name: 'full_name',
|
|
value:
|
|
(_contact.value.salutation ? _contact.value.salutation + '. ' : '') +
|
|
_contact.value.full_name,
|
|
},
|
|
{
|
|
icon: GenderIcon,
|
|
name: 'gender',
|
|
value: _contact.value.gender,
|
|
},
|
|
{
|
|
icon: EmailIcon,
|
|
name: 'email_id',
|
|
value: _contact.value.email_id,
|
|
},
|
|
{
|
|
icon: PhoneIcon,
|
|
name: 'mobile_no',
|
|
value: _contact.value.actual_mobile_no,
|
|
},
|
|
{
|
|
icon: OrganizationsIcon,
|
|
name: 'company_name',
|
|
value: _contact.value.company_name,
|
|
},
|
|
{
|
|
icon: CertificateIcon,
|
|
name: 'designation',
|
|
value: _contact.value.designation,
|
|
},
|
|
{
|
|
icon: AddressIcon,
|
|
name: 'address',
|
|
value: _contact.value.address,
|
|
},
|
|
]
|
|
|
|
return details.filter((detail) => detail.value)
|
|
})
|
|
|
|
const sections = computed(() => {
|
|
return [
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Salutation',
|
|
type: 'link',
|
|
name: 'salutation',
|
|
placeholder: 'Mr./Mrs./Ms...',
|
|
doctype: 'Salutation',
|
|
change: (value) => {
|
|
_contact.value.salutation = value
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'First Name',
|
|
type: 'data',
|
|
name: 'first_name',
|
|
},
|
|
{
|
|
label: 'Last Name',
|
|
type: 'data',
|
|
name: 'last_name',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Email',
|
|
type: props.contact.name ? 'dropdown' : 'data',
|
|
name: 'email_id',
|
|
options:
|
|
props.contact?.email_ids?.map((email) => {
|
|
return {
|
|
name: email.name,
|
|
value: email.email_id,
|
|
selected: email.email_id === props.contact.email_id,
|
|
placeholder: 'john@doe.com',
|
|
onClick: () => {
|
|
_contact.value.email_id = email.email_id
|
|
setAsPrimary('email', email.email_id)
|
|
},
|
|
onSave: (option, isNew) => {
|
|
if (isNew) {
|
|
createNew('email', option.value)
|
|
} else {
|
|
editOption('Contact Email', option.name, option.value)
|
|
}
|
|
},
|
|
onDelete: (option, isNew) => {
|
|
props.contact.email_ids = props.contact.email_ids.filter(
|
|
(email) => email.name !== option.name
|
|
)
|
|
!isNew && deleteOption('Contact Email', option.name)
|
|
},
|
|
}
|
|
}) || [],
|
|
create: () => {
|
|
props.contact?.email_ids?.push({
|
|
name: 'new-1',
|
|
value: '',
|
|
selected: false,
|
|
isNew: true,
|
|
})
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Mobile No.',
|
|
type: props.contact.name ? 'dropdown' : 'data',
|
|
name: 'actual_mobile_no',
|
|
options:
|
|
props.contact?.phone_nos?.map((phone) => {
|
|
return {
|
|
name: phone.name,
|
|
value: phone.phone,
|
|
selected: phone.phone === props.contact.actual_mobile_no,
|
|
placeholder: '+91 1234567890',
|
|
onClick: () => {
|
|
_contact.value.actual_mobile_no = phone.phone
|
|
_contact.value.mobile_no = phone.phone
|
|
setAsPrimary('mobile_no', phone.phone)
|
|
},
|
|
onSave: (option, isNew) => {
|
|
if (isNew) {
|
|
createNew('phone', option.value)
|
|
} else {
|
|
editOption('Contact Phone', option.name, option.value)
|
|
}
|
|
},
|
|
onDelete: (option, isNew) => {
|
|
props.contact.phone_nos = props.contact.phone_nos.filter(
|
|
(phone) => phone.name !== option.name
|
|
)
|
|
!isNew && deleteOption('Contact Phone', option.name)
|
|
},
|
|
}
|
|
}) || [],
|
|
create: () => {
|
|
props.contact?.phone_nos?.push({
|
|
name: 'new-1',
|
|
value: '',
|
|
selected: false,
|
|
isNew: true,
|
|
})
|
|
},
|
|
},
|
|
{
|
|
label: 'Gender',
|
|
type: 'link',
|
|
name: 'gender',
|
|
placeholder: 'Select Gender',
|
|
doctype: 'Gender',
|
|
change: (value) => {
|
|
_contact.value.gender = value
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Organization',
|
|
type: 'link',
|
|
name: 'company_name',
|
|
placeholder: 'Select Organization',
|
|
doctype: 'CRM Organization',
|
|
change: (value) => {
|
|
_contact.value.company_name = value
|
|
},
|
|
link: (data) => {
|
|
router.push({
|
|
name: 'Organization',
|
|
params: { organizationId: data },
|
|
})
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Designation',
|
|
type: 'data',
|
|
name: 'designation',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
fields: [
|
|
{
|
|
label: 'Address',
|
|
type: 'link',
|
|
name: 'address',
|
|
placeholder: 'Select Address',
|
|
doctype: 'Address',
|
|
change: (value) => {
|
|
_contact.value.address = value
|
|
},
|
|
},
|
|
],
|
|
},
|
|
]
|
|
})
|
|
|
|
async function setAsPrimary(field, value) {
|
|
let d = await call('crm.api.contact.set_as_primary', {
|
|
contact: props.contact.name,
|
|
field,
|
|
value,
|
|
})
|
|
if (d) {
|
|
contacts.reload()
|
|
createToast({
|
|
title: 'Contact updated',
|
|
icon: 'check',
|
|
iconClasses: 'text-green-600',
|
|
})
|
|
}
|
|
}
|
|
|
|
async function createNew(field, value) {
|
|
let d = await call('crm.api.contact.create_new', {
|
|
contact: props.contact.name,
|
|
field,
|
|
value,
|
|
})
|
|
if (d) {
|
|
contacts.reload()
|
|
createToast({
|
|
title: 'Contact updated',
|
|
icon: 'check',
|
|
iconClasses: 'text-green-600',
|
|
})
|
|
}
|
|
}
|
|
|
|
async function editOption(doctype, name, value) {
|
|
let d = await call('frappe.client.set_value', {
|
|
doctype,
|
|
name,
|
|
fieldname: doctype == 'Contact Phone' ? 'phone' : 'email',
|
|
value,
|
|
})
|
|
if (d) {
|
|
contacts.reload()
|
|
createToast({
|
|
title: 'Contact updated',
|
|
icon: 'check',
|
|
iconClasses: 'text-green-600',
|
|
})
|
|
}
|
|
}
|
|
|
|
async function deleteOption(doctype, name) {
|
|
let d = await call('frappe.client.delete', {
|
|
doctype,
|
|
name,
|
|
})
|
|
if (d) {
|
|
contacts.reload()
|
|
createToast({
|
|
title: 'Contact updated',
|
|
icon: 'check',
|
|
iconClasses: 'text-green-600',
|
|
})
|
|
}
|
|
}
|
|
|
|
const dirty = computed(() => {
|
|
return JSON.stringify(props.contact) !== JSON.stringify(_contact.value)
|
|
})
|
|
|
|
watch(
|
|
() => show.value,
|
|
(value) => {
|
|
if (!value) return
|
|
detailMode.value = props.options.detailMode
|
|
editMode.value = false
|
|
nextTick(() => {
|
|
_contact.value = { ...props.contact }
|
|
if (_contact.value.name) {
|
|
editMode.value = true
|
|
}
|
|
})
|
|
}
|
|
)
|
|
</script>
|
|
|
|
<style scoped>
|
|
:deep(:has(> .dropdown-button)) {
|
|
width: 100%;
|
|
}
|
|
</style>
|