fix: implemented ViewControls for Organizations
This commit is contained in:
parent
452f1c312a
commit
4dd53f8199
@ -13,36 +13,16 @@
|
|||||||
</Button>
|
</Button>
|
||||||
</template>
|
</template>
|
||||||
</LayoutHeader>
|
</LayoutHeader>
|
||||||
<div class="flex items-center justify-between px-5 pb-4 pt-3">
|
<ViewControls v-model="organizations" doctype="CRM Organization" />
|
||||||
<div class="flex items-center gap-2">
|
|
||||||
<Dropdown :options="viewsDropdownOptions">
|
|
||||||
<template #default="{ open }">
|
|
||||||
<Button :label="currentView.label">
|
|
||||||
<template #prefix>
|
|
||||||
<FeatherIcon :name="currentView.icon" class="h-4" />
|
|
||||||
</template>
|
|
||||||
<template #suffix>
|
|
||||||
<FeatherIcon
|
|
||||||
:name="open ? 'chevron-up' : 'chevron-down'"
|
|
||||||
class="h-4 text-gray-600"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</Button>
|
|
||||||
</template>
|
|
||||||
</Dropdown>
|
|
||||||
</div>
|
|
||||||
<div class="flex items-center gap-2">
|
|
||||||
<Filter doctype="CRM Organization" />
|
|
||||||
<SortBy doctype="CRM Organization" />
|
|
||||||
<ViewSettings doctype="CRM Organization" v-model="organizations" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<OrganizationsListView
|
<OrganizationsListView
|
||||||
v-if="organizations.data && rows.length"
|
v-if="organizations.data && rows.length"
|
||||||
:rows="rows"
|
:rows="rows"
|
||||||
:columns="organizations.data.columns"
|
:columns="organizations.data.columns"
|
||||||
/>
|
/>
|
||||||
<div v-else-if="organizations.data" class="flex h-full items-center justify-center">
|
<div
|
||||||
|
v-else-if="organizations.data"
|
||||||
|
class="flex h-full items-center justify-center"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500"
|
class="flex flex-col items-center gap-3 text-xl font-medium text-gray-500"
|
||||||
>
|
>
|
||||||
@ -60,10 +40,8 @@ import OrganizationsIcon from '@/components/Icons/OrganizationsIcon.vue'
|
|||||||
import LayoutHeader from '@/components/LayoutHeader.vue'
|
import LayoutHeader from '@/components/LayoutHeader.vue'
|
||||||
import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
|
import OrganizationModal from '@/components/Modals/OrganizationModal.vue'
|
||||||
import OrganizationsListView from '@/components/ListViews/OrganizationsListView.vue'
|
import OrganizationsListView from '@/components/ListViews/OrganizationsListView.vue'
|
||||||
import SortBy from '@/components/SortBy.vue'
|
import ViewControls from '@/components/ViewControls.vue'
|
||||||
import Filter from '@/components/Filter.vue'
|
import { FeatherIcon, Breadcrumbs } from 'frappe-ui'
|
||||||
import ViewSettings from '@/components/ViewSettings.vue'
|
|
||||||
import { FeatherIcon, Breadcrumbs, Dropdown, createResource } from 'frappe-ui'
|
|
||||||
import {
|
import {
|
||||||
dateFormat,
|
dateFormat,
|
||||||
dateTooltipFormat,
|
dateTooltipFormat,
|
||||||
@ -78,7 +56,7 @@ const route = useRoute()
|
|||||||
const showOrganizationModal = ref(false)
|
const showOrganizationModal = ref(false)
|
||||||
|
|
||||||
const currentOrganization = computed(() => {
|
const currentOrganization = computed(() => {
|
||||||
return organizations.data?.data?.find(
|
return organizations.value?.data?.data?.find(
|
||||||
(organization) => organization.name === route.params.organizationId
|
(organization) => organization.name === route.params.organizationId
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
@ -96,33 +74,13 @@ const breadcrumbs = computed(() => {
|
|||||||
return items
|
return items
|
||||||
})
|
})
|
||||||
|
|
||||||
const currentView = ref({
|
const organizations = ref({})
|
||||||
label: 'List',
|
|
||||||
icon: 'list',
|
|
||||||
})
|
|
||||||
|
|
||||||
function getParams() {
|
|
||||||
const filters = {}
|
|
||||||
const order_by = 'modified desc'
|
|
||||||
|
|
||||||
return {
|
|
||||||
doctype: 'CRM Organization',
|
|
||||||
filters: filters,
|
|
||||||
order_by: order_by,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const organizations = createResource({
|
|
||||||
url: 'crm.api.doc.get_list_data',
|
|
||||||
params: getParams(),
|
|
||||||
auto: true,
|
|
||||||
})
|
|
||||||
|
|
||||||
const rows = computed(() => {
|
const rows = computed(() => {
|
||||||
if (!organizations.data?.data) return []
|
if (!organizations.value?.data?.data) return []
|
||||||
return organizations.data.data.map((organization) => {
|
return organizations.value?.data.data.map((organization) => {
|
||||||
let _rows = {}
|
let _rows = {}
|
||||||
organizations.data.rows.forEach((row) => {
|
organizations.value?.data.rows.forEach((row) => {
|
||||||
_rows[row] = organization[row]
|
_rows[row] = organization[row]
|
||||||
|
|
||||||
if (row === 'organization_name') {
|
if (row === 'organization_name') {
|
||||||
@ -145,49 +103,6 @@ const rows = computed(() => {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const viewsDropdownOptions = [
|
|
||||||
{
|
|
||||||
label: 'List',
|
|
||||||
icon: 'list',
|
|
||||||
onClick() {
|
|
||||||
currentView.value = {
|
|
||||||
label: 'List',
|
|
||||||
icon: 'list',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Table',
|
|
||||||
icon: 'grid',
|
|
||||||
onClick() {
|
|
||||||
currentView.value = {
|
|
||||||
label: 'Table',
|
|
||||||
icon: 'grid',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Calender',
|
|
||||||
icon: 'calendar',
|
|
||||||
onClick() {
|
|
||||||
currentView.value = {
|
|
||||||
label: 'Calender',
|
|
||||||
icon: 'calendar',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'Board',
|
|
||||||
icon: 'columns',
|
|
||||||
onClick() {
|
|
||||||
currentView.value = {
|
|
||||||
label: 'Board',
|
|
||||||
icon: 'columns',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
function website(url) {
|
function website(url) {
|
||||||
return url && url.replace(/^(?:https?:\/\/)?(?:www\.)?/i, '')
|
return url && url.replace(/^(?:https?:\/\/)?(?:www\.)?/i, '')
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user