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.
119 lines
3.1 KiB
119 lines
3.1 KiB
<script setup lang="ts"> |
|
import type { ColumnReqType, ColumnType } from 'nocodb-sdk' |
|
import { ColumnInj, IsExpandedFormOpenInj, IsFormInj, IsKanbanInj, inject, provide, ref, toRef, useRoles } from '#imports' |
|
|
|
interface Props { |
|
column: ColumnType |
|
required?: boolean | number |
|
hideMenu?: boolean |
|
hideIcon?: boolean |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const { isMobileMode } = useGlobal() |
|
|
|
const hideMenu = toRef(props, 'hideMenu') |
|
|
|
const isForm = inject(IsFormInj, ref(false)) |
|
|
|
const isExpandedForm = inject(IsExpandedFormOpenInj, ref(false)) |
|
|
|
const isDropDownOpen = ref(false) |
|
|
|
const isKanban = inject(IsKanbanInj, ref(false)) |
|
|
|
const column = toRef(props, 'column') |
|
|
|
const { isUIAllowed } = useRoles() |
|
|
|
provide(ColumnInj, column) |
|
|
|
const editColumnDropdown = ref(false) |
|
|
|
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 |
|
} |
|
|
|
const openHeaderMenu = () => { |
|
if (!isForm.value && !isExpandedForm.value && isUIAllowed('fieldEdit') && !isMobileMode.value) { |
|
editColumnDropdown.value = true |
|
} |
|
} |
|
|
|
const openDropDown = () => { |
|
if (isForm.value || isExpandedForm.value || (!isUIAllowed('fieldEdit') && !isMobileMode.value)) return |
|
isDropDownOpen.value = !isDropDownOpen.value |
|
} |
|
</script> |
|
|
|
<template> |
|
<div |
|
class="flex items-center w-full text-xs text-gray-500 font-weight-medium" |
|
:class="{ 'h-full': column, '!text-gray-400': isKanban }" |
|
@dblclick="openHeaderMenu" |
|
@click.right="openDropDown" |
|
@click="isDropDownOpen = false" |
|
> |
|
<SmartsheetHeaderCellIcon v-if="column && !props.hideIcon" /> |
|
<div |
|
v-if="column" |
|
class="name pl-1 !truncate" |
|
:class="{ 'cursor-pointer pt-0.25': !isForm && isUIAllowed('fieldEdit') && !hideMenu }" |
|
style="white-space: pre-line" |
|
:title="column.title" |
|
> |
|
{{ column.title }} |
|
</div> |
|
|
|
<span v-if="(column.rqd && !column.cdf) || required" class="text-red-500"> *</span> |
|
|
|
<template v-if="!hideMenu"> |
|
<div class="flex-1" /> |
|
<LazySmartsheetHeaderMenu |
|
v-if="!isForm && !isExpandedForm && isUIAllowed('fieldEdit')" |
|
v-model:is-open="isDropDownOpen" |
|
@add-column="addField" |
|
@edit="openHeaderMenu" |
|
/> |
|
</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% - 10px); |
|
word-break: break-all; |
|
} |
|
</style>
|
|
|