From 4786c550402d29ec3d724fcf7c3df5600ebc75c7 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Tue, 9 Aug 2022 16:12:43 +0200 Subject: [PATCH] fix(gui-v2): pass unique row+col key to attachment cell for dropzone refs --- .../components/cell/attachment/index.vue | 30 +++++++++---------- .../nc-gui-v2/components/smartsheet/Cell.vue | 10 +++---- .../nc-gui-v2/components/smartsheet/Grid.vue | 9 ++++-- 3 files changed, 27 insertions(+), 22 deletions(-) diff --git a/packages/nc-gui-v2/components/cell/attachment/index.vue b/packages/nc-gui-v2/components/cell/attachment/index.vue index d1a385c2c9..6c6c8d36d9 100644 --- a/packages/nc-gui-v2/components/cell/attachment/index.vue +++ b/packages/nc-gui-v2/components/cell/attachment/index.vue @@ -6,21 +6,17 @@ import { useSortable } from './sort' import Carousel from './Carousel.vue' import { onMounted, ref, useDropZone, watch } from '#imports' import { isImage, openLink } from '~/utils' -import MaterialSymbolsAttachFile from '~icons/material-symbols/attach-file' -import MaterialArrowExpandIcon from '~icons/mdi/arrow-expand' -import MaterialSymbolsFileCopyOutline from '~icons/material-symbols/file-copy-outline' -import MdiReload from '~icons/mdi/reload' -import IcOutlineInsertDriveFile from '~icons/ic/outline-insert-drive-file' interface Props { modelValue: string | Record[] | null + rowIndex: number } interface Emits { (event: 'update:modelValue', value: string | Record): void } -const { modelValue } = defineProps() +const { modelValue, rowIndex } = defineProps() const emits = defineEmits() @@ -60,7 +56,7 @@ onKeyDown('Escape', () => { /** if possible, on mounted we try to fetch the relevant `td` cell to use as a dropzone */ onMounted(() => { if (typeof document !== 'undefined') { - dropZoneRef.value = document.querySelector(`td[data-col="${column.value.id}"]`) as HTMLTableDataCellElement + dropZoneRef.value = document.querySelector(`td[data-key="${rowIndex}${column.value.id}"]`) as HTMLTableDataCellElement } }) @@ -73,7 +69,7 @@ onMounted(() => { Drop here @@ -100,12 +96,15 @@ onMounted(() => { @@ -152,6 +148,10 @@ onMounted(() => {