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.
34 lines
1.2 KiB
34 lines
1.2 KiB
<script setup lang="ts"> |
|
import type { ColumnType } from 'nocodb-sdk' |
|
import ItemChip from './components/ItemChip.vue' |
|
import ListItems from './components/ListItems.vue' |
|
import { ColumnInj, ValueInj, RowInj } from '~/context' |
|
import { useProvideLTARStore } from '#imports' |
|
import MdiExpandIcon from '~icons/mdi/arrow-expand' |
|
|
|
const column = inject(ColumnInj) |
|
const value = inject(ValueInj) |
|
const row = inject(RowInj) |
|
const active = false |
|
const localState = null |
|
const listItemsDlg = ref(false) |
|
|
|
const { relatedTableMeta, loadRelatedTableMeta, relatedTablePrimaryValueProp } = useProvideLTARStore( |
|
column as Required<ColumnType>, |
|
row, |
|
) |
|
await loadRelatedTableMeta() |
|
</script> |
|
|
|
<template> |
|
<div class="flex w-full chips-wrapper align-center group" :class="{ active }"> |
|
<div class="chips d-flex align-center flex-grow"> |
|
<template v-if="value || localState"> |
|
<ItemChip :active="active" :item="value" :value="value[relatedTablePrimaryValueProp]" /> |
|
</template> |
|
</div> |
|
<div class="flex-1" /> |
|
<MdiExpandIcon class="hidden group-hover:inline text-xs text-gray-500/50 hover:text-gray-500" @click="listItemsDlg = true" /> |
|
<ListItems v-model="listItemsDlg" /> |
|
</div> |
|
</template>
|
|
|