233 lines
5.8 KiB
Vue
233 lines
5.8 KiB
Vue
<template>
|
|
<ListView
|
|
:class="$attrs.class"
|
|
:columns="columns"
|
|
:rows="rows"
|
|
:options="{
|
|
getRowRoute: (row) => ({
|
|
name: 'Contact',
|
|
params: { contactId: row.name },
|
|
}),
|
|
selectable: options.selectable,
|
|
showTooltip: options.showTooltip,
|
|
resizeColumn: options.resizeColumn,
|
|
}"
|
|
row-key="name"
|
|
>
|
|
<ListHeader class="mx-5" @columnWidthUpdated="emit('columnWidthUpdated')">
|
|
<ListHeaderItem
|
|
v-for="column in columns"
|
|
:key="column.key"
|
|
:item="column"
|
|
@columnWidthUpdated="emit('columnWidthUpdated', column)"
|
|
>
|
|
<Button
|
|
v-if="column.key == '_liked_by'"
|
|
variant="ghosted"
|
|
class="!h-4"
|
|
:class="isLikeFilterApplied ? 'fill-red-500' : 'fill-white'"
|
|
@click="() => emit('applyLikeFilter')"
|
|
>
|
|
<HeartIcon class="h-4 w-4" />
|
|
</Button>
|
|
</ListHeaderItem>
|
|
</ListHeader>
|
|
<ListRows id="list-rows">
|
|
<ListRow
|
|
class="mx-5"
|
|
v-for="row in rows"
|
|
:key="row.name"
|
|
v-slot="{ idx, column, item }"
|
|
:row="row"
|
|
>
|
|
<ListRowItem :item="item">
|
|
<template #prefix>
|
|
<div v-if="column.key === 'full_name'">
|
|
<Avatar
|
|
v-if="item.label"
|
|
class="flex items-center"
|
|
:image="item.image"
|
|
:label="item.image_label"
|
|
size="sm"
|
|
/>
|
|
</div>
|
|
<div v-else-if="column.key === 'company_name'">
|
|
<Avatar
|
|
v-if="item.label"
|
|
class="flex items-center"
|
|
:image="item.logo"
|
|
:label="item.label"
|
|
size="sm"
|
|
/>
|
|
</div>
|
|
<div v-else-if="column.key === 'mobile_no'">
|
|
<PhoneIcon class="h-4 w-4" />
|
|
</div>
|
|
</template>
|
|
<template #default="{ label }">
|
|
<div
|
|
v-if="['modified', 'creation'].includes(column.key)"
|
|
class="truncate text-base"
|
|
@click="
|
|
(event) =>
|
|
emit('applyFilter', {
|
|
event,
|
|
idx,
|
|
column,
|
|
item,
|
|
firstColumn: columns[0],
|
|
})
|
|
"
|
|
>
|
|
<Tooltip :text="item.label">
|
|
<div>{{ item.timeAgo }}</div>
|
|
</Tooltip>
|
|
</div>
|
|
<div v-else-if="column.type === 'Check'">
|
|
<FormControl
|
|
type="checkbox"
|
|
:modelValue="item"
|
|
:disabled="true"
|
|
class="text-gray-900"
|
|
/>
|
|
</div>
|
|
<div v-else-if="column.key === '_liked_by'">
|
|
<Button
|
|
v-if="column.key == '_liked_by'"
|
|
variant="ghosted"
|
|
:class="isLiked(item) ? 'fill-red-500' : 'fill-white'"
|
|
@click.stop.prevent="
|
|
() =>
|
|
emit('likeDoc', { name: row.name, liked: isLiked(item) })
|
|
"
|
|
>
|
|
<HeartIcon class="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
<div
|
|
v-else
|
|
class="truncate text-base"
|
|
@click="
|
|
(event) =>
|
|
emit('applyFilter', {
|
|
event,
|
|
idx,
|
|
column,
|
|
item,
|
|
firstColumn: columns[0],
|
|
})
|
|
"
|
|
>
|
|
{{ label }}
|
|
</div>
|
|
</template>
|
|
</ListRowItem>
|
|
</ListRow>
|
|
</ListRows>
|
|
<ListSelectBanner>
|
|
<template #actions="{ selections, unselectAll }">
|
|
<Dropdown
|
|
:options="listBulkActionsRef.bulkActions(selections, unselectAll)"
|
|
>
|
|
<Button icon="more-horizontal" variant="ghost" />
|
|
</Dropdown>
|
|
</template>
|
|
</ListSelectBanner>
|
|
</ListView>
|
|
<ListFooter
|
|
v-if="pageLengthCount"
|
|
class="border-t px-5 py-2"
|
|
v-model="pageLengthCount"
|
|
:options="{
|
|
rowCount: options.rowCount,
|
|
totalCount: options.totalCount,
|
|
}"
|
|
@loadMore="emit('loadMore')"
|
|
/>
|
|
<ListBulkActions
|
|
ref="listBulkActionsRef"
|
|
v-model="list"
|
|
doctype="Contact"
|
|
:options="{
|
|
hideAssign: true,
|
|
}"
|
|
/>
|
|
</template>
|
|
<script setup>
|
|
import HeartIcon from '@/components/Icons/HeartIcon.vue'
|
|
import PhoneIcon from '@/components/Icons/PhoneIcon.vue'
|
|
import ListBulkActions from '@/components/ListBulkActions.vue'
|
|
import {
|
|
Avatar,
|
|
ListView,
|
|
ListHeader,
|
|
ListHeaderItem,
|
|
ListRows,
|
|
ListRow,
|
|
ListSelectBanner,
|
|
ListRowItem,
|
|
ListFooter,
|
|
Tooltip,
|
|
Dropdown,
|
|
} from 'frappe-ui'
|
|
import { sessionStore } from '@/stores/session'
|
|
import { ref, computed, watch } from 'vue'
|
|
|
|
const props = defineProps({
|
|
rows: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
columns: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: () => ({
|
|
selectable: true,
|
|
showTooltip: true,
|
|
resizeColumn: false,
|
|
totalCount: 0,
|
|
rowCount: 0,
|
|
}),
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits([
|
|
'loadMore',
|
|
'updatePageCount',
|
|
'columnWidthUpdated',
|
|
'applyFilter',
|
|
'applyLikeFilter',
|
|
'likeDoc',
|
|
])
|
|
|
|
const pageLengthCount = defineModel()
|
|
const list = defineModel('list')
|
|
|
|
const isLikeFilterApplied = computed(() => {
|
|
return list.value.params?.filters?._liked_by ? true : false
|
|
})
|
|
|
|
const { user } = sessionStore()
|
|
|
|
function isLiked(item) {
|
|
if (item) {
|
|
let likedByMe = JSON.parse(item)
|
|
return likedByMe.includes(user)
|
|
}
|
|
}
|
|
|
|
watch(pageLengthCount, (val, old_value) => {
|
|
if (val === old_value) return
|
|
emit('updatePageCount', val)
|
|
})
|
|
|
|
const listBulkActionsRef = ref(null)
|
|
|
|
defineExpose({
|
|
customListActions: listBulkActionsRef.value?.customListActions,
|
|
})
|
|
</script>
|