fix: implemented ListBulkAction component in Deal List View

This commit is contained in:
Shariq Ansari 2024-05-20 22:13:58 +05:30
parent 7bd6a19a05
commit d518a4709f

View File

@ -114,7 +114,9 @@
</ListRows> </ListRows>
<ListSelectBanner> <ListSelectBanner>
<template #actions="{ selections, unselectAll }"> <template #actions="{ selections, unselectAll }">
<Dropdown :options="bulkActions(selections, unselectAll)"> <Dropdown
:options="listBulkActionsRef.bulkActions(selections, unselectAll)"
>
<Button icon="more-horizontal" variant="ghost" /> <Button icon="more-horizontal" variant="ghost" />
</Dropdown> </Dropdown>
</template> </template>
@ -130,19 +132,14 @@
}" }"
@loadMore="emit('loadMore')" @loadMore="emit('loadMore')"
/> />
<EditValueModal <ListBulkActions ref="listBulkActionsRef" v-model="list" doctype="CRM Deal" />
v-model="showEditModal"
doctype="CRM Deal"
:selectedValues="selectedValues"
@reload="reload"
/>
</template> </template>
<script setup> <script setup>
import MultipleAvatar from '@/components/MultipleAvatar.vue' import MultipleAvatar from '@/components/MultipleAvatar.vue'
import IndicatorIcon from '@/components/Icons/IndicatorIcon.vue' import IndicatorIcon from '@/components/Icons/IndicatorIcon.vue'
import PhoneIcon from '@/components/Icons/PhoneIcon.vue' import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
import EditValueModal from '@/components/Modals/EditValueModal.vue' import ListBulkActions from '@/components/ListBulkActions.vue'
import { import {
Avatar, Avatar,
ListView, ListView,
@ -153,13 +150,9 @@ import {
ListSelectBanner, ListSelectBanner,
ListFooter, ListFooter,
Dropdown, Dropdown,
call,
Tooltip, Tooltip,
} from 'frappe-ui' } from 'frappe-ui'
import { setupListActions, createToast } from '@/utils' import { ref, watch } from 'vue'
import { globalStore } from '@/stores/global'
import { onMounted, ref, watch } from 'vue'
import { useRouter } from 'vue-router'
const props = defineProps({ const props = defineProps({
rows: { rows: {
@ -192,108 +185,14 @@ const emit = defineEmits([
const pageLengthCount = defineModel() const pageLengthCount = defineModel()
const list = defineModel('list') const list = defineModel('list')
const router = useRouter()
const { $dialog } = globalStore()
watch(pageLengthCount, (val, old_value) => { watch(pageLengthCount, (val, old_value) => {
if (val === old_value) return if (val === old_value) return
emit('updatePageCount', val) emit('updatePageCount', val)
}) })
const showEditModal = ref(false) const listBulkActionsRef = ref(null)
const selectedValues = ref([])
const unselectAllAction = ref(() => {})
function editValues(selections, unselectAll) {
selectedValues.value = selections
showEditModal.value = true
unselectAllAction.value = unselectAll
}
function deleteValues(selections, unselectAll) {
$dialog({
title: __('Delete'),
message: __('Are you sure you want to delete {0} item(s)?', [
selections.size,
]),
variant: 'danger',
actions: [
{
label: __('Delete'),
variant: 'solid',
theme: 'red',
onClick: (close) => {
call('frappe.desk.reportview.delete_items', {
items: JSON.stringify(Array.from(selections)),
doctype: 'CRM Deal',
}).then(() => {
createToast({
title: __('Deleted successfully'),
icon: 'check',
iconClasses: 'text-green-600',
})
unselectAll()
list.value.reload()
close()
})
},
},
],
})
}
const customBulkActions = ref([])
const customListActions = ref([])
function bulkActions(selections, unselectAll) {
let actions = [
{
label: __('Edit'),
onClick: () => editValues(selections, unselectAll),
},
{
label: __('Delete'),
onClick: () => deleteValues(selections, unselectAll),
},
]
customBulkActions.value.forEach((action) => {
actions.push({
label: __(action.label),
onClick: () =>
action.onClick({
list: list.value,
selections,
unselectAll,
call,
createToast,
$dialog,
router,
}),
})
})
return actions
}
function reload() {
unselectAllAction.value?.()
list.value?.reload()
}
onMounted(() => {
if (!list.value?.data) return
setupListActions(list.value.data, {
list: list.value,
call,
createToast,
$dialog,
router,
})
customBulkActions.value = list.value?.data?.bulkActions || []
customListActions.value = list.value?.data?.listActions || []
})
defineExpose({ defineExpose({
customListActions, customListActions: listBulkActionsRef.value?.customListActions,
}) })
</script> </script>