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.
114 lines
3.2 KiB
114 lines
3.2 KiB
<script lang="ts" setup> |
|
import type { LinkToAnotherRecordType } from 'nocodb-sdk' |
|
import { UITypes } from 'nocodb-sdk' |
|
import { |
|
ColumnInj, |
|
IsLockedInj, |
|
MetaInj, |
|
Modal, |
|
extractSdkResponseErrorMsg, |
|
inject, |
|
message, |
|
useI18n, |
|
useMetas, |
|
useNuxtApp, |
|
} from '#imports' |
|
|
|
const { virtual = false } = defineProps<{ virtual?: boolean }>() |
|
|
|
const emit = defineEmits(['edit']) |
|
|
|
const column = inject(ColumnInj) |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const isLocked = inject(IsLockedInj) |
|
|
|
const { $api, $e } = useNuxtApp() |
|
|
|
const { t } = useI18n() |
|
|
|
const { getMeta } = useMetas() |
|
|
|
const deleteColumn = () => |
|
Modal.confirm({ |
|
title: h('div', ['Do you want to delete ', h('span', { class: 'font-weight-bold' }, [column?.value?.title]), ' column ?']), |
|
wrapClassName: 'nc-modal-column-delete', |
|
okText: t('general.delete'), |
|
okType: 'danger', |
|
cancelText: t('general.cancel'), |
|
async onOk() { |
|
try { |
|
await $api.dbTableColumn.delete(column?.value?.id as string) |
|
|
|
await getMeta(meta?.value?.id as string, true) |
|
|
|
/** force-reload related table meta if deleted column is a LTAR and not linked to same table */ |
|
if (column?.value?.uidt === UITypes.LinkToAnotherRecord && column.value?.colOptions) { |
|
await getMeta((column.value?.colOptions as LinkToAnotherRecordType).fk_related_model_id!, true) |
|
} |
|
|
|
$e('a:column:delete') |
|
} catch (e: any) { |
|
message.error(await extractSdkResponseErrorMsg(e)) |
|
} |
|
}, |
|
}) |
|
|
|
const setAsPrimaryValue = async () => { |
|
try { |
|
await $api.dbTableColumn.primaryColumnSet(column?.value?.id as string) |
|
|
|
await getMeta(meta?.value?.id as string, true) |
|
|
|
// Successfully updated as primary column |
|
message.success(t('msg.success.primaryColumnUpdated')) |
|
|
|
$e('a:column:set-primary') |
|
} catch (e) { |
|
message.error(t('msg.error.primaryColumnUpdateFailed')) |
|
} |
|
} |
|
</script> |
|
|
|
<template> |
|
<a-dropdown v-if="!isLocked" placement="bottomRight" :trigger="['click']" overlay-class-name="nc-dropdown-column-operations"> |
|
<MdiMenuDown class="h-full text-grey nc-ui-dt-dropdown cursor-pointer outline-0" /> |
|
|
|
<template #overlay> |
|
<a-menu class="shadow bg-white"> |
|
<a-menu-item @click="emit('edit')"> |
|
<div class="nc-column-edit nc-header-menu-item"> |
|
<MdiPencil class="text-primary" /> |
|
<!-- Edit --> |
|
{{ $t('general.edit') }} |
|
</div> |
|
</a-menu-item> |
|
|
|
<a-menu-item v-if="!virtual" @click="setAsPrimaryValue"> |
|
<div class="nc-column-set-primary nc-header-menu-item"> |
|
<MdiStar class="text-primary" /> |
|
|
|
<!-- todo : tooltip --> |
|
<!-- Set as Primary value --> |
|
{{ $t('activity.setPrimary') }} |
|
</div> |
|
</a-menu-item> |
|
|
|
<a-menu-item @click="deleteColumn"> |
|
<div class="nc-column-delete nc-header-menu-item"> |
|
<MdiDeleteOutline class="text-error" /> |
|
<!-- Delete --> |
|
{{ $t('general.delete') }} |
|
</div> |
|
</a-menu-item> |
|
</a-menu> |
|
</template> |
|
</a-dropdown> |
|
</template> |
|
|
|
<style scoped> |
|
.nc-header-menu-item { |
|
@apply text-xs flex items-center px-1 py-2 gap-1; |
|
} |
|
</style>
|
|
|