|
|
|
<script setup lang="ts">
|
|
|
|
import type { ColumnType } from 'nocodb-sdk'
|
|
|
|
import ItemChip from './components/ItemChip.vue'
|
|
|
|
import ListChildItems from './components/ListChildItems.vue'
|
|
|
|
import ListItems from './components/ListItems.vue'
|
|
|
|
import { useProvideLTARStore } from '~/composables'
|
|
|
|
import { ColumnInj, ReloadViewDataHookInj, RowInj, ValueInj } from '~/context'
|
|
|
|
import MdiExpandIcon from '~icons/mdi/arrow-expand'
|
|
|
|
import MdiPlusIcon from '~icons/mdi/plus'
|
|
|
|
|
|
|
|
const column = inject(ColumnInj)
|
|
|
|
const row = inject(RowInj)
|
|
|
|
const value = inject(ValueInj)
|
|
|
|
const reloadTrigger = inject(ReloadViewDataHookInj)
|
|
|
|
|
|
|
|
const listItemsDlg = ref(false)
|
|
|
|
const childListDlg = ref(false)
|
|
|
|
|
|
|
|
const { relatedTableMeta, loadRelatedTableMeta, relatedTablePrimaryValueProp, unlink } = useProvideLTARStore(
|
|
|
|
column as Required<ColumnType>,
|
|
|
|
row,
|
|
|
|
() => reloadTrigger?.trigger(),
|
|
|
|
)
|
|
|
|
|
|
|
|
await loadRelatedTableMeta()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="flex align-center gap-1 w-full h-full chips-wrapper">
|
|
|
|
<!-- <template v-if="!isForm"> -->
|
|
|
|
<div class="chips flex align-center img-container flex-grow hm-items flex-nowrap min-w-0 overflow-hidden">
|
|
|
|
<template v-if="value">
|
|
|
|
<ItemChip v-for="(ch, i) in value" :key="i" :value="ch[relatedTablePrimaryValueProp]" @unlink="unlink(ch)" />
|
|
|
|
|
|
|
|
<span v-if="value?.length === 10" class="caption pointer ml-1 grey--text" @click="childListDlg = true">more... </span>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<div class="flex-1 flex justify-end gap-1">
|
|
|
|
<MdiExpandIcon class="text-sm nc-action-icon text-gray-500/50 hover:text-gray-500" @click="childListDlg = true" />
|
|
|
|
<MdiPlusIcon class="text-sm nc-action-icon text-gray-500/50 hover:text-gray-500" @click="listItemsDlg = true" />
|
|
|
|
</div>
|
|
|
|
<ListItems v-model="listItemsDlg" />
|
|
|
|
<ListChildItems v-model="childListDlg" @attachRecord=";(childListDlg = false), (listItemsDlg = true)" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.nc-action-icon {
|
|
|
|
@apply hidden cursor-pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chips-wrapper:hover .nc-action-icon {
|
|
|
|
@apply inline-block;
|
|
|
|
}
|
|
|
|
</style>
|