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.
70 lines
2.1 KiB
70 lines
2.1 KiB
<script lang="ts" setup> |
|
import type { ColumnType, LinkToAnotherRecordType } from 'nocodb-sdk' |
|
import { RelationTypes, UITypes, isHiddenCol, isLinksOrLTAR, isSystemColumn } from 'nocodb-sdk' |
|
|
|
const props = defineProps<{ |
|
// As we need to focus search box when the parent is opened |
|
isParentOpen: boolean |
|
}>() |
|
|
|
const emits = defineEmits(['created']) |
|
|
|
const { isParentOpen } = toRefs(props) |
|
|
|
const activeView = inject(ActiveViewInj, ref()) |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const { showSystemFields, metaColumnById } = useViewColumnsOrThrow(activeView, meta) |
|
|
|
const { sorts } = useViewSorts(activeView) |
|
|
|
const options = computed<ColumnType[]>( |
|
() => |
|
meta.value?.columns |
|
?.filter((c: ColumnType) => { |
|
if (c.uidt === UITypes.Links) { |
|
return true |
|
} |
|
if (isSystemColumn(metaColumnById?.value?.[c.id!])) { |
|
if (isHiddenCol(c)) { |
|
/** ignore mm relation column, created by and last modified by system field */ |
|
return false |
|
} |
|
|
|
return ( |
|
/** hide system columns if not enabled */ |
|
showSystemFields.value |
|
) |
|
} else if (c.uidt === UITypes.QrCode || c.uidt === UITypes.Barcode || c.uidt === UITypes.ID) { |
|
return false |
|
} else { |
|
/** ignore hasmany and manytomany relations if it's using within sort menu */ |
|
return !( |
|
isLinksOrLTAR(c) && |
|
![RelationTypes.BELONGS_TO, RelationTypes.ONE_TO_ONE].includes( |
|
(c.colOptions as LinkToAnotherRecordType).type as RelationTypes, |
|
) |
|
) |
|
/** ignore virtual fields which are system fields ( mm relation ) and qr code fields */ |
|
} |
|
}) |
|
.filter((c: ColumnType) => !sorts.value.find((s) => s.fk_column_id === c.id)) ?? [], |
|
) |
|
|
|
const onClick = (column: ColumnType) => { |
|
emits('created', column) |
|
} |
|
</script> |
|
|
|
<template> |
|
<div class="nc-sort-create-modal"> |
|
<SmartsheetToolbarFieldListWithSearch |
|
:is-parent-open="isParentOpen" |
|
:search-input-placeholder="$t('msg.selectFieldToSort')" |
|
:options="options" |
|
toolbar-menu="sort" |
|
@selected="onClick" |
|
/> |
|
</div> |
|
</template>
|
|
|