mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 05:37:00 +00:00
258 lines
7.3 KiB
Vue
258 lines
7.3 KiB
Vue
<script setup lang="ts">
|
|
import { computed } from '@vue/reactivity'
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
import type { Ref } from 'vue'
|
|
import { ref } from 'vue'
|
|
import { forcedNextTick } from '../../utils/browserUtils'
|
|
|
|
const isCanvasInjected = inject(IsCanvasInjectionInj, false)
|
|
const clientMousePosition = inject(ClientMousePositionInj, reactive(clientMousePositionDefaultValue))
|
|
|
|
const value = inject(CellValueInj, ref(0))
|
|
|
|
const column = inject(ColumnInj)!
|
|
|
|
const row = inject(RowInj)!
|
|
|
|
const reloadRowTrigger = inject(ReloadRowDataHookInj, createEventHook())
|
|
|
|
const isForm = inject(IsFormInj, ref(false))
|
|
|
|
const readOnly = inject(ReadonlyInj, ref(false))
|
|
|
|
const isUnderLookup = inject(IsUnderLookupInj, ref(false))
|
|
|
|
const isExpandedFormOpen = inject(IsExpandedFormOpenInj, ref(false))
|
|
|
|
// Inject breadcrumbs before the dropdown teleport boundary (teleport breaks provide/inject chain)
|
|
const parentBreadcrumbs = inject(TemplateBreadcrumbsInj, ref([]))
|
|
|
|
const canvasCellEventData = inject(CanvasCellEventDataInj, reactive<CanvasCellEventDataInjType>({}))
|
|
|
|
const cellEventHook = inject(CellEventHookInj, null)
|
|
|
|
const colTitle = computed(() => column.value?.title || '')
|
|
|
|
const listItemsDlg = ref(false)
|
|
|
|
const childListDlg = ref(false)
|
|
|
|
const isOpen = ref(false)
|
|
|
|
const hideBackBtn = ref(false)
|
|
|
|
const { isUIAllowed } = useRoles()
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { state, isNew } = useSmartsheetRowStoreOrThrow()
|
|
|
|
const { relatedTableMeta, loadRelatedTableMeta, relatedTableDisplayValueProp, meta } = useProvideLTARStore(
|
|
column as Ref<Required<ColumnType>>,
|
|
row,
|
|
isNew,
|
|
reloadRowTrigger.trigger,
|
|
)
|
|
const relatedTableDisplayColumn = computed(
|
|
() =>
|
|
relatedTableMeta.value?.columns?.find((c: any) => c.title === relatedTableDisplayValueProp.value) as ColumnType | undefined,
|
|
)
|
|
|
|
loadRelatedTableMeta()
|
|
|
|
const hasEditPermission = computed(() => {
|
|
return (
|
|
((!readOnly.value && isUIAllowed('dataEdit') && !isUnderLookup.value) || (isForm.value && !readOnly.value)) &&
|
|
!(column.value?.readonly && meta.value?.synced)
|
|
)
|
|
})
|
|
|
|
const textVal = computed(() => {
|
|
if (isForm.value || isNew.value) {
|
|
return state.value?.[colTitle.value]?.length
|
|
? `${+state.value?.[colTitle.value]?.length} ${t('msg.recordsLinked')}`
|
|
: isForm.value && !isExpandedFormOpen.value
|
|
? t('title.linkRecords')
|
|
: t('msg.noRecordsLinked')
|
|
}
|
|
|
|
const parsedValue = +value?.value || 0
|
|
|
|
if (!parsedValue) {
|
|
return t('msg.noRecordsLinked')
|
|
} else if (parsedValue === 1) {
|
|
return `1 ${column.value?.meta?.singular || t('general.link')}`
|
|
} else {
|
|
return `${parsedValue} ${column.value?.meta?.plural || t('general.links')}`
|
|
}
|
|
})
|
|
|
|
const toatlRecordsLinked = computed(() => {
|
|
if (isForm?.value) {
|
|
return state.value?.[colTitle.value]?.length
|
|
}
|
|
return +value?.value || 0
|
|
})
|
|
|
|
const onAttachRecord = () => {
|
|
childListDlg.value = false
|
|
listItemsDlg.value = true
|
|
hideBackBtn.value = false
|
|
}
|
|
|
|
const onAttachLinkedRecord = () => {
|
|
listItemsDlg.value = false
|
|
childListDlg.value = true
|
|
}
|
|
|
|
const openChildList = () => {
|
|
if (isUnderLookup.value) return
|
|
|
|
childListDlg.value = true
|
|
listItemsDlg.value = false
|
|
|
|
isOpen.value = true
|
|
hideBackBtn.value = false
|
|
}
|
|
|
|
useSelectedCellKeydownListener(inject(ActiveCellInj, ref(false)), (e: KeyboardEvent) => {
|
|
switch (e.key) {
|
|
case 'Enter':
|
|
if (listItemsDlg.value) return
|
|
childListDlg.value = true
|
|
isOpen.value = true
|
|
e.stopPropagation()
|
|
break
|
|
}
|
|
})
|
|
|
|
const localCellValue = computed<any[]>(() => {
|
|
if (isNew.value) {
|
|
return state?.value?.[column?.value.title as string] ?? []
|
|
}
|
|
return []
|
|
})
|
|
|
|
const openListDlg = () => {
|
|
if (!hasEditPermission.value) return
|
|
|
|
listItemsDlg.value = true
|
|
childListDlg.value = false
|
|
isOpen.value = true
|
|
hideBackBtn.value = true
|
|
}
|
|
|
|
watch([childListDlg, listItemsDlg], () => {
|
|
isOpen.value = childListDlg.value || listItemsDlg.value
|
|
})
|
|
|
|
watch(
|
|
isOpen,
|
|
(next) => {
|
|
if (!next) {
|
|
listItemsDlg.value = false
|
|
childListDlg.value = false
|
|
}
|
|
},
|
|
{ flush: 'post' },
|
|
)
|
|
|
|
const onCellEvent = (event?: Event) => {
|
|
if (!(event instanceof KeyboardEvent) || !event.target || isActiveInputElementExist(event)) return
|
|
|
|
if (isExpandCellKey(event)) {
|
|
if (childListDlg.value) {
|
|
listItemsDlg.value = false
|
|
childListDlg.value = false
|
|
} else {
|
|
openChildList()
|
|
}
|
|
|
|
return true
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
cellEventHook?.on(onCellEvent)
|
|
|
|
if (!isUnderLookup.value && isCanvasInjected && !isExpandedFormOpen.value && clientMousePosition) {
|
|
forcedNextTick(() => {
|
|
if (onCellEvent(canvasCellEventData.event)) return
|
|
|
|
if (getElementAtMouse('.nc-canvas-table-editable-cell-wrapper .nc-canvas-links-icon-plus', clientMousePosition)) {
|
|
openListDlg()
|
|
} else if (getElementAtMouse('.nc-canvas-table-editable-cell-wrapper .nc-canvas-links-text', clientMousePosition)) {
|
|
openChildList()
|
|
} else if (hasEditPermission.value) {
|
|
openListDlg()
|
|
} else {
|
|
openChildList()
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
cellEventHook?.off(onCellEvent)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="nc-cell-field flex w-full group items-center nc-links-wrapper py-1" @dblclick.stop="openChildList">
|
|
<VirtualCellComponentsLinkRecordDropdown v-model:is-open="isOpen">
|
|
<div class="flex w-full group items-center min-h-4">
|
|
<div class="block flex-shrink truncate">
|
|
<component
|
|
:is="isUnderLookup ? 'span' : 'a'"
|
|
v-e="['c:cell:links:modal:open']"
|
|
:title="textVal"
|
|
class="text-center nc-datatype-link underline-transparent nc-canvas-links-text font-weight-500"
|
|
:class="{ '!text-nc-content-brand-hover': !textVal }"
|
|
:tabindex="readOnly ? -1 : 0"
|
|
@click.stop.prevent="isForm && !isExpandedFormOpen && hasEditPermission ? openListDlg() : openChildList()"
|
|
@keydown.enter.stop.prevent="isForm && !isExpandedFormOpen && hasEditPermission ? openListDlg() : openChildList"
|
|
>
|
|
{{ textVal }}
|
|
</component>
|
|
</div>
|
|
<div class="flex-grow" />
|
|
|
|
<div
|
|
v-if="hasEditPermission"
|
|
:class="{ hidden: isUnderLookup }"
|
|
:tabindex="readOnly ? -1 : 0"
|
|
class="flex group justify-end group-hover:flex items-center nc-canvas-links-icon-plus"
|
|
@keydown.enter.stop="openListDlg"
|
|
>
|
|
<MdiPlus
|
|
class="select-none !text-md text-nc-content-gray-subtle nc-action-icon nc-plus !xs:visible invisible group-hover:visible group-focus:visible"
|
|
@click.stop="openListDlg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<template #overlay>
|
|
<VirtualCellComponentsLinkedItems
|
|
v-if="childListDlg"
|
|
v-model="childListDlg"
|
|
:items="toatlRecordsLinked"
|
|
:column="relatedTableDisplayColumn"
|
|
:cell-value="localCellValue"
|
|
:parent-breadcrumbs="parentBreadcrumbs"
|
|
@attach-record="onAttachRecord"
|
|
@escape="isOpen = false"
|
|
/>
|
|
<VirtualCellComponentsUnLinkedItems
|
|
v-if="listItemsDlg"
|
|
v-model="listItemsDlg"
|
|
:column="relatedTableDisplayColumn"
|
|
:hide-back-btn="hideBackBtn"
|
|
:parent-breadcrumbs="parentBreadcrumbs"
|
|
@attach-linked-record="onAttachLinkedRecord"
|
|
@escape="isOpen = false"
|
|
/>
|
|
</template>
|
|
</VirtualCellComponentsLinkRecordDropdown>
|
|
</div>
|
|
</template>
|