172 lines
4.6 KiB
Vue
172 lines
4.6 KiB
Vue
<template>
|
|
<div class="flex flex-col gap-4">
|
|
<div v-for="section in allFields" :key="section.section">
|
|
<div class="grid grid-cols-3 gap-4">
|
|
<div v-for="field in section.fields" :key="field.name">
|
|
<div class="mb-2 text-sm text-gray-600">{{ field.label }}</div>
|
|
<FormControl
|
|
v-if="field.type === 'select'"
|
|
type="select"
|
|
class="form-control"
|
|
:options="field.options"
|
|
v-model="newLead[field.name]"
|
|
>
|
|
<template v-if="field.prefix" #prefix>
|
|
<IndicatorIcon :class="field.prefix" />
|
|
</template>
|
|
</FormControl>
|
|
<FormControl
|
|
v-else-if="field.type === 'email'"
|
|
type="email"
|
|
v-model="newLead[field.name]"
|
|
/>
|
|
<Link
|
|
v-else-if="field.type === 'link'"
|
|
class="form-control"
|
|
:value="newLead[field.name]"
|
|
:doctype="field.doctype"
|
|
@change="(e) => field.change(e)"
|
|
:placeholder="field.placeholder"
|
|
:onCreate="field.create"
|
|
/>
|
|
<Link
|
|
v-else-if="field.type === 'user'"
|
|
class="form-control"
|
|
:value="getUser(newLead[field.name]).full_name"
|
|
:doctype="field.doctype"
|
|
@change="(e) => field.change(e)"
|
|
:placeholder="field.placeholder"
|
|
:hideMe="true"
|
|
>
|
|
<template #prefix>
|
|
<UserAvatar class="mr-2" :user="newLead[field.name]" size="sm" />
|
|
</template>
|
|
<template #item-prefix="{ option }">
|
|
<UserAvatar class="mr-2" :user="option.value" size="sm" />
|
|
</template>
|
|
<template #item-label="{ option }">
|
|
<Tooltip :text="option.value">
|
|
<div class="cursor-pointer">
|
|
{{ getUser(option.value).full_name }}
|
|
</div>
|
|
</Tooltip>
|
|
</template>
|
|
</Link>
|
|
<FormControl
|
|
v-else
|
|
type="text"
|
|
:placeholder="field.placeholder"
|
|
v-model="newLead[field.name]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import IndicatorIcon from '@/components/Icons/IndicatorIcon.vue'
|
|
import UserAvatar from '@/components/UserAvatar.vue'
|
|
import Link from '@/components/Controls/Link.vue'
|
|
import { usersStore } from '@/stores/users'
|
|
import { statusesStore } from '@/stores/statuses'
|
|
import { Tooltip } from 'frappe-ui'
|
|
import { computed, onMounted, ref } from 'vue'
|
|
|
|
const { getUser } = usersStore()
|
|
const { getLeadStatus, statusOptions } = statusesStore()
|
|
|
|
const props = defineProps({
|
|
newLead: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const allFields = computed(() => {
|
|
return [
|
|
{
|
|
section: 'Lead Details',
|
|
fields: [
|
|
{
|
|
label: 'Salutation',
|
|
name: 'salutation',
|
|
type: 'link',
|
|
placeholder: 'Mr.',
|
|
doctype: 'Salutation',
|
|
change: (data) => (props.newLead.salutation = data),
|
|
},
|
|
{
|
|
label: 'First Name',
|
|
name: 'first_name',
|
|
type: 'data',
|
|
placeholder: 'John',
|
|
},
|
|
{
|
|
label: 'Last Name',
|
|
name: 'last_name',
|
|
type: 'data',
|
|
placeholder: 'Doe',
|
|
},
|
|
{
|
|
label: 'Email',
|
|
name: 'email',
|
|
type: 'data',
|
|
placeholder: 'john@doe.com',
|
|
},
|
|
{
|
|
label: 'Mobile No',
|
|
name: 'mobile_no',
|
|
type: 'data',
|
|
placeholder: '+91 9876543210',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
section: 'Other Details',
|
|
fields: [
|
|
{
|
|
label: 'Organization',
|
|
name: 'organization',
|
|
type: 'data',
|
|
placeholder: 'Frappé Technologies',
|
|
},
|
|
{
|
|
label: 'Status',
|
|
name: 'status',
|
|
type: 'select',
|
|
options: statusOptions(
|
|
'lead',
|
|
(field, value) => (props.newLead[field] = value)
|
|
),
|
|
prefix: getLeadStatus(props.newLead.status).iconColorClass,
|
|
},
|
|
{
|
|
label: 'Lead Owner',
|
|
name: 'lead_owner',
|
|
type: 'user',
|
|
placeholder: 'Lead Owner',
|
|
doctype: 'User',
|
|
change: (data) => (props.newLead.lead_owner = data),
|
|
},
|
|
],
|
|
},
|
|
]
|
|
})
|
|
|
|
onMounted(() => {
|
|
if (!props.newLead.status) {
|
|
props.newLead.status = getLeadStatus(props.newLead.status).name
|
|
}
|
|
if (!props.newLead.lead_owner) {
|
|
props.newLead.lead_owner = getUser().email
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
:deep(.form-control select) {
|
|
padding-left: 2rem;
|
|
}
|
|
</style>
|