crm/frontend/src/pages/Organizations.vue

155 lines
4.7 KiB
Vue

<template>
<LayoutHeader>
<template #left-header>
<ViewBreadcrumbs v-model="viewControls" routeName="Organizations" />
</template>
<template #right-header>
<CustomActions
v-if="organizationsListView?.customListActions"
:actions="organizationsListView.customListActions"
/>
<Button
variant="solid"
:label="__('Create')"
iconLeft="plus"
@click="showOrganizationModal = true"
/>
</template>
</LayoutHeader>
<ViewControls
ref="viewControls"
v-model="organizations"
v-model:loadMore="loadMore"
v-model:resizeColumn="triggerResize"
v-model:updatedPageCount="updatedPageCount"
doctype="CRM Organization"
/>
<OrganizationsListView
ref="organizationsListView"
v-if="organizations.data && rows.length"
v-model="organizations.data.page_length_count"
v-model:list="organizations"
:rows="rows"
:columns="organizations.data.columns"
:options="{
showTooltip: false,
resizeColumn: true,
rowCount: organizations.data.row_count,
totalCount: organizations.data.total_count,
}"
@loadMore="() => loadMore++"
@columnWidthUpdated="() => triggerResize++"
@updatePageCount="(count) => (updatedPageCount = count)"
@applyFilter="(data) => viewControls.applyFilter(data)"
@applyLikeFilter="(data) => viewControls.applyLikeFilter(data)"
@likeDoc="(data) => viewControls.likeDoc(data)"
@selectionsChanged="
(selections) => viewControls.updateSelections(selections)
"
/>
<div
v-else-if="organizations.data"
class="flex h-full items-center justify-center"
>
<div
class="flex flex-col items-center gap-3 text-xl font-medium text-ink-gray-4"
>
<OrganizationsIcon class="h-10 w-10" />
<span>{{ __('No {0} Found', [__('Organizations')]) }}</span>
<Button
:label="__('Create')"
iconLeft="plus"
@click="showOrganizationModal = true"
/>
</div>
</div>
<OrganizationModal
v-if="showOrganizationModal"
v-model="showOrganizationModal"
/>
</template>
<script setup>
import ViewBreadcrumbs from '@/components/ViewBreadcrumbs.vue'
import CustomActions from '@/components/CustomActions.vue'
import OrganizationsIcon from '@/components/Icons/OrganizationsIcon.vue'
import LayoutHeader from '@/components/LayoutHeader.vue'
import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
import OrganizationsListView from '@/components/ListViews/OrganizationsListView.vue'
import ViewControls from '@/components/ViewControls.vue'
import { getMeta } from '@/stores/meta'
import { formatDate, timeAgo, website } from '@/utils'
import { call } from 'frappe-ui'
import { ref, computed } from 'vue'
const { getFormattedPercent, getFormattedFloat, getFormattedCurrency } =
getMeta('CRM Organization')
const organizationsListView = ref(null)
const showOrganizationModal = ref(false)
// organizations data is loaded in the ViewControls component
const organizations = ref({})
const loadMore = ref(1)
const triggerResize = ref(1)
const updatedPageCount = ref(20)
const viewControls = ref(null)
const rows = computed(() => {
if (
!organizations.value?.data?.data ||
!['list', 'group_by'].includes(organizations.value.data.view_type)
)
return []
return organizations.value?.data.data.map((organization) => {
let _rows = {}
organizations.value?.data.rows.forEach((row) => {
_rows[row] = organization[row]
let fieldType = organizations.value?.data.columns?.find(
(col) => (col.key || col.value) == row,
)?.type
if (
fieldType &&
['Date', 'Datetime'].includes(fieldType) &&
!['modified', 'creation'].includes(row)
) {
_rows[row] = formatDate(
organization[row],
'',
true,
fieldType == 'Datetime',
)
}
if (fieldType && fieldType == 'Currency') {
_rows[row] = getFormattedCurrency(row, organization)
}
if (fieldType && fieldType == 'Float') {
_rows[row] = getFormattedFloat(row, organization)
}
if (fieldType && fieldType == 'Percent') {
_rows[row] = getFormattedPercent(row, organization)
}
if (row === 'organization_name') {
_rows[row] = {
label: organization.organization_name,
logo: organization.organization_logo,
}
} else if (row === 'website') {
_rows[row] = website(organization.website)
} else if (['modified', 'creation'].includes(row)) {
_rows[row] = {
label: formatDate(organization[row]),
timeAgo: __(timeAgo(organization[row])),
}
}
})
return _rows
})
})
</script>