|
|
@ -1,183 +1,40 @@ |
|
|
|
<script> |
|
|
|
<script lang="ts" setup> |
|
|
|
/* import { RelationTypes, UITypes, isVirtualCol } from 'nocodb-sdk' |
|
|
|
import { ColumnType, LinkToAnotherRecordType, LookupType, isVirtualCol } from 'nocodb-sdk' |
|
|
|
import TableCell from '../Cell' |
|
|
|
import { useColumn } from '~/composables' |
|
|
|
import ItemChip from '~/components/project/spreadsheet/components/virtualCell/components/ItemChip' |
|
|
|
import { ColumnInj, EditModeInj, MetaInj, ReadonlyInj, ValueInj } from '~/context' |
|
|
|
export default { |
|
|
|
|
|
|
|
name: 'LookupCell', |
|
|
|
|
|
|
|
components: { |
|
|
|
|
|
|
|
TableCell, |
|
|
|
|
|
|
|
// ListChildItemsModal, |
|
|
|
|
|
|
|
ItemChip, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
props: { |
|
|
|
|
|
|
|
meta: [Object], |
|
|
|
|
|
|
|
metas: [Object], |
|
|
|
|
|
|
|
column: [Object], |
|
|
|
|
|
|
|
nodes: [Object], |
|
|
|
|
|
|
|
row: [Object], |
|
|
|
|
|
|
|
api: [Object, Function], |
|
|
|
|
|
|
|
sqlUi: [Object, Function], |
|
|
|
|
|
|
|
active: Boolean, |
|
|
|
|
|
|
|
isNew: Boolean, |
|
|
|
|
|
|
|
isForm: Boolean, |
|
|
|
|
|
|
|
value: [Object, Array, String, Number], |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
data: () => ({ |
|
|
|
|
|
|
|
UITypes, |
|
|
|
|
|
|
|
lookupListModal: false, |
|
|
|
|
|
|
|
lookupTableMeta: null, |
|
|
|
|
|
|
|
lookupColumnMeta: null, |
|
|
|
|
|
|
|
isVirtualCol, |
|
|
|
|
|
|
|
RelationTypes, |
|
|
|
|
|
|
|
}), |
|
|
|
|
|
|
|
computed: { |
|
|
|
|
|
|
|
virtualCell() { |
|
|
|
|
|
|
|
return this.lookupColumnMeta && isVirtualCol(this.lookupColumnMeta) |
|
|
|
|
|
|
|
? () => import('~/components/project/spreadsheet/components/VirtualCell') |
|
|
|
|
|
|
|
: 'div' |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
// todo : optimize |
|
|
|
|
|
|
|
lookupApi() { |
|
|
|
|
|
|
|
// return this.column && this.$ncApis.get({ |
|
|
|
|
|
|
|
// env: this.nodes.env, |
|
|
|
|
|
|
|
// dbAlias: this.nodes.dbAlias, |
|
|
|
|
|
|
|
// table: this.column.lk.ltn |
|
|
|
|
|
|
|
// }) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
lookUpMeta() { |
|
|
|
|
|
|
|
// return this.metas ? this.metas[this.column.lk.ltn] : this.$store.state.meta.metas[this.column.lk.ltn] |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assocMeta() { |
|
|
|
|
|
|
|
// return this.column.lk.type === 'mm' && (this.metas ? this.metas[this.column.lk.vtn] : this.$store.state.meta.metas[this.column.lk.vtn]) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
lookUpColumnAlias() { |
|
|
|
|
|
|
|
if (!this.lookUpMeta || !this.column.lk.lcn) { |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return (this.lookUpMeta.columns.find((cl) => cl.column_name === this.column.lk.lcn) || {}).title |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
lookUpColumn() { |
|
|
|
|
|
|
|
if (!this.lookUpMeta || !this.column.lk.lcn) { |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return this.lookUpMeta.columns.find((cl) => cl.column_name === this.column.lk.lcn) || {} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
localValueObj() {}, |
|
|
|
|
|
|
|
localValue() { |
|
|
|
|
|
|
|
return this.value && (Array.isArray(this.value) ? this.value : [this.value]) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
queryParams() {}, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
created() { |
|
|
|
|
|
|
|
this.loadLookupMeta() |
|
|
|
|
|
|
|
this.loadLookupColumnMeta() |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
methods: { |
|
|
|
|
|
|
|
async loadLookupColumnMeta() { |
|
|
|
|
|
|
|
const relationColumn = this.meta.columns.find((c) => c.id === this.column.colOptions.fk_relation_column_id) |
|
|
|
|
|
|
|
this.lookupTableMeta = await this.$store.dispatch('meta/ActLoadMeta', { id: relationColumn.colOptions.fk_related_model_id }) |
|
|
|
|
|
|
|
this.lookupColumnMeta = this.lookupTableMeta.columns.find((c) => c.id === this.column.colOptions.fk_lookup_column_id) |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async loadLookupMeta() {}, |
|
|
|
const {metas, getMeta} = useMetas(); |
|
|
|
showLookupListModal() { |
|
|
|
|
|
|
|
this.lookupListModal = true |
|
|
|
provide(ReadonlyInj, true); |
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
const column = inject(ColumnInj) as ColumnType & { colOptions: LookupType }; |
|
|
|
} */ |
|
|
|
const meta = inject(MetaInj); |
|
|
|
|
|
|
|
const value = inject(ValueInj); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const relationColumn = meta?.value.columns?.find(c => c.id === column.colOptions.fk_relation_column_id) as ColumnType & { colOptions: LinkToAnotherRecordType }; |
|
|
|
|
|
|
|
await getMeta(relationColumn.colOptions.fk_related_model_id as string); |
|
|
|
|
|
|
|
const lookupTableMeta = metas?.value[relationColumn.colOptions.fk_related_model_id as string]; |
|
|
|
|
|
|
|
const lookupColumn = lookupTableMeta?.columns?.find(c => c.id === column.colOptions.fk_lookup_column_id) as ColumnType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
provide(MetaInj, ref(lookupTableMeta)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const lookupColumnMetaProps = useColumn(lookupColumn) |
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<div class="d-flex flex-wrap wrapper"> |
|
|
|
<div class="w-full h-full"> |
|
|
|
<!-- <template v-if="lookupColumnMeta"> |
|
|
|
{{lookupColumnMetaProps}} |
|
|
|
<template v-if="isVirtualCol(lookupColumnMeta)"> |
|
|
|
<SmartsheetVirtualCell |
|
|
|
<template |
|
|
|
:edit-enabled="false" v-if="isVirtualCol(lookupColumn)" v-model="value" :column="lookupColumn" |
|
|
|
:is="virtualCell" |
|
|
|
/> |
|
|
|
v-if=" |
|
|
|
|
|
|
|
lookupColumnMeta.uidt === UITypes.LinkToAnotherRecord && |
|
|
|
<SmartsheetCell |
|
|
|
lookupColumnMeta.colOptions.type === RelationTypes.BELONGS_TO && |
|
|
|
v-else |
|
|
|
Array.isArray(value) |
|
|
|
v-model="value" |
|
|
|
" |
|
|
|
:column="lookupColumn" |
|
|
|
> |
|
|
|
:edit-enabled="false" |
|
|
|
<div |
|
|
|
/> |
|
|
|
:is="virtualCell" |
|
|
|
|
|
|
|
v-for="(v, i) in value" |
|
|
|
|
|
|
|
:key="i" |
|
|
|
|
|
|
|
:is-public="true" |
|
|
|
|
|
|
|
:metas="metas" |
|
|
|
|
|
|
|
:is-locked="true" |
|
|
|
|
|
|
|
:column="lookupColumnMeta" |
|
|
|
|
|
|
|
:row="{ [lookupColumnMeta.title]: v }" |
|
|
|
|
|
|
|
:nodes="nodes" |
|
|
|
|
|
|
|
:meta="lookupTableMeta" |
|
|
|
|
|
|
|
:sql-ui="sqlUi" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<div |
|
|
|
|
|
|
|
:is="virtualCell" |
|
|
|
|
|
|
|
v-else |
|
|
|
|
|
|
|
:is-public="true" |
|
|
|
|
|
|
|
:metas="metas" |
|
|
|
|
|
|
|
:is-locked="true" |
|
|
|
|
|
|
|
:column="lookupColumnMeta" |
|
|
|
|
|
|
|
:row="{ [lookupColumnMeta.title]: value }" |
|
|
|
|
|
|
|
:nodes="nodes" |
|
|
|
|
|
|
|
:meta="lookupTableMeta" |
|
|
|
|
|
|
|
:sql-ui="sqlUi" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<template v-else> |
|
|
|
|
|
|
|
<template v-if="localValue"> |
|
|
|
|
|
|
|
<ItemChip |
|
|
|
|
|
|
|
v-for="(value, i) in localValue" |
|
|
|
|
|
|
|
:key="i" |
|
|
|
|
|
|
|
style="margin: 1.5px" |
|
|
|
|
|
|
|
:active="active" |
|
|
|
|
|
|
|
:value="value" |
|
|
|
|
|
|
|
:readonly="true" |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
<TableCell |
|
|
|
|
|
|
|
:is-locked="true" |
|
|
|
|
|
|
|
:column="lookupColumnMeta" |
|
|
|
|
|
|
|
:meta="lookupTableMeta" |
|
|
|
|
|
|
|
:db-alias="nodes.dbAlias" |
|
|
|
|
|
|
|
:value="value" |
|
|
|
|
|
|
|
:sql-ui="sqlUi" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</ItemChip> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</template> --> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
|
|
|
.wrapper { |
|
|
|
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
</style> |
|
|
|
|
|
|
|
<!-- |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @author Naveen MR <oof1lab@gmail.com> |
|
|
|
|
|
|
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @license GNU AGPL version 3 or any later version |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
|
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as |
|
|
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the |
|
|
|
|
|
|
|
* License, or (at your option) any later version. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful, |
|
|
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
|
|
|
* GNU Affero General Public License for more details. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License |
|
|
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
--> |
|
|
|
|
|
|
|