mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
389 lines
15 KiB
389 lines
15 KiB
<script lang="ts" setup> |
|
import Draggable from 'vuedraggable' |
|
import { UITypes, isVirtualCol } from 'nocodb-sdk' |
|
import { |
|
ActiveViewInj, |
|
FieldsInj, |
|
IsFormInj, |
|
IsGalleryInj, |
|
IsGridInj, |
|
IsKanbanInj, |
|
MetaInj, |
|
OpenNewRecordFormHookInj, |
|
ReadonlyInj, |
|
inject, |
|
provide, |
|
useKanbanViewData, |
|
} from '#imports' |
|
import Row from '~/components/smartsheet/Row.vue' |
|
import type { Row as RowType } from '~/composables' |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const view = inject(ActiveViewInj, ref()) |
|
|
|
const reloadViewDataHook = inject(ReloadViewDataHookInj) |
|
|
|
const reloadKanbanMetaHook = inject(ReloadKanbanMetaHookInj) |
|
|
|
const openNewRecordFormHook = inject(OpenNewRecordFormHookInj, createEventHook()) |
|
|
|
const expandedFormDlg = ref(false) |
|
|
|
const expandedFormRow = ref<RowType>() |
|
|
|
const expandedFormRowState = ref<Record<string, any>>() |
|
|
|
const deleteStackVModel = ref(false) |
|
|
|
const stackToBeDeleted = ref('') |
|
|
|
const { |
|
loadKanbanData, |
|
loadMoreKanbanData, |
|
loadKanbanMeta, |
|
kanbanMetaData, |
|
formattedData, |
|
updateOrSaveRow, |
|
updateKanbanMeta, |
|
addEmptyRow, |
|
groupingFieldColOptions, |
|
updateKanbanStackMeta, |
|
groupingField, |
|
countByStack, |
|
deleteStack, |
|
} = useKanbanViewData(meta, view) |
|
|
|
const { isUIAllowed } = useUIPermission() |
|
|
|
const { appInfo } = $(useGlobal()) |
|
|
|
provide(IsFormInj, ref(false)) |
|
provide(IsGalleryInj, ref(false)) |
|
provide(IsGridInj, ref(false)) |
|
provide(IsKanbanInj, ref(true)) |
|
provide(ReadonlyInj, !isUIAllowed('xcDatatableEditable')) |
|
|
|
const fields = inject(FieldsInj, ref([])) |
|
|
|
const isRowEmpty = (record: any, col: any) => { |
|
const val = record.row[col.title] |
|
if (!val) return true |
|
|
|
return Array.isArray(val) && val.length === 0 |
|
} |
|
|
|
reloadViewDataHook?.on(async () => { |
|
await loadKanbanMeta() |
|
await loadKanbanData() |
|
}) |
|
|
|
reloadKanbanMetaHook?.on(async () => { |
|
await loadKanbanMeta() |
|
}) |
|
|
|
const expandForm = (row: RowType, state?: Record<string, any>) => { |
|
if (!isUIAllowed('xcDatatableEditable')) return |
|
expandedFormRow.value = row |
|
expandedFormRowState.value = state |
|
expandedFormDlg.value = true |
|
} |
|
|
|
const expandFormClick = async (e: MouseEvent, row: RowType) => { |
|
const target = e.target as HTMLElement |
|
if (target && !target.closest('.gallery-carousel')) { |
|
expandForm(row) |
|
} |
|
} |
|
|
|
/** Block dragging the stack to first index (reserved for Uncategorized) **/ |
|
function onMoveCallback(event: any) { |
|
if (event.draggedContext.futureIndex === 0) { |
|
return false |
|
} |
|
} |
|
|
|
async function onMoveStack(event: any) { |
|
if (event.moved) { |
|
const { oldIndex, newIndex } = event.moved |
|
const { grp_column_id, stack_meta } = kanbanMetaData.value |
|
groupingFieldColOptions.value[oldIndex].order = newIndex |
|
groupingFieldColOptions.value[newIndex].order = oldIndex |
|
const stackMetaObj = JSON.parse(stack_meta as string) || {} |
|
stackMetaObj[grp_column_id as string] = groupingFieldColOptions.value |
|
await updateKanbanMeta({ |
|
stack_meta: stackMetaObj, |
|
}) |
|
} |
|
} |
|
|
|
async function onMove(event: any, stackKey: string) { |
|
if (event.added) { |
|
const ele = event.added.element |
|
ele.row[groupingField.value] = stackKey === 'Uncategorized' ? null : stackKey |
|
countByStack.value[stackKey] += 1 |
|
await updateOrSaveRow(ele) |
|
} else if (event.removed) { |
|
countByStack.value[stackKey] -= 1 |
|
} |
|
} |
|
|
|
const kanbanListScrollHandler = async (e: any) => { |
|
if (e.target.scrollTop + e.target.clientHeight >= e.target.scrollHeight) { |
|
const stackTitle = e.target.getAttribute('data-stack-title') |
|
const pageSize = appInfo.defaultLimit || 25 |
|
const page = Math.ceil(formattedData.value[stackTitle].length / pageSize) |
|
await loadMoreKanbanData(stackTitle, { offset: page * pageSize }) |
|
} |
|
} |
|
|
|
const kanbanListRef = (kanbanListElement: HTMLElement) => { |
|
if (kanbanListElement) { |
|
kanbanListElement.removeEventListener('scroll', kanbanListScrollHandler) |
|
kanbanListElement.addEventListener('scroll', kanbanListScrollHandler) |
|
} |
|
} |
|
|
|
const handleDeleteStackClick = (stackTitle: string) => { |
|
deleteStackVModel.value = true |
|
stackToBeDeleted.value = stackTitle |
|
} |
|
|
|
const handleDeleteStackConfirmClick = async () => { |
|
await deleteStack(stackToBeDeleted.value) |
|
deleteStackVModel.value = false |
|
} |
|
|
|
const handleCollapseStack = async (stackIdx: number) => { |
|
groupingFieldColOptions.value[stackIdx].collapsed = !groupingFieldColOptions.value[stackIdx].collapsed |
|
await updateKanbanStackMeta() |
|
} |
|
|
|
const handleExpandedFormCancel = () => { |
|
// remove the empty record |
|
formattedData.value['Uncategorized'].pop() |
|
// decrease total count by 1 |
|
countByStack.value['Uncategorized'] -= 1 |
|
} |
|
|
|
openNewRecordFormHook?.on(async (stackTitle) => { |
|
const newRow = await addEmptyRow() |
|
// preset the grouping field value |
|
newRow.row = { |
|
[groupingField.value]: stackTitle, |
|
} |
|
// increase total count by 1 |
|
countByStack.value['Uncategorized'] += 1 |
|
// open the expanded form |
|
expandForm(newRow) |
|
}) |
|
</script> |
|
|
|
<template> |
|
<div class="flex h-full bg-white px-2"> |
|
<div class="nc-kanban-container flex my-4 px-3 overflow-x-scroll overflow-y-hidden"> |
|
<Draggable |
|
v-model="groupingFieldColOptions" |
|
class="flex gap-4" |
|
item-key="id" |
|
group="kanban-stack" |
|
draggable=".nc-kanban-stack" |
|
filter=".not-draggable" |
|
:move="onMoveCallback" |
|
@change="onMoveStack($event)" |
|
> |
|
<template #item="{ element: stack, index: stackIdx }"> |
|
<div class="nc-kanban-stack" :class="{ 'w-[50px]': stack.collapsed }"> |
|
<a-card |
|
v-if="!stack.collapsed" |
|
:key="stack.id" |
|
class="mx-4 !bg-[#f0f2f5] flex flex-col w-[280px] h-full rounded-[12px]" |
|
:class="{ 'not-draggable': stack.id === 'uncategorized' }" |
|
head-style="padding-bottom: 0px;" |
|
body-style="padding: 0px; height: 100%;" |
|
> |
|
<div :style="`background-color: ${stack.color}`" class="nc-kanban-stack-head-color h-[10px]"></div> |
|
<a-skeleton v-if="!formattedData[stack.title] || !countByStack" class="p-4" /> |
|
<a-layout v-else class="!bg-[#f0f2f5]"> |
|
<a-layout-header> |
|
<div class="nc-kanban-stack-head font-bold flex items-center px-[15px]"> |
|
<a-dropdown :trigger="['click']" overlay-class-name="nc-dropdown-kanban-stack-context-menu"> |
|
<div class="flex items-center cursor-pointer w-full"> |
|
<GeneralTruncateText>{{ stack.title }}</GeneralTruncateText> |
|
<span class="w-full flex"> |
|
<mdi-menu-down class="text-grey text-lg ml-auto" /> |
|
</span> |
|
</div> |
|
<template #overlay> |
|
<a-menu class="ml-6 !text-sm !px-0 !py-2 !rounded"> |
|
<a-menu-item |
|
@click="openNewRecordFormHook.trigger(stack.title === 'Uncategorized' ? null : stack.title)" |
|
> |
|
<div class="py-2 flex gap-2 items-center"> |
|
<mdi-plus class="text-gray-500" /> |
|
<!-- TODO: i18n --> |
|
Add new record |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item @click="handleCollapseStack(stackIdx)"> |
|
<div class="py-2 flex gap-2 items-center"> |
|
<mdi-arrow-collapse class="text-gray-500" /> |
|
<!-- TODO: i18n --> |
|
Collapse Stack |
|
</div> |
|
</a-menu-item> |
|
<a-menu-item v-if="stack.title !== 'Uncategorized'" @click="handleDeleteStackClick(stack.title)"> |
|
<div class="py-2 flex gap-2 items-center"> |
|
<mdi-delete class="text-gray-500" /> |
|
<!-- TODO: i18n --> |
|
Delete Stack |
|
</div> |
|
</a-menu-item> |
|
</a-menu> |
|
</template> |
|
</a-dropdown> |
|
</div> |
|
</a-layout-header> |
|
<a-layout-content class="overflow-y-hidden"> |
|
<div :ref="kanbanListRef" class="nc-kanban-list h-full overflow-y-auto" :data-stack-title="stack.title"> |
|
<Draggable |
|
v-model="formattedData[stack.title]" |
|
item-key="row.Id" |
|
draggable=".nc-kanban-item" |
|
group="kanban-card" |
|
class="h-full" |
|
@change="onMove($event, stack.title)" |
|
> |
|
<template #item="{ element: record }"> |
|
<div class="nc-kanban-item py-2 px-[15px]"> |
|
<Row :row="record"> |
|
<a-card |
|
hoverable |
|
:data-stack="stack.title" |
|
class="!rounded-lg h-full overflow-hidden break-all max-w-[450px]" |
|
body-style="padding: 10px 5px;" |
|
@click="expandFormClick($event, record)" |
|
> |
|
<div |
|
v-for="col in fields" |
|
:key="`record-${record.row.id}-${col.id}`" |
|
class="flex flex-col rounded-lg w-full" |
|
> |
|
<div v-if="!isRowEmpty(record, col)" class="flex flex-row w-full justify-start pt-2"> |
|
<div class="w-full text-gray-600"> |
|
<SmartsheetHeaderVirtualCell v-if="isVirtualCol(col)" :column="col" :hide-menu="true" /> |
|
<SmartsheetHeaderCell v-else :column="col" :hide-menu="true" /> |
|
</div> |
|
</div> |
|
<div |
|
v-if="!isRowEmpty(record, col)" |
|
class="flex flex-row w-full items-center justify-start" |
|
:class="{ 'pt-2 pl-2': col.uidt !== UITypes.SingleSelect }" |
|
> |
|
<SmartsheetVirtualCell |
|
v-if="isVirtualCol(col)" |
|
v-model="record.row[col.title]" |
|
:column="col" |
|
:row="record" |
|
/> |
|
<SmartsheetCell |
|
v-else |
|
v-model="record.row[col.title]" |
|
:column="col" |
|
:edit-enabled="false" |
|
:read-only="true" |
|
/> |
|
</div> |
|
</div> |
|
</a-card> |
|
</Row> |
|
</div> |
|
</template> |
|
</Draggable> |
|
</div> |
|
</a-layout-content> |
|
<a-layout-footer> |
|
<div v-if="formattedData[stack.title] && countByStack[stack.title] >= 0" class="mt-5 text-center"> |
|
<mdi-plus |
|
class="text-pint-500 text-lg text-primary cursor-pointer" |
|
@click="openNewRecordFormHook.trigger(stack.title === 'Uncategorized' ? null : stack.title)" |
|
/> |
|
<div class="nc-kanban-data-count"> |
|
{{ formattedData[stack.title].length }} / {{ countByStack[stack.title] }} |
|
{{ countByStack[stack.title] !== 1 ? $t('objects.records') : $t('objects.record') }} |
|
</div> |
|
</div> |
|
</a-layout-footer> |
|
</a-layout> |
|
</a-card> |
|
<a-card |
|
v-else |
|
:key="`${stack.id}-collapsed`" |
|
:style="`background-color: ${stack.color} !important`" |
|
class="nc-kanban-stack nc-kanban-collapsed-stack mx-4 flex items-center w-[300px] h-[50px] rounded-[12px] cursor-pointer h-full !pr-[10px]" |
|
:class="{ 'not-draggable': stack.id === 'uncategorized' }" |
|
body-style="padding: 0px; height: 100%; width: 100%; background: #f0f2f5 !important;" |
|
> |
|
<div class="items-center justify-between" @click="handleCollapseStack(stackIdx)"> |
|
<a-skeleton v-if="!formattedData[stack.title] || !countByStack" class="!w-[150px] pl-5" :paragraph="false" /> |
|
<div v-else class="nc-kanban-data-count mt-[7px] mx-[10px]"> |
|
<div class="float-right flex gap-2 items-center cursor-pointer font-bold"> |
|
<GeneralTruncateText>{{ stack.title }}</GeneralTruncateText> |
|
<mdi-menu-down class="text-grey text-lg" /> |
|
</div> |
|
{{ formattedData[stack.title].length }} / {{ countByStack[stack.title] }} |
|
{{ countByStack[stack.title] !== 1 ? $t('objects.records') : $t('objects.record') }} |
|
</div> |
|
</div> |
|
</a-card> |
|
</div> |
|
</template> |
|
</Draggable> |
|
</div> |
|
</div> |
|
<div class="flex-1" /> |
|
<SmartsheetExpandedForm |
|
v-if="expandedFormRow && expandedFormDlg" |
|
v-model="expandedFormDlg" |
|
:row="expandedFormRow" |
|
:state="expandedFormRowState" |
|
:meta="meta" |
|
@cancel="handleExpandedFormCancel" |
|
/> |
|
<a-modal v-model:visible="deleteStackVModel" class="!top-[35%]" wrap-class-name="nc-modal-view-create"> |
|
<template #title> |
|
<!-- TODO: i18n --> |
|
Delete stack? |
|
</template> |
|
<div> |
|
<!-- TODO: i18n --> |
|
Deleting this stack will also remove the select option `{{ stackToBeDeleted }}` from the `{{ groupingField }}`. The records |
|
will move to the uncategorized stack. |
|
</div> |
|
<template #footer> |
|
<a-button key="back" @click="deleteStackVModel = false">{{ $t('general.cancel') }}</a-button> |
|
<a-button key="submit" type="primary" @click="handleDeleteStackConfirmClick"> |
|
{{ $t('general.delete') }} |
|
</a-button> |
|
</template> |
|
</a-modal> |
|
</template> |
|
|
|
<style lang="scss" scoped> |
|
// override ant design style |
|
.a-layout, |
|
.ant-layout-header, |
|
.ant-layout-content { |
|
@apply !bg-[#f0f2f5]; |
|
} |
|
|
|
.ant-layout-header { |
|
@apply !h-[30px] !leading-[30px] !px-[5px] !my-[10px]; |
|
} |
|
|
|
.nc-kanban-collapsed-stack { |
|
transform: rotate(-90deg) translateX(-100%); |
|
transform-origin: left top 0px; |
|
transition: left 0.2s ease-in-out 0s; |
|
} |
|
</style>
|
|
|