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.
37 lines
1.0 KiB
37 lines
1.0 KiB
<script setup lang="ts"> |
|
import type { ColumnType, TableType } from 'nocodb-sdk' |
|
import type { Ref } from 'vue' |
|
import { inject, toRef } from 'vue' |
|
import { ColumnInj, MetaInj } from '~/context' |
|
import { useProvideColumnCreateStore } from '#imports' |
|
|
|
const props = defineProps<{ column: ColumnType & { meta: any }; hideMenu?: boolean }>() |
|
const column = toRef(props, 'column') |
|
const hideMenu = toRef(props, 'hideMenu') |
|
provide(ColumnInj, column) |
|
|
|
const meta = inject(MetaInj) |
|
|
|
// instantiate column update store |
|
useProvideColumnCreateStore(meta as Ref<TableType>, column) |
|
</script> |
|
|
|
<template> |
|
<div class="flex align-center w-full"> |
|
<SmartsheetHeaderCellIcon v-if="column" /> |
|
<span v-if="column" class="name" style="white-space: nowrap" :title="column.title">{{ column.title }}</span> |
|
|
|
<template v-if="!hideMenu"> |
|
<div class="flex-1" /> |
|
<SmartsheetHeaderMenu /> |
|
</template> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
.name { |
|
max-width: calc(100% - 40px); |
|
overflow: hidden; |
|
text-overflow: ellipsis; |
|
} |
|
</style>
|
|
|