crm/frontend/src/pages/MobileOrganization.vue

519 lines
14 KiB
Vue

<template>
<LayoutHeader v-if="organization.doc">
<header
class="relative flex h-10.5 items-center justify-between gap-2 py-2.5 pl-2"
>
<Breadcrumbs :items="breadcrumbs">
<template #prefix="{ item }">
<Icon v-if="item.icon" :icon="item.icon" class="mr-2 h-4" />
</template>
</Breadcrumbs>
</header>
</LayoutHeader>
<div v-if="organization.doc" class="flex flex-col h-full overflow-hidden">
<FileUploader
@success="changeOrganizationImage"
:validateFile="validateIsImageFile"
>
<template #default="{ openFileSelector, error }">
<div class="flex flex-col items-start justify-start gap-4 p-4">
<div class="flex gap-4 items-center">
<div class="group relative h-14.5 w-14.5">
<Avatar
size="3xl"
class="h-14.5 w-14.5"
:label="organization.doc.organization_name"
:image="organization.doc.organization_logo"
/>
<component
:is="organization.doc.organization_logo ? Dropdown : 'div'"
v-bind="
organization.doc.organization_logo
? {
options: [
{
icon: 'upload',
label: organization.doc.organization_logo
? __('Change image')
: __('Upload image'),
onClick: openFileSelector,
},
{
icon: 'trash-2',
label: __('Remove image'),
onClick: () => changeOrganizationImage(''),
},
],
}
: { onClick: openFileSelector }
"
class="!absolute bottom-0 left-0 right-0"
>
<div
class="z-1 absolute bottom-0 left-0 right-0 flex h-14 cursor-pointer items-center justify-center rounded-b-full bg-black bg-opacity-40 pt-5 opacity-0 duration-300 ease-in-out group-hover:opacity-100"
style="
-webkit-clip-path: inset(22px 0 0 0);
clip-path: inset(22px 0 0 0);
"
>
<CameraIcon class="h-6 w-6 cursor-pointer text-white" />
</div>
</component>
</div>
<div class="flex flex-col gap-2 truncate">
<div class="truncate text-lg font-medium text-ink-gray-9">
{{ organization.doc.name }}
</div>
<div class="flex items-center gap-1.5">
<Button @click="openWebsite">
<FeatherIcon name="link" class="h-4 w-4" />
</Button>
<Button
:label="__('Delete')"
theme="red"
size="sm"
iconLeft="trash-2"
@click="deleteOrganization"
/>
</div>
<ErrorMessage :message="__(error)" />
</div>
</div>
</div>
</template>
</FileUploader>
<Tabs as="div" v-model="tabIndex" :tabs="tabs" class="overflow-auto">
<TabList class="!px-4" v-slot="{ tab, selected }">
<button
v-if="tab.name !== 'Details'"
class="group flex items-center gap-2 border-b border-transparent py-2.5 text-base text-ink-gray-5 duration-300 ease-in-out hover:border-outline-gray-3 hover:text-ink-gray-9"
:class="{ 'text-ink-gray-9': selected }"
>
<component v-if="tab.icon" :is="tab.icon" class="h-5" />
{{ __(tab.label) }}
<Badge
class="group-hover:bg-surface-gray-7"
:class="[selected ? 'bg-surface-gray-7' : 'bg-gray-600']"
variant="solid"
theme="gray"
size="sm"
>
{{ tab.count }}
</Badge>
</button>
</TabList>
<TabPanel v-slot="{ tab }">
<div v-if="tab.name == 'Details'">
<div
v-if="sections.data"
class="flex flex-1 flex-col justify-between overflow-hidden"
>
<SidePanelLayout
:sections="sections.data"
doctype="CRM Organization"
:docname="organization.doc.name"
@reload="sections.reload"
/>
</div>
</div>
<DealsListView
class="mt-4"
v-if="tab.label === 'Deals' && rows.length"
:rows="rows"
:columns="columns"
:options="{ selectable: false, showTooltip: false }"
/>
<ContactsListView
class="mt-4"
v-if="tab.label === 'Contacts' && rows.length"
:rows="rows"
:columns="columns"
:options="{ selectable: false, showTooltip: false }"
/>
<div
v-if="!rows.length && tab.name !== 'Details'"
class="grid flex-1 place-items-center text-xl font-medium text-ink-gray-4"
>
<div class="flex flex-col items-center justify-center space-y-3">
<component :is="tab.icon" class="!h-10 !w-10" />
<div>{{ __('No {0} Found', [__(tab.label)]) }}</div>
</div>
</div>
</TabPanel>
</Tabs>
</div>
</template>
<script setup>
import SidePanelLayout from '@/components/SidePanelLayout.vue'
import Icon from '@/components/Icon.vue'
import LayoutHeader from '@/components/LayoutHeader.vue'
import DealsListView from '@/components/ListViews/DealsListView.vue'
import ContactsListView from '@/components/ListViews/ContactsListView.vue'
import DetailsIcon from '@/components/Icons/DetailsIcon.vue'
import CameraIcon from '@/components/Icons/CameraIcon.vue'
import DealsIcon from '@/components/Icons/DealsIcon.vue'
import ContactsIcon from '@/components/Icons/ContactsIcon.vue'
import { showAddressModal, addressProps } from '@/composables/modals'
import { useDocument } from '@/data/document'
import { getSettings } from '@/stores/settings'
import { getMeta } from '@/stores/meta'
import { globalStore } from '@/stores/global'
import { usersStore } from '@/stores/users'
import { statusesStore } from '@/stores/statuses'
import { getView } from '@/utils/view'
import { formatDate, timeAgo, validateIsImageFile } from '@/utils'
import {
Breadcrumbs,
Avatar,
FileUploader,
Dropdown,
Tabs,
TabList,
TabPanel,
call,
createListResource,
usePageMeta,
createResource,
toast,
} from 'frappe-ui'
import { h, computed, ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'
const props = defineProps({
organizationId: {
type: String,
required: true,
},
})
const { brand } = getSettings()
const { getUser } = usersStore()
const { $dialog } = globalStore()
const { getDealStatus } = statusesStore()
const { doctypeMeta } = getMeta('CRM Organization')
const route = useRoute()
const router = useRouter()
const { document: organization } = useDocument(
'CRM Organization',
props.organizationId,
)
const breadcrumbs = computed(() => {
let items = [{ label: __('Organizations'), route: { name: 'Organizations' } }]
if (route.query.view || route.query.viewType) {
let view = getView(
route.query.view,
route.query.viewType,
'CRM Organization',
)
if (view) {
items.push({
label: __(view.label),
icon: view.icon,
route: {
name: 'Organizations',
params: { viewType: route.query.viewType },
query: { view: route.query.view },
},
})
}
}
items.push({
label: title.value,
route: {
name: 'Organization',
params: { organizationId: props.organizationId },
},
})
return items
})
const title = computed(() => {
let t = doctypeMeta['CRM Organization']?.title_field || 'name'
return organization.doc?.[t] || props.organizationId
})
usePageMeta(() => {
return {
title: title.value,
icon: brand.favicon,
}
})
async function changeOrganizationImage(file) {
await call('frappe.client.set_value', {
doctype: 'CRM Organization',
name: props.organizationId,
fieldname: 'organization_logo',
value: file?.file_url || '',
})
organization.reload()
}
async function deleteOrganization() {
$dialog({
title: __('Delete organization'),
message: __('Are you sure you want to delete this organization?'),
actions: [
{
label: __('Delete'),
theme: 'red',
variant: 'solid',
async onClick(close) {
await call('frappe.client.delete', {
doctype: 'CRM Organization',
name: props.organizationId,
})
close()
router.push({ name: 'Organizations' })
},
},
],
})
}
function openWebsite() {
if (!organization.doc.website) toast.error(__('No website found'))
else window.open(organization.doc.website, '_blank')
}
const sections = createResource({
url: 'crm.fcrm.doctype.crm_fields_layout.crm_fields_layout.get_sidepanel_sections',
cache: ['sidePanelSections', 'CRM Organization'],
params: { doctype: 'CRM Organization' },
auto: true,
transform: (data) => getParsedSections(data),
})
function getParsedSections(_sections) {
return _sections.map((section) => {
section.columns = section.columns.map((column) => {
column.fields = column.fields.map((field) => {
if (field.fieldname === 'address') {
return {
...field,
create: (value, close) => {
openAddressModal()
close()
},
edit: (address) => openAddressModal(address),
}
} else {
return field
}
})
return column
})
return section
})
}
const tabIndex = ref(0)
const tabs = [
{
name: 'Details',
label: __('Details'),
icon: DetailsIcon,
},
{
name: 'Deals',
label: __('Deals'),
icon: h(DealsIcon, { class: 'h-4 w-4' }),
count: computed(() => deals.data?.length),
},
{
name: 'Contacts',
label: __('Contacts'),
icon: h(ContactsIcon, { class: 'h-4 w-4' }),
count: computed(() => contacts.data?.length),
},
]
const deals = createListResource({
type: 'list',
doctype: 'CRM Deal',
cache: ['deals', props.organizationId],
fields: [
'name',
'organization',
'currency',
'annual_revenue',
'status',
'email',
'mobile_no',
'deal_owner',
'modified',
],
filters: {
organization: props.organizationId,
},
orderBy: 'modified desc',
pageLength: 20,
auto: true,
})
const contacts = createListResource({
type: 'list',
doctype: 'Contact',
cache: ['contacts', props.organizationId],
fields: [
'name',
'full_name',
'image',
'email_id',
'mobile_no',
'company_name',
'modified',
],
filters: {
company_name: props.organizationId,
},
orderBy: 'modified desc',
pageLength: 20,
auto: true,
})
const rows = computed(() => {
let list = []
list = !tabIndex.value ? deals : contacts
if (!list.data) return []
return list.data.map((row) => {
return !tabIndex.value ? getDealRowObject(row) : getContactRowObject(row)
})
})
const { getFormattedCurrency } = getMeta('CRM Deal')
const columns = computed(() => {
return tabIndex.value === 0 ? dealColumns : contactColumns
})
function getDealRowObject(deal) {
return {
name: deal.name,
organization: {
label: deal.organization,
logo: organization.doc?.organization_logo,
},
annual_revenue: getFormattedCurrency('annual_revenue', deal),
status: {
label: deal.status,
color: getDealStatus(deal.status)?.color,
},
email: deal.email,
mobile_no: deal.mobile_no,
deal_owner: {
label: deal.deal_owner && getUser(deal.deal_owner).full_name,
...(deal.deal_owner && getUser(deal.deal_owner)),
},
modified: {
label: formatDate(deal.modified),
timeAgo: __(timeAgo(deal.modified)),
},
}
}
function getContactRowObject(contact) {
return {
name: contact.name,
full_name: {
label: contact.full_name,
image_label: contact.full_name,
image: contact.image,
},
email: contact.email_id,
mobile_no: contact.mobile_no,
company_name: {
label: contact.company_name,
logo: organization.doc?.organization_logo,
},
modified: {
label: formatDate(contact.modified),
timeAgo: __(timeAgo(contact.modified)),
},
}
}
const dealColumns = [
{
label: __('Organization'),
key: 'organization',
width: '11rem',
},
{
label: __('Amount'),
key: 'annual_revenue',
align: 'right',
width: '9rem',
},
{
label: __('Status'),
key: 'status',
width: '10rem',
},
{
label: __('Email'),
key: 'email',
width: '12rem',
},
{
label: __('Mobile no'),
key: 'mobile_no',
width: '11rem',
},
{
label: __('Deal owner'),
key: 'deal_owner',
width: '10rem',
},
{
label: __('Last modified'),
key: 'modified',
width: '8rem',
},
]
const contactColumns = [
{
label: __('Name'),
key: 'full_name',
width: '17rem',
},
{
label: __('Email'),
key: 'email',
width: '12rem',
},
{
label: __('Phone'),
key: 'mobile_no',
width: '12rem',
},
{
label: __('Organization'),
key: 'company_name',
width: '12rem',
},
{
label: __('Last modified'),
key: 'modified',
width: '8rem',
},
]
function openAddressModal(_address) {
showAddressModal.value = true
addressProps.value = {
doctype: 'Address',
address: _address,
}
}
</script>