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.
120 lines
3.9 KiB
120 lines
3.9 KiB
<script setup lang="ts"> |
|
import type { UITypes } from 'nocodb-sdk' |
|
import { AllowedColumnTypesForQrAndBarcodes } from 'nocodb-sdk' |
|
import type { SelectProps } from 'ant-design-vue' |
|
import { onMounted, useVModel, watch } from '#imports' |
|
|
|
const props = defineProps<{ |
|
modelValue: any |
|
}>() |
|
|
|
const emit = defineEmits(['update:modelValue']) |
|
|
|
const meta = inject(MetaInj, ref()) |
|
|
|
const activeView = inject(ActiveViewInj, ref()) |
|
|
|
const reloadDataHook = inject(ReloadViewDataHookInj)! |
|
|
|
const { fields, metaColumnById } = useViewColumns(activeView, meta, () => reloadDataHook.trigger()) |
|
|
|
const vModel = useVModel(props, 'modelValue', emit) |
|
|
|
const { setAdditionalValidations, validateInfos, column } = useColumnCreateStoreOrThrow() |
|
|
|
const columnsAllowedAsBarcodeValue = 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, |
|
} |
|
}) |
|
}) |
|
|
|
const supportedBarcodeFormats = [ |
|
{ value: 'CODE128', label: 'CODE128' }, |
|
{ value: 'upc', label: 'UPC' }, |
|
{ value: 'EAN13', label: 'EAN-13' }, |
|
{ value: 'EAN8', label: 'EAN-8' }, |
|
{ value: 'EAN5', label: 'EAN-5' }, |
|
{ value: 'EAN2', label: 'EAN-2' }, |
|
{ value: 'CODE39', label: 'CODE39' }, |
|
{ value: 'ITF14', label: 'ITF-14' }, |
|
{ value: 'MSI', label: 'MSI' }, |
|
{ value: 'PHARMACODE', label: 'pharmacode' }, |
|
{ value: 'CODABAR', label: 'codabar' }, |
|
] |
|
|
|
onMounted(() => { |
|
// set default value |
|
vModel.value.meta = { |
|
barcodeFormat: supportedBarcodeFormats[0].value, |
|
...vModel.value.meta, |
|
} |
|
vModel.value.fk_barcode_value_column_id = |
|
(column?.value?.colOptions as Record<string, any>)?.fk_barcode_value_column_id || columnsAllowedAsBarcodeValue.value?.[0] |
|
}) |
|
|
|
watch(columnsAllowedAsBarcodeValue, (newColumnsAllowedAsBarcodeValue) => { |
|
if (vModel.value.fk_barcode_value_column_id == null) { |
|
vModel.value.fk_barcode_value_column_id = newColumnsAllowedAsBarcodeValue?.[0]?.value |
|
} |
|
}) |
|
|
|
setAdditionalValidations({ |
|
fk_barcode_value_column_id: [{ required: true, message: 'Required' }], |
|
barcode_format: [{ required: true, message: 'Required' }], |
|
}) |
|
|
|
const showBarcodeValueColumnInfoIcon = computed(() => !columnsAllowedAsBarcodeValue.value?.length) |
|
</script> |
|
|
|
<template> |
|
<a-row> |
|
<a-col :span="24"> |
|
<a-form-item |
|
class="flex pb-2 nc-barcode-value-column-select flex-row" |
|
:label="$t('labels.barcodeValueColumn')" |
|
v-bind="validateInfos.fk_barcode_value_column_id" |
|
> |
|
<div class="flex w-1/2 flex-row items-center"> |
|
<a-select |
|
v-model:value="vModel.fk_barcode_value_column_id" |
|
:options="columnsAllowedAsBarcodeValue" |
|
placeholder="Select a column for the Barcode value" |
|
not-found-content="No valid Column Type can be found." |
|
@click.stop |
|
/> |
|
<div v-if="showBarcodeValueColumnInfoIcon" class="pl-2"> |
|
<a-tooltip placement="bottom"> |
|
<template #title> |
|
<span> |
|
The valid Column Types for a Barcode Column are: Number, Single Line Text, Long Text, Phone Number, URL, Email, |
|
Decimal. Please create one first. |
|
</span> |
|
</template> |
|
<mdi-information class="cursor-pointer" /> |
|
</a-tooltip> |
|
</div> |
|
</div> |
|
</a-form-item> |
|
<a-form-item |
|
class="flex w-1/2 pb-2 nc-barcode-format-select" |
|
:label="$t('labels.barcodeFormat')" |
|
v-bind="validateInfos.barcode_format" |
|
> |
|
<a-select |
|
v-model:value="vModel.meta.barcodeFormat" |
|
:options="supportedBarcodeFormats" |
|
placeholder="Select a Barcode format" |
|
@click.stop |
|
/> |
|
</a-form-item> |
|
</a-col> |
|
</a-row> |
|
</template>
|
|
|