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.
78 lines
2.4 KiB
78 lines
2.4 KiB
<script setup lang="ts"> |
|
import type { UITypes } from 'nocodb-sdk' |
|
import { AllowedColumnTypesForQrAndBarcodes } from 'nocodb-sdk' |
|
import type { SelectProps } from 'ant-design-vue' |
|
import { useVModel } from '#imports' |
|
|
|
const props = defineProps<{ |
|
modelValue: any |
|
}>() |
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
const { t } = useI18n() |
|
|
|
const { fields, metaColumnById } = useViewColumnsOrThrow() |
|
|
|
const vModel = useVModel(props, 'modelValue', emit) |
|
|
|
const { setAdditionalValidations, validateInfos, column } = useColumnCreateStoreOrThrow() |
|
|
|
const columnsAllowedAsQrValue = computed<SelectProps['options']>(() => { |
|
return fields.value |
|
?.filter( |
|
(el) => |
|
el.fk_column_id && AllowedColumnTypesForQrAndBarcodes.includes(metaColumnById.value[el.fk_column_id].uidt as UITypes), |
|
) |
|
.map((field) => { |
|
return { |
|
value: field.fk_column_id, |
|
label: field.title, |
|
} |
|
}) |
|
}) |
|
|
|
onMounted(() => { |
|
// set default value |
|
vModel.value.fk_qr_value_column_id = |
|
(column?.value?.colOptions as Record<string, any>)?.fk_qr_value_column_id || columnsAllowedAsQrValue.value?.[0]?.value |
|
}) |
|
|
|
setAdditionalValidations({ |
|
fk_qr_value_column_id: [{ required: true, message: t('general.required') }], |
|
}) |
|
</script> |
|
|
|
<template> |
|
<a-row> |
|
<a-col :span="24"> |
|
<a-form-item |
|
class="flex w-1/2 pb-2 nc-qr-code-value-column-select" |
|
:label="$t('labels.qrCodeValueColumn')" |
|
v-bind="validateInfos.fk_qr_value_column_id" |
|
> |
|
<a-select |
|
v-model:value="vModel.fk_qr_value_column_id" |
|
:placeholder="$t('placeholder.selectAColumnForTheQRCodeValue')" |
|
@click.stop |
|
> |
|
<a-select-option v-for="opt of columnsAllowedAsQrValue" :key="opt" :value="opt.value"> |
|
<div class="flex gap-2 w-full truncate items-center" :data-testid="`nc-qr-${opt.label}`"> |
|
<NcTooltip show-on-truncate-only class="flex-1 truncate"> |
|
<template #title>{{ opt.label }}</template> |
|
{{ opt.label }} |
|
</NcTooltip> |
|
|
|
<component |
|
:is="iconMap.check" |
|
v-if="vModel.fk_qr_value_column_id === opt.value" |
|
id="nc-selected-item-icon" |
|
class="text-primary w-4 h-4" |
|
/> |
|
</div> |
|
</a-select-option> |
|
</a-select> |
|
</a-form-item> |
|
</a-col> |
|
</a-row> |
|
</template>
|
|
|