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.
189 lines
5.3 KiB
189 lines
5.3 KiB
<script setup lang="ts"> |
|
import type { ColumnReqType, ColumnType, FormulaType, LinkToAnotherRecordType, LookupType, RollupType } from 'nocodb-sdk' |
|
import { substituteColumnIdWithAliasInFormula } from 'nocodb-sdk' |
|
import { |
|
ColumnInj, |
|
IsFormInj, |
|
MetaInj, |
|
computed, |
|
inject, |
|
isBt, |
|
isFormula, |
|
isHm, |
|
isLookup, |
|
isMm, |
|
isRollup, |
|
isVirtualColRequired, |
|
provide, |
|
ref, |
|
toRef, |
|
useI18n, |
|
useMetas, |
|
useRoles, |
|
} from '#imports' |
|
|
|
const props = defineProps<{ column: ColumnType; hideMenu?: boolean; required?: boolean | number; hideIcon?: boolean }>() |
|
|
|
const { t } = useI18n() |
|
|
|
const column = toRef(props, 'column') |
|
|
|
const hideMenu = toRef(props, 'hideMenu') |
|
|
|
const editColumnDropdown = ref(false) |
|
|
|
const isDropDownOpen = ref(false) |
|
|
|
provide(ColumnInj, column) |
|
|
|
const { metas } = useMetas() |
|
|
|
const { isUIAllowed } = useRoles() |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const isForm = inject(IsFormInj, ref(false)) |
|
|
|
const isExpandedForm = inject(IsExpandedFormOpenInj, ref(false)) |
|
|
|
const colOptions = computed(() => column.value?.colOptions) |
|
|
|
const tableTile = computed(() => meta?.value?.title) |
|
|
|
const relationColumnOptions = computed<LinkToAnotherRecordType | null>(() => { |
|
if (isMm(column.value) || isHm(column.value) || isBt(column.value)) { |
|
return column.value?.colOptions as LinkToAnotherRecordType |
|
} else if ((column?.value?.colOptions as LookupType | RollupType)?.fk_relation_column_id) { |
|
return meta?.value?.columns?.find( |
|
(c) => c.id === (column?.value?.colOptions as LookupType | RollupType)?.fk_relation_column_id, |
|
)?.colOptions as LinkToAnotherRecordType |
|
} |
|
return null |
|
}) |
|
|
|
const relatedTableMeta = computed( |
|
() => |
|
relationColumnOptions.value?.fk_related_model_id && metas.value?.[relationColumnOptions.value?.fk_related_model_id as string], |
|
) |
|
|
|
const relatedTableTitle = computed(() => relatedTableMeta.value?.title) |
|
|
|
const childColumn = computed(() => { |
|
if (relatedTableMeta.value?.columns) { |
|
if (isRollup(column.value)) { |
|
return relatedTableMeta.value?.columns.find( |
|
(c: ColumnType) => c.id === (colOptions.value as RollupType).fk_rollup_column_id, |
|
) |
|
} |
|
if (isLookup(column.value)) { |
|
return relatedTableMeta.value?.columns.find( |
|
(c: ColumnType) => c.id === (colOptions.value as LookupType).fk_lookup_column_id, |
|
) |
|
} |
|
} |
|
return '' |
|
}) |
|
|
|
const tooltipMsg = computed(() => { |
|
if (!column.value) { |
|
return '' |
|
} |
|
if (isHm(column.value)) { |
|
return `'${tableTile.value}' ${t('labels.hasMany')} '${relatedTableTitle.value}'` |
|
} else if (isMm(column.value)) { |
|
return `'${tableTile.value}' & '${relatedTableTitle.value}' ${t('labels.manyToMany')}` |
|
} else if (isBt(column.value)) { |
|
return `'${column?.value?.title}' ${t('labels.belongsTo')} '${relatedTableTitle.value}'` |
|
} else if (isLookup(column.value)) { |
|
return `'${childColumn.value.title}' from '${relatedTableTitle.value}' (${childColumn.value.uidt})` |
|
} else if (isFormula(column.value)) { |
|
const formula = substituteColumnIdWithAliasInFormula( |
|
(column.value?.colOptions as FormulaType)?.formula, |
|
meta?.value?.columns as ColumnType[], |
|
(column.value?.colOptions as any)?.formula_raw, |
|
) |
|
return `Formula - ${formula}` |
|
} else if (isRollup(column.value)) { |
|
return `'${childColumn.value.title}' of '${relatedTableTitle.value}' (${childColumn.value.uidt})` |
|
} |
|
return '' |
|
}) |
|
|
|
const columnOrder = ref<Pick<ColumnReqType, 'column_order'> | null>(null) |
|
|
|
const addField = async (payload: any) => { |
|
columnOrder.value = payload |
|
editColumnDropdown.value = true |
|
} |
|
|
|
const closeAddColumnDropdown = () => { |
|
columnOrder.value = null |
|
editColumnDropdown.value = false |
|
} |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex items-center w-full text-xs text-gray-500 font-weight-medium" |
|
:class="{ 'h-full': column }" |
|
@click.right="isDropDownOpen = !isDropDownOpen" |
|
> |
|
<LazySmartsheetHeaderVirtualCellIcon v-if="column && !props.hideIcon" /> |
|
|
|
<a-tooltip placement="bottom"> |
|
<template #title> |
|
{{ tooltipMsg }} |
|
</template> |
|
<span |
|
class="name pl-1" |
|
:class="{ 'truncate': !isForm || !isExpandedForm, 'whitespace-pre-line': isForm || isExpandedForm }" |
|
:title="column.title" |
|
> |
|
{{ column.title }} |
|
</span> |
|
</a-tooltip> |
|
|
|
<span v-if="isVirtualColRequired(column, meta?.columns || []) || required" class="text-red-500"> *</span> |
|
|
|
<template v-if="!hideMenu"> |
|
<div class="flex-1" /> |
|
|
|
<LazySmartsheetHeaderMenu |
|
v-if="!isForm && isUIAllowed('fieldEdit') && !isExpandedForm" |
|
v-model:is-open="isDropDownOpen" |
|
:virtual="true" |
|
@add-column="addField" |
|
@edit="editColumnDropdown = true" |
|
/> |
|
</template> |
|
|
|
<a-dropdown |
|
v-model:visible="editColumnDropdown" |
|
class="h-full" |
|
:trigger="['click']" |
|
placement="bottomRight" |
|
overlay-class-name="nc-dropdown-edit-column" |
|
> |
|
<div /> |
|
<template #overlay> |
|
<SmartsheetColumnEditOrAddProvider |
|
v-if="editColumnDropdown" |
|
:column="columnOrder ? null : column" |
|
:column-position="columnOrder" |
|
class="w-full" |
|
@submit="closeAddColumnDropdown" |
|
@cancel="closeAddColumnDropdown" |
|
@click.stop |
|
@keydown.stop |
|
/> |
|
</template> |
|
</a-dropdown> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
.name { |
|
max-width: calc(100% - 40px); |
|
word-break: break-all; |
|
} |
|
</style>
|
|
|