132 lines
3.1 KiB
Vue
132 lines
3.1 KiB
Vue
<template>
|
|
<ListView
|
|
:columns="columns"
|
|
:rows="rows"
|
|
:options="{
|
|
getRowRoute: (row) => ({
|
|
name: 'Organization',
|
|
params: { organizationId: row.name },
|
|
}),
|
|
selectable: options.selectable,
|
|
}"
|
|
row-key="name"
|
|
>
|
|
<ListHeader class="mx-5" />
|
|
<ListRows id="list-rows">
|
|
<ListRow
|
|
class="mx-5"
|
|
v-for="row in rows"
|
|
:key="row.name"
|
|
v-slot="{ column, item }"
|
|
:row="row"
|
|
>
|
|
<ListRowItem :item="item">
|
|
<template #prefix>
|
|
<div v-if="column.key === 'organization_name'">
|
|
<Avatar
|
|
v-if="item.label"
|
|
class="flex items-center"
|
|
:image="item.logo"
|
|
:label="item.label"
|
|
size="sm"
|
|
/>
|
|
</div>
|
|
</template>
|
|
<div
|
|
v-if="['modified', 'creation'].includes(column.key)"
|
|
class="truncate text-base"
|
|
>
|
|
{{ item.timeAgo }}
|
|
</div>
|
|
<div v-else-if="column.type === 'Check'">
|
|
<FormControl
|
|
type="checkbox"
|
|
:modelValue="item"
|
|
:disabled="true"
|
|
class="text-gray-900"
|
|
/>
|
|
</div>
|
|
</ListRowItem>
|
|
</ListRow>
|
|
</ListRows>
|
|
<ListSelectBanner>
|
|
<template #actions="{ selections, unselectAll }">
|
|
<Button variant="subtle" label="Edit" @click="editValues(selections, unselectAll)">
|
|
<template #prefix>
|
|
<EditIcon class="h-3 w-3" />
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
</ListSelectBanner>
|
|
</ListView>
|
|
<ListFooter
|
|
class="border-t px-5 py-2"
|
|
v-model="pageLengthCount"
|
|
:options="{
|
|
rowCount: options.rowCount,
|
|
totalCount: options.totalCount,
|
|
}"
|
|
@loadMore="emit('loadMore')"
|
|
/>
|
|
<EditValueModal
|
|
v-model="showEditModal"
|
|
v-model:unselectAll="unselectAllAction"
|
|
doctype="CRM Organization"
|
|
:selectedValues="selectedValues"
|
|
@reload="emit('reload')"
|
|
/>
|
|
</template>
|
|
<script setup>
|
|
import EditIcon from '@/components/Icons/EditIcon.vue'
|
|
import EditValueModal from '@/components/Modals/EditValueModal.vue'
|
|
import {
|
|
Avatar,
|
|
ListView,
|
|
ListHeader,
|
|
ListRows,
|
|
ListRow,
|
|
ListSelectBanner,
|
|
ListRowItem,
|
|
ListFooter,
|
|
} from 'frappe-ui'
|
|
import { ref, watch } from 'vue'
|
|
|
|
const props = defineProps({
|
|
rows: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
columns: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: () => ({
|
|
selectable: true,
|
|
totalCount: 0,
|
|
rowCount: 0,
|
|
}),
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits(['loadMore', 'updatePageCount', 'reload'])
|
|
|
|
const pageLengthCount = defineModel()
|
|
|
|
watch(pageLengthCount, (val, old_value) => {
|
|
if (val === old_value) return
|
|
emit('updatePageCount', val)
|
|
})
|
|
|
|
const showEditModal = ref(false)
|
|
const selectedValues = ref([])
|
|
const unselectAllAction = ref(() => {})
|
|
|
|
function editValues(selections, unselectAll) {
|
|
selectedValues.value = selections
|
|
showEditModal.value = true
|
|
unselectAllAction.value = unselectAll
|
|
}
|
|
</script>
|